fix: fix setting props before element upgrade (#194)

* fix: fix setting props before element upgrade

fixes #190

* fix: better test and logic

* fix: fix re-setting
This commit is contained in:
Nolan Lawson 2021-07-25 20:51:12 -07:00 committed by GitHub
parent b18afd2e04
commit 8e7b5d5aab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 74 additions and 10 deletions

View File

@ -5,6 +5,16 @@ import enI18n from '../picker/i18n/en.js'
import styles from 'emoji-picker-element-styles'
import Database from './ImportedDatabase'
const PROPS = [
'customEmoji',
'customCategorySorting',
'database',
'dataSource',
'i18n',
'locale',
'skinToneEmoji'
]
export default class PickerElement extends HTMLElement {
constructor (props) {
performance.mark('initialLoad')
@ -23,6 +33,13 @@ export default class PickerElement extends HTMLElement {
i18n: enI18n,
...props
}
// Handle properties set before the element was upgraded
for (const prop of PROPS) {
if (prop !== 'database' && Object.hasOwnProperty.call(this, prop)) {
this._ctx[prop] = this[prop]
delete this[prop]
}
}
this._dbFlush() // wait for a flush before creating the db, in case the user calls e.g. a setter or setAttribute
}
@ -85,18 +102,9 @@ export default class PickerElement extends HTMLElement {
}
}
const props = [
'customEmoji',
'customCategorySorting',
'database',
'dataSource',
'i18n',
'locale',
'skinToneEmoji'
]
const definitions = {}
for (const prop of props) {
for (const prop of PROPS) {
definitions[prop] = {
get () {
if (prop === 'database') {

View File

@ -0,0 +1,56 @@
import {
basicAfterEach,
basicBeforeEach,
FR_EMOJI,
mockFrenchDataSource,
tick
} from '../shared'
import { getByRole, waitFor } from '@testing-library/dom'
describe('upgrade tests', () => {
beforeEach(async () => {
basicBeforeEach()
mockFrenchDataSource()
})
afterEach(async () => {
basicAfterEach()
})
test('setting props and attributes before upgrade', async () => {
const div = document.createElement('div')
document.body.appendChild(div)
div.innerHTML = '<emoji-picker locale="fr"></emoji-picker>'
const picker = div.querySelector('emoji-picker')
picker.dataSource = FR_EMOJI
picker.skinToneEmoji = '👍'
expect(picker.shadowRoot).toBeNull()
await tick(20)
expect(fetch).not.toHaveBeenCalled()
await import('../../../src/picker/PickerElement')
await waitFor(() => expect(getByRole(picker.shadowRoot, 'menuitem', { name: /😀/ })).toBeVisible())
const container = picker.shadowRoot
expect(fetch).toHaveBeenCalledTimes(1)
expect(fetch).toHaveBeenLastCalledWith(FR_EMOJI, undefined)
expect(getByRole(container, 'button', { name: /Choose a skin tone/ }).innerHTML).toContain('👍')
expect(picker.locale).toEqual('fr')
expect(picker.dataSource).toEqual(FR_EMOJI)
// The setter should now work as expected
picker.skinToneEmoji = '✌'
await waitFor(() => expect(getByRole(container, 'button', { name: /Choose a skin tone/ }).innerHTML).toContain('✌'))
document.body.removeChild(div)
await tick(20)
})
})