v0.0.11: Added unit-tests, solved the key={...} problem, updated the build/watch configuration of CSX to be able to build minified and non-minified bundle outputs, as well as a CJS version of lib/ (for consuming in Node-environment, like Jest). The previous tests were renamed to examples, and should still need to be updated.
This commit is contained in:
41
examples/todos-mvc/components/todo-item.jsx
Normal file
41
examples/todos-mvc/components/todo-item.jsx
Normal file
@@ -0,0 +1,41 @@
|
||||
import {defineElement, render, CustomElement, Host, ShadowDOM, state, prop} from "../../../packages/csx";
|
||||
import style from './todo-item.scss';
|
||||
|
||||
@defineElement('todo-item')
|
||||
export class TodoItem extends CustomElement{
|
||||
@prop({reflect: true}) checked = false;
|
||||
@prop() model;
|
||||
|
||||
render(){
|
||||
return (
|
||||
<Host>
|
||||
<ShadowDOM>
|
||||
<style>{ style }</style>
|
||||
<li class={( this.checked ? 'completed' : '' )}>
|
||||
<input
|
||||
type="checkbox" checked={ this.checked }
|
||||
onChange={this.handleChange}
|
||||
/>
|
||||
<label>
|
||||
<slot />
|
||||
</label>
|
||||
<button onClick={this.handleClick}>x</button>
|
||||
</li>
|
||||
</ShadowDOM>
|
||||
</Host>
|
||||
);
|
||||
}
|
||||
|
||||
handleChange = ()=>{
|
||||
this.dispatchEvent(new CustomEvent('check', {
|
||||
detail: {checked: (this.checked=!this.checked), id: this.model},
|
||||
bubbles: true
|
||||
}));
|
||||
};
|
||||
handleClick = ()=>{
|
||||
this.dispatchEvent(new CustomEvent('remove', {
|
||||
detail: {id: this.model},
|
||||
bubbles: true
|
||||
}));
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user