Creating Elements
Creating web components easily is advect's signature Feature.
Your first Component
Creating a component is easy with the declarative syntax. All you need
is a <template>
with the following attributes:
-
An
id
attribute (required). This will be used as the tag of your custom web element. This value will need to be valid for a custom web element. -
An
adv
attribute (required). This does NOT need a value, this just tells the system that the template is indeed an element that needs to be registered and is not just another template you have inside your document. -
The
root
attribute (optional) declares where in the component the markup will be added to. The options arelight
|shadow
|none
.
-
light
markup will added to the regular dom when component is connected. (default when root is not present) -
shadow
markup will added to the shadow-dom when component is connected. -
none
no markup will added to component when connected.
-
-
The
shadow
attribute (optional) is passed to the mode ofthis.attachShadow
call. The options areopen
|closed
(default isclosed
)
<!--Declare your component, anywhere in html -->
<template id="hello-button" root="light" shadow="closed" adv>
<button ref onclick="$self.sayHello()"> Hello </button>
<script type="module">
export class HelloButton extends AdvectElement {
sayHello() {
alert('How's it going!')
}
}
</script>
</template>
<!-- Now your all set -->
<hello-button></hello-button>
The <script type="module">
tag is also optional* but when provided allows for the scripting of your custom element.
The <script type="module">
is expected to export a class that extends AdvectElement with a name that is the PascalCase
version of your component name.
In this example <template id="hello-button" ... >
must export a class HelloButton
. (NOT as the default for the module).