-
Notifications
You must be signed in to change notification settings - Fork 0
Examples
Brandon Jordan edited this page Oct 13, 2023
·
6 revisions
import {view, Bold, Button, FlexContent, Paragraph, store, Text} from 'javascript-ui';
const counter = store(0);
view([
FlexContent([
Button('-').onClick(() => {
counter.update((value) => --value);
}),
Paragraph([
Text('Count is '),
Bold().model(counter),
]),
Button('+').onClick(() => {
counter.update((value) => ++value);
}),
]).gap('0 10px'),
]);
import {
view,
Button,
Div,
FlexContent,
ForEach,
List,
ListItem,
Model,
Paragraph,
store,
Text,
TextInput,
} from 'javascript-ui';
const items = store([]);
const taskName = store();
let ask = false;
let n = 5;
view([
FlexContent([
TextInput().placeholder('Enter a task...').model(taskName).fitWidth(),
Button('Add').onClick(() => {
items.update((items) => {
items.push(taskName.get());
taskName.set('');
return items;
});
}),
]).gap('10px'),
Model(items, (tasks) => {
return [
List([
ForEach(tasks, (value, key) => {
return [
ListItem([
FlexContent([
Div(value).fitWidth(),
Button('Remove').onClick(() => {
items.update((items) => {
items.splice(key, 1);
return items;
});
}),
]).gap('10px').placeItems('center'),
]),
];
}),
]),
];
}),
]);