-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
128 lines (108 loc) · 2.26 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import {
render,
html,
useRef,
useState,
useEffect,
useEventListener,
useDelegation,
} from 'vomjs';
import { match } from '@vomjs/tools';
function Timer() {
const [count, setCount] = useState(0);
const intervalRef = useRef();
useEffect(() => {
intervalRef.current = setInterval(() => {
setCount(count => count + 1);
}, 1000);
return () => {
clearTimeout(intervalRef.current);
};
}, []);
return html`
<div>timer count: ${count}</div>
`;
}
function Counter() {
const [count, setCount] = useState(0);
const buttonRef = useEventListener('click', () => {
setCount(count => count + 1);
}, []);
return html`
<div>
<label>Count: ${count}</label>
<button data-ref="${buttonRef}">click</button>
</div>
`;
}
function Foo() {
useEffect(() => {
document.title = 'Foo page';
}, []);
return html`
<div>
<h2>Foo</h2>
${Timer}
</div>
`;
}
function Bar() {
useEffect(() => {
document.title = 'Bar page';
}, []);
return html`
<div>
<h2>Bar</h2>
${Counter}
</div>
`;
}
function Main() {
useEffect(() => {
document.title = 'Main page';
}, []);
return html`
<h1>Main</h1>
`;
}
function App() {
const [page, setPage] = useState(location.pathname);
useEffect(() => {
window.onpopstate = function (event) {
const { page } = event.state || {page: '/'};
setPage(page);
};
}, []);
const ref = useDelegation('click', (target, event) => {
event.preventDefault();
const href = target.getAttribute('href');
setPage(prev => {
if (prev !== href) {
history.pushState({page: href}, '', href);
}
return href;
});
}, []);
return html`
<div>
<ul data-ref="${ref}">
<li>
<a href="/" data-delegate="${ref}">Main</a>
</li>
<li>
<a href="/foo" data-delegate="${ref}">Foo</a>
</li>
<li>
<a href="/bar" data-delegate="${ref}">Bar</a>
</li>
</ul>
${match(page)
.when('/', () => Main)
.when('/foo', () => Foo)
.when('/bar', () => Bar)
.otherwise(() => html`<h1>Not exists</h1>`)
}
</div>
`;
}
render(App, document.getElementById('root'));