Initial rendering of a Todos-MVC app. (events are called but don't trigger a re-rendering yet, renderin-function does not yet support updating DOM yet)
This commit is contained in:
35
test/todos-mvc/components/todo-input.jsx
Normal file
35
test/todos-mvc/components/todo-input.jsx
Normal file
@@ -0,0 +1,35 @@
|
||||
import {defineElement, render, CustomElement, Host} from "../../../packages/csx-custom-elements";
|
||||
import style from './todo-input.scss';
|
||||
|
||||
@defineElement('todo-input')
|
||||
export class TodoInput extends CustomElement{
|
||||
value = "";
|
||||
|
||||
render(){
|
||||
return (
|
||||
<Host>
|
||||
<style>{ style }</style>
|
||||
<form onSubmit={ this.handleSubmit }>
|
||||
<input
|
||||
value={this.value}
|
||||
type="text"
|
||||
placeholder="What needs to be done?"
|
||||
onInput={this.handleInput}
|
||||
/>
|
||||
</form>
|
||||
</Host>
|
||||
)
|
||||
}
|
||||
|
||||
handleSubmit = (e)=>{
|
||||
e.preventDefault();
|
||||
if (!this.value) return;
|
||||
this.dispatchEvent(new CustomEvent('submit', {
|
||||
detail: this.value
|
||||
}));
|
||||
this.state = "";
|
||||
};
|
||||
handleInput = ({target: {value}})=>{
|
||||
this.value = value;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user