This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, property, JoistElement } from '@joist/component'; | |
| function isString(val: unknown) { | |
| if (typeof val === 'string') { | |
| return null; | |
| } | |
| return { message: 'error' }; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, State, JoistElement, get } from '@joist/component'; | |
| import { template, html } from '@joist/component/lit-html'; | |
| @component<number>({ | |
| tagName: 'my-counter', | |
| state: 'Hello', | |
| render: template(({ state }) => html`${state}`) | |
| }) | |
| class MyCounterElement extends JoistElement { | |
| @get(State) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, JoistElement } from '@joist/component'; | |
| import { template, html } from '@joist/component/lit-html'; | |
| @component({ | |
| tagName: 'app-root', | |
| shadowDom: 'open', | |
| state: { | |
| title: 'Hello World' | |
| }, | |
| styles: [` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, State, handle, JoistElement, get } from '@joist/component'; | |
| import { template, html } from '@joist/component/lit-html'; | |
| @component<number>({ | |
| tagName: 'app-root', | |
| state: 0, | |
| render: template(({ state, run }) => { | |
| return html` | |
| <button @click=${run('dec')}>-</button> | |
| <span>${state}</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, State, JoistElement, property, get, PropChange } from '@joist/component'; | |
| @component({ | |
| tagName: 'app-root', | |
| state: '' | |
| }) | |
| class AppElement extends JoistElement { | |
| @get(State) | |
| private state!: State<string>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, State, JoistElement, get } from '@joist/component'; | |
| import { template, html } from '@joist/component/lit-html' | |
| @component<number>({ | |
| tagName: 'my-counter', | |
| state: 0, | |
| render: template(({ state }) => html`${state}`) | |
| }) | |
| class MyCounterElement extends JoistElement { | |
| @get(State) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, JoistElement, get } from '@joist/component'; | |
| import { service, inject } from '@joist/di' | |
| @service() | |
| class FooService { | |
| sayHello() { | |
| return 'Hello World'; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { component, JoistElement } from '@joist/component'; | |
| import { template, html } from '@joist/component/lit-html'; | |
| @component({ | |
| tagName: 'my-element', | |
| state: { | |
| title: 'Hello World' | |
| }, | |
| render: template(({ state }) => { | |
| return html`<h1>${state.title}</h1>` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>My Element</title> | |
| </head> | |
| <body> | |
| <script type="module"> | |
| import { html, render } from 'https://unpkg.com/lit-html?module'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>My Element</title> | |
| </head> | |
| <body> | |
| <script type="module"> | |
| import { html, render } from 'https://unpkg.com/lit-html?module'; | |