Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attribute vs Property access: a source of confusion? #107

Open
chriswilty opened this issue Sep 23, 2024 · 0 comments
Open

Attribute vs Property access: a source of confusion? #107

chriswilty opened this issue Sep 23, 2024 · 0 comments
Labels
question Further information is requested

Comments

@chriswilty
Copy link
Collaborator

This custom element exposes some properties (with getters/setters) as a way of accessing and changing state:

  • color (string)
  • api (string)
  • url (string)
  • multiclap (boolean)

The state itself is stored as attributes of the custom element, and the accessors for the above properties read from / write to the corresponding attribute, so they can also be accessed directly as attributes.

However, of the above properties only color is an observed attribute; the remaining attributes will not trigger any side-effects if changed via setAttribute() instead of via the property setter. Currently that doesn't matter, because only color change has any side-effects, but it is still a source of confusion.

There seems to be no particular reason for this, but we seem caught between two implementation styles. Sometimes properties are preferred as those can be any value, not just strings, but here we are only interested in string values, aside from "multiclap" which is boolean, and that is easily represented as "true".

If we change the API then we introduce a breaking change, so we are likely stuck with this. But I would be very interested to know if developers are accessing any of these properties from their code, and if so, is there a reason they prefer property access over attributes?

@chriswilty chriswilty added the question Further information is requested label Sep 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant