Skip to content

Instantly share code, notes, and snippets.

CREATE TABLE employees (
first_name varchar(25),
last_name varchar(25),
department varchar(15),
email varchar(50)
);
INSERT INTO employees (first_name, last_name, department, email)
VALUES ('Lorenz', 'Vanthillo', 'IT', 'lvthillo@mail.com');
import { hc, text } from '@crui/core'
const Title = hc('h1', [
text('TODO App')
])
import { StreamBox } from '@crui/reactive/rx/box';
export type Todo = {
text: string,
}
export type TodoList = Todo[]
export class TodoStore {
public readonly input: StreamBox<string>
public readonly todos: TodoList
constructor() {
this.input = new StreamBox('')
const submit = (store: TodoStore) =>
h('button', {
props: { className: 'add-todo-submit' },
events: {
click: (e) => {
e.preventDefault()
store.addTodo(store.input.get())
store.input.set('')
}
},
import { StreamBox } from '@crui/reactive/rx/box';
import { StreamList } from '@crui/reactive/rx/list';
export type Todo = {
text: string,
}
export type TodoList = StreamList<Todo>
export class TodoStore {
public readonly input: StreamBox<string>
public readonly todos: TodoList
constructor() {
import { h$map } from '@crui/reactive/elems/$children'
const TodoList = (store: TodoStore) => h$map(
h('ul'),
store.todos,
TodoComponent
)
const TodoComponent = ({ text }) => ht('li', text)
const TodoComponent = (todo: Todo) => (
hcc('li', 'todo-wrapper', [
hcc('label', 'todo', [
h$('input', {
props: {
type: 'checkbox',
},
$bind: {
checked: todo.done
}
const submit = h('button', {
props: { className: 'add-todo-submit' },
events: {
click: (e) => {
e.preventDefault()
// what to do?
}
},
children: [
text('Add')
type AddTodo = (todo: string) => void
const submit = (todo: StreamBox<string>, addTodo: AddTodo) =>
h('button', {
props: { className: 'add-todo-submit' },
events: {
click: (e) => {
e.preventDefault()
addTodo(todo.get())
todo.set('')
}