aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts
new file mode 100644
index 0000000..436a217
--- /dev/null
+++ b/src/main.ts
@@ -0,0 +1,21 @@
+import * as Config from 'config'
+import * as Form from 'view/form'
+import * as Timer from 'view/timer'
+import * as Router from 'router'
+
+export function showPage(route: Router.Route) {
+ if (route.kind === Router.Kind.Form) {
+ document.body.innerHTML = ''
+ document.body.appendChild(Form.view(route.config, showPage))
+ } else if (route.kind === Router.Kind.Timer) {
+ document.body.innerHTML = ''
+ document.body.appendChild(Timer.view(route.config, showPage))
+ }
+}
+
+showPage(Router.from(document.location))
+
+window.onpopstate = (event: Event) => {
+ Timer.clearInterval()
+ showPage(Router.from(document.location))
+}