fix(custom-elements): properties set pre-upgrade should not show up in $attrs

This commit is contained in:
Evan You 2022-11-11 14:42:42 +08:00
parent 5e50909100
commit afe889999c
2 changed files with 33 additions and 12 deletions

View File

@ -230,6 +230,33 @@ describe('defineCustomElement', () => {
}) })
}) })
describe('attrs', () => {
const E = defineCustomElement({
render() {
return [h('div', null, this.$attrs.foo as string)]
}
})
customElements.define('my-el-attrs', E)
test('attrs via attribute', async () => {
container.innerHTML = `<my-el-attrs foo="hello"></my-el-attrs>`
const e = container.childNodes[0] as VueElement
expect(e.shadowRoot!.innerHTML).toBe('<div>hello</div>')
e.setAttribute('foo', 'changed')
await nextTick()
expect(e.shadowRoot!.innerHTML).toBe('<div>changed</div>')
})
test('non-declared properties should not show up in $attrs', () => {
const e = new E()
// @ts-ignore
e.foo = '123'
container.appendChild(e)
expect(e.shadowRoot!.innerHTML).toBe('<div></div>')
})
})
describe('emits', () => { describe('emits', () => {
const CompDef = defineComponent({ const CompDef = defineComponent({
setup(_, { emit }) { setup(_, { emit }) {

View File

@ -228,13 +228,12 @@ export class VueElement extends BaseClass {
}).observe(this, { attributes: true }) }).observe(this, { attributes: true })
const resolve = (def: InnerComponentDef) => { const resolve = (def: InnerComponentDef) => {
const { props = {}, styles } = def const { props, styles } = def
const hasOptions = !isArray(props) const declaredPropKeys = isArray(props) ? props : Object.keys(props || {})
const rawKeys = props ? (hasOptions ? Object.keys(props) : props) : []
// cast Number-type props set before resolve // cast Number-type props set before resolve
let numberProps let numberProps
if (hasOptions) { if (props && !isArray(props)) {
for (const key in this._props) { for (const key in this._props) {
const opt = props[key] const opt = props[key]
if (opt === Number || (opt && opt.type === Number)) { if (opt === Number || (opt && opt.type === Number)) {
@ -247,18 +246,13 @@ export class VueElement extends BaseClass {
// check if there are props set pre-upgrade or connect // check if there are props set pre-upgrade or connect
for (const key of Object.keys(this)) { for (const key of Object.keys(this)) {
if (key[0] !== '_') { if (key[0] !== '_' && declaredPropKeys.includes(key)) {
this._setProp( this._setProp(key, this[key as keyof this], true, false)
key,
this[key as keyof this],
rawKeys.includes(key),
false
)
} }
} }
// defining getter/setters on prototype // defining getter/setters on prototype
for (const key of rawKeys.map(camelize)) { for (const key of declaredPropKeys.map(camelize)) {
Object.defineProperty(this, key, { Object.defineProperty(this, key, {
get() { get() {
return this._getProp(key) return this._getProp(key)