Question

I have a custom polymer element like this :

@CustomTag('my-game')
class GameElement extends PolymerElement {
  @published GameState state;

  // .....
}

And I use it like this :

<my-game state="{{ state }}" />

As the attributes property on Element is a Map<String, String> is it allowed to use any type for @published attributes?

Was it helpful?

Solution

Yes this works.
I use this to assign my model classes from parent to child elements.

Do you have any issues with it?

An issue with this is, that the DOM doesn't see the attribute being added.
In an unit test I tried to use a MutationObserver to be notified when an attribut was set,
but this works only when a primitive value is assigned.

see https://code.google.com/p/dart/issues/detail?id=17472

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top