Skip to content

Commit

Permalink
Merge pull request #72 from github/allow-use-of-button-elements-with-…
Browse files Browse the repository at this point in the history
…data-md-button-style

allow use of <button> elements with `data-md-button="{style}"
  • Loading branch information
keithamus authored Jul 17, 2023
2 parents e343a0b + 2c8a329 commit ce94934
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,39 @@ type Style = {
}

const styles = new WeakMap<Element, Style>()
const manualStyles = {
'header-1': {prefix: '# '},
'header-2': {prefix: '## '},
'header-3': {prefix: '### '},
'header-4': {prefix: '#### '},
'header-5': {prefix: '##### '},
'header-6': {prefix: '###### '},
bold: {prefix: '**', suffix: '**', trimFirst: true},
italic: {prefix: '_', suffix: '_', trimFirst: true},
quote: {prefix: '> ', multiline: true, surroundWithNewlines: true},
code: {
prefix: '`',
suffix: '`',
blockPrefix: '```',
blockSuffix: '```'
},
link: {prefix: '[', suffix: '](url)', replaceNext: 'url', scanFor: 'https?://'},
image: {prefix: '![', suffix: '](url)', replaceNext: 'url', scanFor: 'https?://'},
'unordered-list': {
prefix: '- ',
multiline: true,
unorderedList: true
},
'ordered-list': {
prefix: '1. ',
multiline: true,
orderedList: true
},
'task-list': {prefix: '- [ ] ', multiline: true, surroundWithNewlines: true},
mention: {prefix: '@', prefixSpace: true},
ref: {prefix: '#', prefixSpace: true},
strikethrough: {prefix: '~~', suffix: '~~', trimFirst: true}
} as const

class MarkdownButtonElement extends HTMLElement {
constructor() {
Expand Down Expand Up @@ -275,6 +308,17 @@ if (!window.customElements.get('md-strikethrough')) {
window.customElements.define('md-strikethrough', MarkdownStrikethroughButtonElement)
}

function applyFromToolbar(event: Event) {
const {target, currentTarget} = event
if (!(target instanceof HTMLElement)) return
const mdButton = target.closest('[data-md-button]')
if (!mdButton || mdButton.closest('markdown-toolbar') !== currentTarget) return
const mdButtonStyle = target.getAttribute('data-md-button')
const style = manualStyles[mdButtonStyle as keyof typeof manualStyles]
if (!style) return
applyStyle(target, style)
}

class MarkdownToolbarElement extends HTMLElement {
connectedCallback(): void {
if (!this.hasAttribute('role')) {
Expand All @@ -283,6 +327,8 @@ class MarkdownToolbarElement extends HTMLElement {
this.addEventListener('keydown', focusKeydown)
this.setAttribute('tabindex', '0')
this.addEventListener('focus', onToolbarFocus, {once: true})
this.addEventListener('keydown', keydown(applyFromToolbar))
this.addEventListener('click', applyFromToolbar)
}

disconnectedCallback(): void {
Expand Down
11 changes: 11 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -877,6 +877,17 @@ describe('markdown-toolbar-element', function () {

assert.equal('## |title|', visualValue())
})

it('can be triggered from a data-md-button', function () {
const headerElement = document.createElement('button')
headerElement.setAttribute('data-md-button', 'header-6')
const toolbar = document.querySelector('markdown-toolbar')
toolbar.appendChild(headerElement)
setVisualValue('|title|')
headerElement.click()

assert.equal('###### |title|', visualValue())
})
})
})
})

0 comments on commit ce94934

Please sign in to comment.