Delete NOTES.md (Accidentally commmited previously)

This commit is contained in:
Thorsten Lünborg 2023-03-31 20:32:20 +02:00 committed by GitHub
parent b8c330db5c
commit 12dc598dfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 43 deletions

View File

@ -1,43 +0,0 @@
# Fixing problems with hyphenated vs. camelCased element props
## Situation
Vue has two different ways of applying the vnode's props to an element:
1. apply them as element attributes (`el.settAttribute('value', 'Test')`)
2. apply them as element properties (`el.value = 'Test'`)
Vue prefers the second way *if* it can detect that property on the element (simplified: ` if (value in el)`, plus some exceptions/special cases.)
As no* regular HTML attribute contains a hyphen, kebab-case vs. camelCase is usually not an issue, but there are two important exceptions:
- all `aria-` attributes.
- any custom Attributes can contain hyphens (or be camelCased element properties). These are usually used on custom elements ("web components")
## The problem
When a hyphenated or camelCased vnode prop is processed in `patchProp`, we can experience a few related but distinct undesirable bugs.
|prop|Has DOM prop?|handled correctly?|behavior
|-|-|-|-|
|`id`|✅|✅|applied as DOM property `id`|
|`aria-label`|❌|✅|applied as attribute `aria-label`|
|`ariaControls`|❌ |❌| 🚸 applied as attribute `ariacontrols` (1)|
|`custom-attr`|✅ `customAttr`|❌| 🚸 applied as attribute `custom-attr` (2a), though |
|`customAttr`|✅|✅| 🚸 applied as el property `customAttr` (2b)|
Problem (1):
a `camelCase` prop is applied as lowercase attribute (missing hyphen)
Problem (2):
- `kebap-case`prop applied as attribute even though matching camelCase DOM property exists.
- while `camelCase` prop is applied to element via the matching DOM property.
This can lead to problems with custom elements. For example, if the custom element's prop `post` expects a post object, that has to be passed as a DOMprop. Applying it as an attribute will result in `posts="[Object object]"`.
## Things things to consider / Open questions.
- SVGs can have `camelCase` attributes. That should be handled properly by the implementation, though - I think it's covered.
- `tabindex` attribute vs `tabIndex` DOMProp. Don't think this is a problem either but it feels worth mentioning as it's the only instance I can think of where a regular HTML attribute has a camelCase counterpart.
- `aria-haspopup` vs. `ariaHasPopup`: Chrome has the latter as a DOMProp (FF doesn't). That domProp's name is *not* the camelCase Version of the `aria-haspopup` attribute. Kinda like the tabindex situation.