Merge pull request #71 from github/allow_disabling

Allow disabling element
This commit is contained in:
Cameron Dutro 2023-09-28 13:58:19 -07:00 коммит произвёл GitHub
Родитель 2ffd2e4628 80570f38fc
Коммит a04305832e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 38 добавлений и 2 удалений

Просмотреть файл

@ -8,6 +8,10 @@ async function copy(button: HTMLElement) {
button.dispatchEvent(new CustomEvent('clipboard-copy', {bubbles: true}))
}
if (button.getAttribute('aria-disabled') === 'true') {
return
}
if (text) {
await copyText(text)
trigger()

Просмотреть файл

@ -42,6 +42,7 @@ describe('clipboard-copy element', function () {
describe('target element', function () {
const nativeClipboard = navigator.clipboard
let whenCopied
beforeEach(function () {
const container = document.createElement('div')
container.innerHTML = `
@ -56,6 +57,9 @@ describe('clipboard-copy element', function () {
copiedText = text
return Promise.resolve()
},
readText() {
return Promise.resolve(copiedText)
},
})
whenCopied = new Promise(resolve => {
@ -149,6 +153,31 @@ describe('clipboard-copy element', function () {
const text = await whenCopied
assert.equal(text, 'I am a link')
})
it('does not copy when disabled', async function () {
const target = document.createElement('div')
target.innerHTML = 'Hello world!'
target.id = 'copy-target'
document.body.append(target)
const button = document.querySelector('clipboard-copy')
button.setAttribute('aria-disabled', 'true')
let fired = false
document.addEventListener(
'clipboard-copy',
() => {
fired = true
},
{once: true},
)
button.click()
await new Promise(setTimeout)
assert.equal(fired, false)
assert.equal(null, await navigator.clipboard.readText())
})
})
describe('shadow DOM context', function () {

Просмотреть файл

@ -1,15 +1,18 @@
import {esbuildPlugin} from '@web/dev-server-esbuild'
import {playwrightLauncher} from '@web/test-runner-playwright'
const browser = product =>
const getBrowser = product =>
playwrightLauncher({
product,
createBrowserContext: ({browser}) => {
return browser.newContext({permissions: ['clipboard-read']})
},
})
export default {
files: ['test/*'],
nodeResolve: true,
plugins: [esbuildPlugin({ts: true, target: 'es2020'})],
browsers: [browser('chromium')],
browsers: [getBrowser('chromium')],
testFramework: {
config: {
timeout: 1000,