create-foldkit-app 0.27.3 → 0.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -5
- package/{templates → dist/templates}/base/AGENTS.md +17 -19
- package/dist/templates/examples/api-cache/package.json +29 -0
- package/dist/templates/examples/api-cache/src/data.test.ts +28 -0
- package/dist/templates/examples/api-cache/src/data.ts +126 -0
- package/dist/templates/examples/api-cache/src/entry.ts +17 -0
- package/dist/templates/examples/api-cache/src/main.fixtures.ts +70 -0
- package/dist/templates/examples/api-cache/src/main.ts +744 -0
- package/dist/templates/examples/api-cache/src/scene.test.ts +120 -0
- package/dist/templates/examples/api-cache/src/story.test.ts +288 -0
- package/dist/templates/examples/api-cache/src/styles.css +1 -0
- package/dist/templates/examples/api-cache/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/auth/package.json +30 -0
- package/dist/templates/examples/auth/src/command.ts +49 -0
- package/dist/templates/examples/auth/src/constant.ts +1 -0
- package/dist/templates/examples/auth/src/domain/session.ts +9 -0
- package/dist/templates/examples/auth/src/entry.ts +25 -0
- package/dist/templates/examples/auth/src/main.ts +75 -0
- package/dist/templates/examples/auth/src/message.ts +22 -0
- package/dist/templates/examples/auth/src/model.ts +9 -0
- package/dist/templates/examples/auth/src/notFoundView.ts +25 -0
- package/dist/templates/examples/auth/src/page/index.ts +2 -0
- package/dist/templates/examples/auth/src/page/loggedIn/index.ts +4 -0
- package/dist/templates/examples/auth/src/page/loggedIn/message.ts +17 -0
- package/dist/templates/examples/auth/src/page/loggedIn/model.ts +21 -0
- package/dist/templates/examples/auth/src/page/loggedIn/page/dashboard.ts +40 -0
- package/dist/templates/examples/auth/src/page/loggedIn/page/settings.ts +71 -0
- package/dist/templates/examples/auth/src/page/loggedIn/update.ts +16 -0
- package/dist/templates/examples/auth/src/page/loggedIn/view.ts +87 -0
- package/dist/templates/examples/auth/src/page/loggedOut/index.ts +4 -0
- package/dist/templates/examples/auth/src/page/loggedOut/message.ts +20 -0
- package/dist/templates/examples/auth/src/page/loggedOut/model.ts +21 -0
- package/dist/templates/examples/auth/src/page/loggedOut/page/home.ts +68 -0
- package/dist/templates/examples/auth/src/page/loggedOut/page/login.scene.test.ts +116 -0
- package/dist/templates/examples/auth/src/page/loggedOut/page/login.story.test.ts +112 -0
- package/dist/templates/examples/auth/src/page/loggedOut/page/login.ts +346 -0
- package/dist/templates/examples/auth/src/page/loggedOut/update.ts +32 -0
- package/dist/templates/examples/auth/src/page/loggedOut/view.ts +31 -0
- package/dist/templates/examples/auth/src/route.ts +56 -0
- package/dist/templates/examples/auth/src/scene.test.ts +61 -0
- package/dist/templates/examples/auth/src/styles.css +1 -0
- package/dist/templates/examples/auth/src/update.ts +179 -0
- package/dist/templates/examples/auth/src/view.ts +40 -0
- package/dist/templates/examples/auth/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/canvas-art/package.json +29 -0
- package/dist/templates/examples/canvas-art/src/entry.ts +17 -0
- package/dist/templates/examples/canvas-art/src/main.ts +274 -0
- package/dist/templates/examples/canvas-art/src/scene.test.ts +70 -0
- package/dist/templates/examples/canvas-art/src/story.test.ts +155 -0
- package/dist/templates/examples/canvas-art/src/styles.css +1 -0
- package/dist/templates/examples/canvas-art/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/charting/package.json +31 -0
- package/dist/templates/examples/charting/src/chartHost.ts +20 -0
- package/dist/templates/examples/charting/src/command.ts +62 -0
- package/dist/templates/examples/charting/src/domain.ts +175 -0
- package/dist/templates/examples/charting/src/echarts.ts +408 -0
- package/dist/templates/examples/charting/src/entry.ts +25 -0
- package/dist/templates/examples/charting/src/githubApi.ts +271 -0
- package/dist/templates/examples/charting/src/http.ts +50 -0
- package/dist/templates/examples/charting/src/init.test.ts +14 -0
- package/dist/templates/examples/charting/src/init.ts +29 -0
- package/dist/templates/examples/charting/src/main.fixtures.ts +162 -0
- package/dist/templates/examples/charting/src/message.ts +23 -0
- package/dist/templates/examples/charting/src/model.ts +22 -0
- package/dist/templates/examples/charting/src/npmApi.ts +75 -0
- package/dist/templates/examples/charting/src/radioGroups.ts +11 -0
- package/dist/templates/examples/charting/src/scene.test.ts +103 -0
- package/dist/templates/examples/charting/src/story.test.ts +145 -0
- package/dist/templates/examples/charting/src/styles.css +1 -0
- package/dist/templates/examples/charting/src/subscription.ts +70 -0
- package/dist/templates/examples/charting/src/telemetry.test.ts +64 -0
- package/dist/templates/examples/charting/src/telemetry.ts +432 -0
- package/dist/templates/examples/charting/src/update.ts +217 -0
- package/dist/templates/examples/charting/src/view/chart.ts +129 -0
- package/dist/templates/examples/charting/src/view/format.ts +23 -0
- package/dist/templates/examples/charting/src/view/index.ts +1 -0
- package/dist/templates/examples/charting/src/view/layout.ts +175 -0
- package/dist/templates/examples/charting/src/view/sidebar.ts +309 -0
- package/dist/templates/examples/charting/src/view/view.ts +23 -0
- package/dist/templates/examples/charting/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/charting/src/weeks.ts +105 -0
- package/dist/templates/examples/counter/package.json +29 -0
- package/dist/templates/examples/counter/src/entry.ts +16 -0
- package/dist/templates/examples/counter/src/main.ts +95 -0
- package/dist/templates/examples/counter/src/scene.test.ts +57 -0
- package/dist/templates/examples/counter/src/story.test.ts +71 -0
- package/dist/templates/examples/counter/src/styles.css +1 -0
- package/dist/templates/examples/counter/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/counters/package.json +29 -0
- package/dist/templates/examples/counters/src/counter.ts +70 -0
- package/dist/templates/examples/counters/src/entry.ts +16 -0
- package/dist/templates/examples/counters/src/main.ts +171 -0
- package/dist/templates/examples/counters/src/scene.test.ts +90 -0
- package/dist/templates/examples/counters/src/story.test.ts +127 -0
- package/dist/templates/examples/counters/src/styles.css +1 -0
- package/dist/templates/examples/counters/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/crash-view/package.json +29 -0
- package/dist/templates/examples/crash-view/src/entry.ts +28 -0
- package/dist/templates/examples/crash-view/src/main.ts +104 -0
- package/dist/templates/examples/crash-view/src/scene.test.ts +14 -0
- package/dist/templates/examples/crash-view/src/story.test.ts +11 -0
- package/dist/templates/examples/crash-view/src/styles.css +1 -0
- package/dist/templates/examples/crash-view/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/embedding/package.json +29 -0
- package/dist/templates/examples/embedding/src/entry.ts +3 -0
- package/dist/templates/examples/embedding/src/host.ts +108 -0
- package/dist/templates/examples/embedding/src/main.ts +144 -0
- package/dist/templates/examples/embedding/src/scene.test.ts +28 -0
- package/dist/templates/examples/embedding/src/story.test.ts +64 -0
- package/dist/templates/examples/embedding/src/styles.css +1 -0
- package/dist/templates/examples/embedding/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/form/package.json +30 -0
- package/dist/templates/examples/form/src/entry.ts +16 -0
- package/dist/templates/examples/form/src/main.ts +493 -0
- package/dist/templates/examples/form/src/scene.test.ts +165 -0
- package/dist/templates/examples/form/src/story.test.ts +190 -0
- package/dist/templates/examples/form/src/styles.css +1 -0
- package/dist/templates/examples/form/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/generative-art/package.json +29 -0
- package/dist/templates/examples/generative-art/src/command.ts +109 -0
- package/dist/templates/examples/generative-art/src/constant.ts +68 -0
- package/dist/templates/examples/generative-art/src/entry.ts +22 -0
- package/dist/templates/examples/generative-art/src/main.ts +59 -0
- package/dist/templates/examples/generative-art/src/message.ts +35 -0
- package/dist/templates/examples/generative-art/src/model.ts +33 -0
- package/dist/templates/examples/generative-art/src/noise.ts +93 -0
- package/dist/templates/examples/generative-art/src/scene.test.ts +103 -0
- package/dist/templates/examples/generative-art/src/story.test.ts +203 -0
- package/dist/templates/examples/generative-art/src/styles.css +1 -0
- package/dist/templates/examples/generative-art/src/subscription.ts +35 -0
- package/dist/templates/examples/generative-art/src/update.ts +319 -0
- package/dist/templates/examples/generative-art/src/view.ts +451 -0
- package/dist/templates/examples/generative-art/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/interrupting-commands/package.json +29 -0
- package/dist/templates/examples/interrupting-commands/src/entry.ts +16 -0
- package/dist/templates/examples/interrupting-commands/src/main.ts +354 -0
- package/dist/templates/examples/interrupting-commands/src/scene.test.ts +89 -0
- package/dist/templates/examples/interrupting-commands/src/story.test.ts +224 -0
- package/dist/templates/examples/interrupting-commands/src/styles.css +1 -0
- package/dist/templates/examples/interrupting-commands/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/job-application/package.json +30 -0
- package/dist/templates/examples/job-application/src/command.ts +23 -0
- package/dist/templates/examples/job-application/src/domain/index.ts +3 -0
- package/dist/templates/examples/job-application/src/domain/proficiencyLevel.ts +11 -0
- package/dist/templates/examples/job-application/src/domain/pronounOption.ts +13 -0
- package/dist/templates/examples/job-application/src/domain/step.ts +28 -0
- package/dist/templates/examples/job-application/src/entry.ts +17 -0
- package/dist/templates/examples/job-application/src/main.ts +69 -0
- package/dist/templates/examples/job-application/src/message.ts +44 -0
- package/dist/templates/examples/job-application/src/model.ts +47 -0
- package/dist/templates/examples/job-application/src/scene.test.ts +269 -0
- package/dist/templates/examples/job-application/src/step/attachments.ts +111 -0
- package/dist/templates/examples/job-application/src/step/coverLetter.ts +34 -0
- package/dist/templates/examples/job-application/src/step/education/education.ts +121 -0
- package/dist/templates/examples/job-application/src/step/education/entry.ts +168 -0
- package/dist/templates/examples/job-application/src/step/education/index.ts +2 -0
- package/dist/templates/examples/job-application/src/step/index.ts +6 -0
- package/dist/templates/examples/job-application/src/step/personalInfo.ts +305 -0
- package/dist/templates/examples/job-application/src/step/skills/entry.ts +126 -0
- package/dist/templates/examples/job-application/src/step/skills/index.ts +2 -0
- package/dist/templates/examples/job-application/src/step/skills/skills.ts +118 -0
- package/dist/templates/examples/job-application/src/step/validation.ts +6 -0
- package/dist/templates/examples/job-application/src/step/workHistory/entry.ts +206 -0
- package/dist/templates/examples/job-application/src/step/workHistory/index.ts +2 -0
- package/dist/templates/examples/job-application/src/step/workHistory/workHistory.ts +121 -0
- package/dist/templates/examples/job-application/src/story.test.ts +775 -0
- package/dist/templates/examples/job-application/src/styles.css +1 -0
- package/dist/templates/examples/job-application/src/update.ts +183 -0
- package/dist/templates/examples/job-application/src/view/attachments.ts +215 -0
- package/dist/templates/examples/job-application/src/view/coverLetter.ts +73 -0
- package/dist/templates/examples/job-application/src/view/datePicker.ts +207 -0
- package/dist/templates/examples/job-application/src/view/education.ts +63 -0
- package/dist/templates/examples/job-application/src/view/educationEntry.ts +165 -0
- package/dist/templates/examples/job-application/src/view/field.ts +183 -0
- package/dist/templates/examples/job-application/src/view/format.ts +50 -0
- package/dist/templates/examples/job-application/src/view/icon.ts +21 -0
- package/dist/templates/examples/job-application/src/view/index.ts +352 -0
- package/dist/templates/examples/job-application/src/view/personalInfo.ts +224 -0
- package/dist/templates/examples/job-application/src/view/preview.ts +265 -0
- package/dist/templates/examples/job-application/src/view/review.ts +388 -0
- package/dist/templates/examples/job-application/src/view/skillEntry.ts +102 -0
- package/dist/templates/examples/job-application/src/view/skills.ts +49 -0
- package/dist/templates/examples/job-application/src/view/stepNav.ts +181 -0
- package/dist/templates/examples/job-application/src/view/workEntry.ts +159 -0
- package/dist/templates/examples/job-application/src/view/workHistory.ts +55 -0
- package/dist/templates/examples/job-application/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/kanban/package.json +31 -0
- package/dist/templates/examples/kanban/src/command.ts +46 -0
- package/dist/templates/examples/kanban/src/constant.ts +149 -0
- package/dist/templates/examples/kanban/src/domain/card.ts +10 -0
- package/dist/templates/examples/kanban/src/domain/column.ts +115 -0
- package/dist/templates/examples/kanban/src/domain/index.ts +2 -0
- package/dist/templates/examples/kanban/src/entry.ts +27 -0
- package/dist/templates/examples/kanban/src/main.ts +56 -0
- package/dist/templates/examples/kanban/src/message.ts +21 -0
- package/dist/templates/examples/kanban/src/model.ts +21 -0
- package/dist/templates/examples/kanban/src/scene.test.ts +161 -0
- package/dist/templates/examples/kanban/src/story.test.ts +461 -0
- package/dist/templates/examples/kanban/src/styles.css +1 -0
- package/dist/templates/examples/kanban/src/subscription.ts +16 -0
- package/dist/templates/examples/kanban/src/update.ts +205 -0
- package/dist/templates/examples/kanban/src/view/card.ts +79 -0
- package/dist/templates/examples/kanban/src/view/column.ts +283 -0
- package/dist/templates/examples/kanban/src/view/index.ts +71 -0
- package/dist/templates/examples/kanban/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/managed-resource-layer/package.json +29 -0
- package/dist/templates/examples/managed-resource-layer/src/entry.ts +17 -0
- package/dist/templates/examples/managed-resource-layer/src/main.ts +309 -0
- package/dist/templates/examples/managed-resource-layer/src/scene.test.ts +117 -0
- package/dist/templates/examples/managed-resource-layer/src/story.test.ts +118 -0
- package/dist/templates/examples/managed-resource-layer/src/styles.css +1 -0
- package/dist/templates/examples/managed-resource-layer/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/map/package.json +31 -0
- package/dist/templates/examples/map/src/entry.ts +17 -0
- package/dist/templates/examples/map/src/locations.ts +69 -0
- package/dist/templates/examples/map/src/main.fixtures.ts +28 -0
- package/dist/templates/examples/map/src/main.ts +781 -0
- package/dist/templates/examples/map/src/mapHost.ts +23 -0
- package/dist/templates/examples/map/src/scene.test.ts +136 -0
- package/dist/templates/examples/map/src/story.test.ts +190 -0
- package/dist/templates/examples/map/src/styles.css +2 -0
- package/dist/templates/examples/map/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/pixel-art/package.json +31 -0
- package/dist/templates/examples/pixel-art/src/command.ts +87 -0
- package/dist/templates/examples/pixel-art/src/comparison.bench.test.ts +204 -0
- package/dist/templates/examples/pixel-art/src/constant.ts +21 -0
- package/dist/templates/examples/pixel-art/src/entry.ts +27 -0
- package/dist/templates/examples/pixel-art/src/grid.ts +134 -0
- package/dist/templates/examples/pixel-art/src/main.bench.ts +133 -0
- package/dist/templates/examples/pixel-art/src/main.ts +85 -0
- package/dist/templates/examples/pixel-art/src/message.ts +36 -0
- package/dist/templates/examples/pixel-art/src/model.ts +79 -0
- package/dist/templates/examples/pixel-art/src/palette.ts +134 -0
- package/dist/templates/examples/pixel-art/src/scene.test.ts +250 -0
- package/dist/templates/examples/pixel-art/src/story.test.ts +482 -0
- package/dist/templates/examples/pixel-art/src/styles.css +1 -0
- package/dist/templates/examples/pixel-art/src/subscription.ts +61 -0
- package/dist/templates/examples/pixel-art/src/update.ts +469 -0
- package/dist/templates/examples/pixel-art/src/view/canvas.ts +134 -0
- package/dist/templates/examples/pixel-art/src/view/dialog.ts +152 -0
- package/dist/templates/examples/pixel-art/src/view/history.ts +214 -0
- package/dist/templates/examples/pixel-art/src/view/index.ts +1 -0
- package/dist/templates/examples/pixel-art/src/view/toolbar.ts +452 -0
- package/dist/templates/examples/pixel-art/src/view/view.ts +183 -0
- package/dist/templates/examples/pixel-art/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/query-sync/package.json +30 -0
- package/dist/templates/examples/query-sync/src/data.ts +166 -0
- package/dist/templates/examples/query-sync/src/entry.ts +20 -0
- package/dist/templates/examples/query-sync/src/main.ts +898 -0
- package/dist/templates/examples/query-sync/src/scene.test.ts +89 -0
- package/dist/templates/examples/query-sync/src/story.test.ts +151 -0
- package/dist/templates/examples/query-sync/src/styles.css +1 -0
- package/dist/templates/examples/query-sync/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/route-transitions/package.json +28 -0
- package/dist/templates/examples/route-transitions/src/data.ts +61 -0
- package/dist/templates/examples/route-transitions/src/entry.ts +20 -0
- package/dist/templates/examples/route-transitions/src/main.ts +798 -0
- package/dist/templates/examples/route-transitions/src/route.ts +48 -0
- package/dist/templates/examples/route-transitions/src/story.test.ts +225 -0
- package/dist/templates/examples/route-transitions/src/styles.css +1 -0
- package/dist/templates/examples/route-transitions/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/routing/package.json +29 -0
- package/dist/templates/examples/routing/src/entry.ts +20 -0
- package/dist/templates/examples/routing/src/fileTree.ts +98 -0
- package/dist/templates/examples/routing/src/main.ts +573 -0
- package/dist/templates/examples/routing/src/page/index.ts +1 -0
- package/dist/templates/examples/routing/src/page/people.ts +349 -0
- package/dist/templates/examples/routing/src/route.ts +82 -0
- package/dist/templates/examples/routing/src/scene.test.ts +180 -0
- package/dist/templates/examples/routing/src/story.test.ts +242 -0
- package/dist/templates/examples/routing/src/styles.css +1 -0
- package/dist/templates/examples/routing/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/shopping-cart/package.json +29 -0
- package/dist/templates/examples/shopping-cart/src/data/products.ts +10 -0
- package/dist/templates/examples/shopping-cart/src/domain/cart.ts +77 -0
- package/dist/templates/examples/shopping-cart/src/domain/index.ts +2 -0
- package/dist/templates/examples/shopping-cart/src/domain/item.ts +16 -0
- package/dist/templates/examples/shopping-cart/src/entry.ts +20 -0
- package/dist/templates/examples/shopping-cart/src/main.ts +307 -0
- package/dist/templates/examples/shopping-cart/src/page/cart.ts +203 -0
- package/dist/templates/examples/shopping-cart/src/page/checkout.ts +205 -0
- package/dist/templates/examples/shopping-cart/src/page/index.ts +3 -0
- package/dist/templates/examples/shopping-cart/src/page/products.ts +267 -0
- package/dist/templates/examples/shopping-cart/src/route.ts +43 -0
- package/dist/templates/examples/shopping-cart/src/scene.test.ts +138 -0
- package/dist/templates/examples/shopping-cart/src/story.test.ts +233 -0
- package/dist/templates/examples/shopping-cart/src/styles.css +1 -0
- package/dist/templates/examples/shopping-cart/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/slow-warnings/package.json +28 -0
- package/dist/templates/examples/slow-warnings/src/entry.ts +29 -0
- package/dist/templates/examples/slow-warnings/src/handleSlow.test.ts +43 -0
- package/dist/templates/examples/slow-warnings/src/main.ts +574 -0
- package/dist/templates/examples/slow-warnings/src/scene.test.ts +57 -0
- package/dist/templates/examples/slow-warnings/src/story.test.ts +118 -0
- package/dist/templates/examples/slow-warnings/src/styles.css +1 -0
- package/dist/templates/examples/slow-warnings/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/snake/package.json +28 -0
- package/dist/templates/examples/snake/src/constants.ts +11 -0
- package/dist/templates/examples/snake/src/domain/apple.ts +22 -0
- package/dist/templates/examples/snake/src/domain/direction.ts +17 -0
- package/dist/templates/examples/snake/src/domain/index.ts +4 -0
- package/dist/templates/examples/snake/src/domain/position.ts +32 -0
- package/dist/templates/examples/snake/src/domain/snake.ts +43 -0
- package/dist/templates/examples/snake/src/entry.ts +17 -0
- package/dist/templates/examples/snake/src/main.ts +345 -0
- package/dist/templates/examples/snake/src/scene.test.ts +77 -0
- package/dist/templates/examples/snake/src/story.test.ts +165 -0
- package/dist/templates/examples/snake/src/styles.css +1 -0
- package/dist/templates/examples/snake/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/ssg/package.json +29 -0
- package/dist/templates/examples/ssg/src/entry.server.ts +14 -0
- package/{templates/rendering → dist/templates/examples}/ssg/src/entry.ts +3 -11
- package/dist/templates/examples/ssg/src/main.ts +163 -0
- package/dist/templates/examples/ssg/src/styles.css +1 -0
- package/dist/templates/examples/ssr/package.json +33 -0
- package/dist/templates/examples/ssr/src/cookie.ts +13 -0
- package/dist/templates/examples/ssr/src/entry.server.ts +51 -0
- package/dist/templates/examples/ssr/src/main.ts +170 -0
- package/{templates/rendering → dist/templates/examples}/ssr/src/scene.test.ts +5 -8
- package/dist/templates/examples/ssr/src/styles.css +1 -0
- package/dist/templates/examples/ssr/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/state-machine/package.json +30 -0
- package/dist/templates/examples/state-machine/src/entry.ts +17 -0
- package/dist/templates/examples/state-machine/src/icon.ts +51 -0
- package/dist/templates/examples/state-machine/src/main.ts +420 -0
- package/dist/templates/examples/state-machine/src/scene.test.ts +85 -0
- package/dist/templates/examples/state-machine/src/story.test.ts +199 -0
- package/dist/templates/examples/state-machine/src/styles.css +53 -0
- package/dist/templates/examples/state-machine/src/view.ts +1675 -0
- package/dist/templates/examples/state-machine/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/stopwatch/package.json +29 -0
- package/dist/templates/examples/stopwatch/src/entry.ts +17 -0
- package/dist/templates/examples/stopwatch/src/main.ts +237 -0
- package/dist/templates/examples/stopwatch/src/scene.test.ts +124 -0
- package/dist/templates/examples/stopwatch/src/story.test.ts +126 -0
- package/dist/templates/examples/stopwatch/src/styles.css +1 -0
- package/dist/templates/examples/stopwatch/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/todo/package.json +30 -0
- package/dist/templates/examples/todo/src/entry.ts +17 -0
- package/dist/templates/examples/todo/src/main.ts +682 -0
- package/dist/templates/examples/todo/src/scene.test.ts +177 -0
- package/dist/templates/examples/todo/src/story.test.ts +374 -0
- package/dist/templates/examples/todo/src/styles.css +1 -0
- package/dist/templates/examples/todo/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/ui-showcase/package.json +30 -0
- package/dist/templates/examples/ui-showcase/src/entry.ts +31 -0
- package/dist/templates/examples/ui-showcase/src/icon.ts +64 -0
- package/dist/templates/examples/ui-showcase/src/main.ts +673 -0
- package/dist/templates/examples/ui-showcase/src/scene.test.ts +102 -0
- package/dist/templates/examples/ui-showcase/src/story.test.ts +128 -0
- package/dist/templates/examples/ui-showcase/src/styles.css +21 -0
- package/dist/templates/examples/ui-showcase/src/ui/init.ts +185 -0
- package/dist/templates/examples/ui-showcase/src/ui/message.ts +164 -0
- package/dist/templates/examples/ui-showcase/src/ui/model.ts +138 -0
- package/dist/templates/examples/ui-showcase/src/ui/subscriptions.ts +55 -0
- package/dist/templates/examples/ui-showcase/src/ui/toast.ts +13 -0
- package/dist/templates/examples/ui-showcase/src/ui/update.ts +1234 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/animation.ts +58 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/button.ts +64 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/calendar.ts +202 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/checkbox.ts +185 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/combobox.ts +326 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/datePicker.ts +263 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/dialog.ts +427 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/disclosure.ts +142 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/dragAndDrop.ts +230 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/fieldset.ts +284 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/fileDrop.ts +119 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/index.ts +24 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/input.ts +90 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/listbox.ts +263 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/menu.ts +172 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/popover.ts +262 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/radioGroup.ts +192 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/select.ts +129 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/slider.ts +135 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/switch.ts +82 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/tabs.ts +187 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/textarea.ts +99 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/toast.ts +165 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/tooltip.ts +123 -0
- package/dist/templates/examples/ui-showcase/src/ui/view/virtualList.ts +361 -0
- package/dist/templates/examples/ui-showcase/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/view-transitions/package.json +28 -0
- package/dist/templates/examples/view-transitions/src/artwork.ts +80 -0
- package/dist/templates/examples/view-transitions/src/entry.ts +21 -0
- package/dist/templates/examples/view-transitions/src/main.ts +348 -0
- package/dist/templates/examples/view-transitions/src/route.ts +29 -0
- package/dist/templates/examples/view-transitions/src/scene.test.ts +130 -0
- package/dist/templates/examples/view-transitions/src/styles.css +66 -0
- package/dist/templates/examples/view-transitions/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/weather/package.json +29 -0
- package/dist/templates/examples/weather/src/entry.ts +16 -0
- package/dist/templates/examples/weather/src/main.fixtures.ts +59 -0
- package/dist/templates/examples/weather/src/main.ts +356 -0
- package/dist/templates/examples/weather/src/scene.test.ts +109 -0
- package/dist/templates/examples/weather/src/story.test.ts +125 -0
- package/dist/templates/examples/weather/src/styles.css +1 -0
- package/dist/templates/examples/weather/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/web-components/package.json +32 -0
- package/dist/templates/examples/web-components/src/entry.ts +16 -0
- package/dist/templates/examples/web-components/src/main.ts +327 -0
- package/dist/templates/examples/web-components/src/scene.test.ts +90 -0
- package/dist/templates/examples/web-components/src/story.test.ts +90 -0
- package/dist/templates/examples/web-components/src/styles.css +1 -0
- package/dist/templates/examples/web-components/src/vitest-setup.ts +3 -0
- package/dist/templates/examples/websocket-chat/package.json +29 -0
- package/dist/templates/examples/websocket-chat/src/entry.ts +26 -0
- package/dist/templates/examples/websocket-chat/src/main.ts +626 -0
- package/dist/templates/examples/websocket-chat/src/scene.test.ts +166 -0
- package/dist/templates/examples/websocket-chat/src/story.test.ts +183 -0
- package/dist/templates/examples/websocket-chat/src/styles.css +1 -0
- package/dist/templates/examples/websocket-chat/src/vitest-setup.ts +3 -0
- package/dist/templates/release.json +27 -0
- package/dist/templates/rendering/ssg/src/entry.ts +20 -0
- package/{templates → dist/templates}/rendering/ssg/src/main.ts +36 -43
- package/dist/templates/rendering/ssg/src/route.ts +20 -0
- package/dist/templates/rendering/ssg/src/vite-env.d.ts +19 -0
- package/dist/templates/rendering/ssr/src/entry.ts +17 -0
- package/{templates → dist/templates}/rendering/ssr/src/main.ts +17 -25
- package/dist/templates/rendering/ssr/src/scene.test.ts +40 -0
- package/dist/templates/rendering/ssr/src/vite-env.d.ts +19 -0
- package/dist/utils/files.js +23 -71
- package/dist/utils/packages.js +63 -44
- package/package.json +3 -4
- /package/{templates → dist/templates}/base/.mcp.json +0 -0
- /package/{templates → dist/templates}/base/.oxlintrc.json +0 -0
- /package/{templates → dist/templates}/base/.prettierignore +0 -0
- /package/{templates → dist/templates}/base/.prettierrc +0 -0
- /package/{templates → dist/templates}/base/README.md +0 -0
- /package/{templates → dist/templates}/base/gitignore +0 -0
- /package/{templates → dist/templates}/base/ignore +0 -0
- /package/{templates → dist/templates}/base/index.html +0 -0
- /package/{templates → dist/templates}/base/package.json +0 -0
- /package/{templates → dist/templates}/base/src/styles.css +0 -0
- /package/{templates → dist/templates}/base/src/vitest-setup.ts +0 -0
- /package/{templates → dist/templates}/base/tsconfig.json +0 -0
- /package/{templates → dist/templates}/base/vite.config.ts +0 -0
- /package/{templates → dist/templates}/base/vitest.config.ts +0 -0
- /package/{templates/rendering → dist/templates/examples}/ssg/src/route.ts +0 -0
- /package/{templates/rendering → dist/templates/examples}/ssg/src/vite-env.d.ts +0 -0
- /package/{templates/rendering → dist/templates/examples}/ssr/src/entry.ts +0 -0
- /package/{templates/rendering → dist/templates/examples}/ssr/src/vite-env.d.ts +0 -0
- /package/{templates → dist/templates}/package-managers/pnpm/pnpm-workspace.yaml +0 -0
- /package/{templates → dist/templates}/rendering/ssg/README.md +0 -0
- /package/{templates → dist/templates}/rendering/ssg/package.json +0 -0
- /package/{templates → dist/templates}/rendering/ssg/scripts/build.mjs +0 -0
- /package/{templates → dist/templates}/rendering/ssg/scripts/prerender.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssg/src/entry.server.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssg/src/scene.test.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssg/tsconfig.json +0 -0
- /package/{templates → dist/templates}/rendering/ssg/vite.config.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssr/README.md +0 -0
- /package/{templates → dist/templates}/rendering/ssr/package.json +0 -0
- /package/{templates → dist/templates}/rendering/ssr/scripts/build.mjs +0 -0
- /package/{templates → dist/templates}/rendering/ssr/server/main.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssr/src/cookie.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssr/src/entry.server.ts +0 -0
- /package/{templates → dist/templates}/rendering/ssr/tsconfig.json +0 -0
- /package/{templates → dist/templates}/rendering/ssr/vite.config.ts +0 -0
|
@@ -0,0 +1,898 @@
|
|
|
1
|
+
import { clsx } from 'clsx'
|
|
2
|
+
import {
|
|
3
|
+
Array,
|
|
4
|
+
Effect,
|
|
5
|
+
Match as M,
|
|
6
|
+
Option,
|
|
7
|
+
Order,
|
|
8
|
+
Schema as S,
|
|
9
|
+
SchemaTransformation,
|
|
10
|
+
String,
|
|
11
|
+
Types,
|
|
12
|
+
pipe,
|
|
13
|
+
} from 'effect'
|
|
14
|
+
import { Command, Route, Runtime, Update } from 'foldkit'
|
|
15
|
+
import { Document, Html, HtmlBuilder, childAttributes } from 'foldkit/html'
|
|
16
|
+
import { defineMessageUnion } from 'foldkit/message'
|
|
17
|
+
import { UrlRequest, load, pushUrl, replaceUrl } from 'foldkit/navigation'
|
|
18
|
+
import { r } from 'foldkit/route'
|
|
19
|
+
import { ts } from 'foldkit/schema'
|
|
20
|
+
import { evo } from 'foldkit/struct'
|
|
21
|
+
import { Url, toString as urlToString } from 'foldkit/url'
|
|
22
|
+
|
|
23
|
+
import { Button, Input, Listbox } from '@foldkit/ui'
|
|
24
|
+
import { AnchorConfig } from '@foldkit/ui/listbox'
|
|
25
|
+
|
|
26
|
+
import { type Dinosaur, dinosaurs } from './data'
|
|
27
|
+
|
|
28
|
+
const Diet = S.Literals(['Carnivore', 'Herbivore', 'Omnivore'])
|
|
29
|
+
const Period = S.Literals(['Triassic', 'Jurassic', 'Cretaceous'])
|
|
30
|
+
const SortColumn = S.Literals(['Name', 'Period', 'Diet', 'Length', 'Weight'])
|
|
31
|
+
type SortColumn = typeof SortColumn.Type
|
|
32
|
+
|
|
33
|
+
export const Unsorted = ts('Unsorted')
|
|
34
|
+
export const Ascending = ts('Ascending', { column: SortColumn })
|
|
35
|
+
export const Descending = ts('Descending', { column: SortColumn })
|
|
36
|
+
const Sorting = S.Union([Unsorted, Ascending, Descending])
|
|
37
|
+
type Sorting = typeof Sorting.Type
|
|
38
|
+
|
|
39
|
+
const dietFilterItems: ReadonlyArray<string> = ['', ...Diet.literals]
|
|
40
|
+
const periodFilterItems: ReadonlyArray<string> = ['', ...Period.literals]
|
|
41
|
+
|
|
42
|
+
// ROUTE
|
|
43
|
+
|
|
44
|
+
const SORT_PARAM_SEPARATOR = ':'
|
|
45
|
+
|
|
46
|
+
const optionFromValidParam = <A extends string>(schema: S.Codec<A, A>) => {
|
|
47
|
+
const decode = S.decodeUnknownOption(schema)
|
|
48
|
+
|
|
49
|
+
return S.OptionFromOptional(S.String).pipe(
|
|
50
|
+
S.decodeTo(
|
|
51
|
+
S.Option(schema),
|
|
52
|
+
SchemaTransformation.transform({
|
|
53
|
+
decode: (maybeRaw: Option.Option<string>): Option.Option<A> =>
|
|
54
|
+
Option.flatMap(maybeRaw, decode),
|
|
55
|
+
encode: (maybeValue: Option.Option<A>): Option.Option<string> =>
|
|
56
|
+
maybeValue,
|
|
57
|
+
}),
|
|
58
|
+
),
|
|
59
|
+
)
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const SortDirection = S.Literals(['Ascending', 'Descending'])
|
|
63
|
+
|
|
64
|
+
const sortingFromParam = (() => {
|
|
65
|
+
const decodeColumn = S.decodeUnknownOption(SortColumn)
|
|
66
|
+
const decodeDirection = S.decodeUnknownOption(SortDirection)
|
|
67
|
+
|
|
68
|
+
return S.OptionFromOptional(S.String).pipe(
|
|
69
|
+
S.decodeTo(
|
|
70
|
+
Sorting,
|
|
71
|
+
SchemaTransformation.transform({
|
|
72
|
+
decode: (maybeRaw: Option.Option<string>): Sorting =>
|
|
73
|
+
Option.match(maybeRaw, {
|
|
74
|
+
onNone: () => Unsorted(),
|
|
75
|
+
onSome: value => {
|
|
76
|
+
const parts = String.split(value, SORT_PARAM_SEPARATOR)
|
|
77
|
+
|
|
78
|
+
return pipe(
|
|
79
|
+
Option.all({
|
|
80
|
+
column: pipe(
|
|
81
|
+
parts,
|
|
82
|
+
Array.get(0),
|
|
83
|
+
Option.flatMap(decodeColumn),
|
|
84
|
+
),
|
|
85
|
+
direction: pipe(
|
|
86
|
+
parts,
|
|
87
|
+
Array.get(1),
|
|
88
|
+
Option.flatMap(decodeDirection),
|
|
89
|
+
),
|
|
90
|
+
}),
|
|
91
|
+
Option.map(({ column, direction }) =>
|
|
92
|
+
M.value(direction).pipe(
|
|
93
|
+
M.when('Ascending', () => Ascending({ column })),
|
|
94
|
+
M.when('Descending', () => Descending({ column })),
|
|
95
|
+
M.exhaustive,
|
|
96
|
+
),
|
|
97
|
+
),
|
|
98
|
+
Option.getOrElse(() => Unsorted()),
|
|
99
|
+
)
|
|
100
|
+
},
|
|
101
|
+
}),
|
|
102
|
+
encode: (sorting): Option.Option<string> =>
|
|
103
|
+
M.value(sorting).pipe(
|
|
104
|
+
M.withReturnType<Option.Option<string>>(),
|
|
105
|
+
M.tagsExhaustive({
|
|
106
|
+
Unsorted: () => Option.none(),
|
|
107
|
+
Ascending: ({ column }) =>
|
|
108
|
+
Option.some(`${column}${SORT_PARAM_SEPARATOR}Ascending`),
|
|
109
|
+
Descending: ({ column }) =>
|
|
110
|
+
Option.some(`${column}${SORT_PARAM_SEPARATOR}Descending`),
|
|
111
|
+
}),
|
|
112
|
+
),
|
|
113
|
+
}),
|
|
114
|
+
),
|
|
115
|
+
)
|
|
116
|
+
})()
|
|
117
|
+
|
|
118
|
+
export const BrowseRoute = r('Browse', {
|
|
119
|
+
search: S.Option(S.String),
|
|
120
|
+
sorting: Sorting,
|
|
121
|
+
diet: S.Option(Diet),
|
|
122
|
+
period: S.Option(Period),
|
|
123
|
+
})
|
|
124
|
+
|
|
125
|
+
export const NotFoundRoute = r('NotFound', { path: S.String })
|
|
126
|
+
|
|
127
|
+
const AppRoute = S.Union([BrowseRoute, NotFoundRoute])
|
|
128
|
+
type AppRoute = typeof AppRoute.Type
|
|
129
|
+
|
|
130
|
+
const browseRouter = pipe(
|
|
131
|
+
Route.root,
|
|
132
|
+
Route.query(
|
|
133
|
+
S.Struct({
|
|
134
|
+
search: S.OptionFromOptional(S.String),
|
|
135
|
+
sorting: sortingFromParam,
|
|
136
|
+
diet: optionFromValidParam(Diet),
|
|
137
|
+
period: optionFromValidParam(Period),
|
|
138
|
+
}),
|
|
139
|
+
),
|
|
140
|
+
Route.mapTo(BrowseRoute),
|
|
141
|
+
)
|
|
142
|
+
|
|
143
|
+
const routeParser = Route.oneOf(browseRouter)
|
|
144
|
+
const urlToAppRoute = Route.parseUrlWithFallback(routeParser, NotFoundRoute)
|
|
145
|
+
|
|
146
|
+
// MODEL
|
|
147
|
+
|
|
148
|
+
export const Model = S.Struct({
|
|
149
|
+
route: AppRoute,
|
|
150
|
+
dietListbox: Listbox.Model,
|
|
151
|
+
periodListbox: Listbox.Model,
|
|
152
|
+
})
|
|
153
|
+
export type Model = typeof Model.Type
|
|
154
|
+
|
|
155
|
+
// MESSAGE
|
|
156
|
+
|
|
157
|
+
export const Message = defineMessageUnion({
|
|
158
|
+
CompletedNavigateInternal: {},
|
|
159
|
+
CompletedLoadExternal: {},
|
|
160
|
+
CompletedReplaceFilters: {},
|
|
161
|
+
ClickedLink: { request: UrlRequest },
|
|
162
|
+
ChangedUrl: { url: Url },
|
|
163
|
+
ChangedSearchInput: { value: S.String },
|
|
164
|
+
ClickedColumnHeader: { column: SortColumn },
|
|
165
|
+
GotDietListboxMessage: { message: Listbox.Message },
|
|
166
|
+
GotPeriodListboxMessage: { message: Listbox.Message },
|
|
167
|
+
})
|
|
168
|
+
|
|
169
|
+
export type Message = typeof Message.Type
|
|
170
|
+
|
|
171
|
+
// INIT
|
|
172
|
+
|
|
173
|
+
type BrowseFields = Omit<typeof BrowseRoute.Type, '_tag'>
|
|
174
|
+
|
|
175
|
+
const emptyBrowseFields: BrowseFields = {
|
|
176
|
+
search: Option.none(),
|
|
177
|
+
sorting: Unsorted(),
|
|
178
|
+
diet: Option.none(),
|
|
179
|
+
period: Option.none(),
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
const routeToBrowseFields = (route: AppRoute): BrowseFields =>
|
|
183
|
+
M.value(route).pipe(
|
|
184
|
+
M.tag('Browse', route => route),
|
|
185
|
+
M.orElse(() => emptyBrowseFields),
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
export const init: Runtime.RoutingApplicationInit<Model, Message> = (
|
|
189
|
+
url: Url,
|
|
190
|
+
) => {
|
|
191
|
+
const route = urlToAppRoute(url)
|
|
192
|
+
|
|
193
|
+
return [
|
|
194
|
+
{
|
|
195
|
+
route,
|
|
196
|
+
dietListbox: Listbox.init({ id: 'diet-filter' }),
|
|
197
|
+
periodListbox: Listbox.init({ id: 'period-filter' }),
|
|
198
|
+
},
|
|
199
|
+
[],
|
|
200
|
+
]
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
// UPDATE
|
|
204
|
+
|
|
205
|
+
const columnSortDirection = (
|
|
206
|
+
sorting: Sorting,
|
|
207
|
+
column: SortColumn,
|
|
208
|
+
): Types.Tags<Sorting> => {
|
|
209
|
+
const isColumnSorted =
|
|
210
|
+
sorting._tag !== 'Unsorted' && sorting.column === column
|
|
211
|
+
|
|
212
|
+
if (isColumnSorted) {
|
|
213
|
+
return sorting._tag
|
|
214
|
+
} else {
|
|
215
|
+
return 'Unsorted'
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
const nextSorting = (sorting: Sorting, column: SortColumn): Sorting =>
|
|
220
|
+
pipe(
|
|
221
|
+
columnSortDirection(sorting, column),
|
|
222
|
+
M.value,
|
|
223
|
+
M.when('Unsorted', () => Ascending({ column })),
|
|
224
|
+
M.when('Ascending', () => Descending({ column })),
|
|
225
|
+
M.when('Descending', () => Unsorted()),
|
|
226
|
+
M.exhaustive,
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
const selectionToParam = <A extends string>(
|
|
230
|
+
maybeSelectedItem: Option.Option<string>,
|
|
231
|
+
schema: S.Codec<A, A>,
|
|
232
|
+
): Option.Option<A> => {
|
|
233
|
+
const decode = S.decodeUnknownOption(schema)
|
|
234
|
+
|
|
235
|
+
return pipe(
|
|
236
|
+
maybeSelectedItem,
|
|
237
|
+
Option.filter(String.isNonEmpty),
|
|
238
|
+
Option.flatMap(value => decode(value)),
|
|
239
|
+
)
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
export const ReplaceFilters = Command.define('ReplaceFilters', {
|
|
243
|
+
args: {
|
|
244
|
+
search: S.Option(S.String),
|
|
245
|
+
sorting: Sorting,
|
|
246
|
+
diet: S.Option(Diet),
|
|
247
|
+
period: S.Option(Period),
|
|
248
|
+
},
|
|
249
|
+
messages: [Message.CompletedReplaceFilters],
|
|
250
|
+
execute: fields =>
|
|
251
|
+
replaceUrl(browseRouter(fields)).pipe(
|
|
252
|
+
Effect.as(Message.CompletedReplaceFilters()),
|
|
253
|
+
),
|
|
254
|
+
})
|
|
255
|
+
|
|
256
|
+
const NavigateInternal = Command.define('NavigateInternal', {
|
|
257
|
+
args: { url: S.String },
|
|
258
|
+
messages: [Message.CompletedNavigateInternal],
|
|
259
|
+
execute: ({ url }) =>
|
|
260
|
+
pushUrl(url).pipe(Effect.as(Message.CompletedNavigateInternal())),
|
|
261
|
+
})
|
|
262
|
+
|
|
263
|
+
const LoadExternal = Command.define('LoadExternal', {
|
|
264
|
+
args: { href: S.String },
|
|
265
|
+
messages: [Message.CompletedLoadExternal],
|
|
266
|
+
execute: ({ href }) =>
|
|
267
|
+
load(href).pipe(Effect.as(Message.CompletedLoadExternal())),
|
|
268
|
+
})
|
|
269
|
+
|
|
270
|
+
type UpdateReturn = readonly [Model, ReadonlyArray<Command.Command<Message>>]
|
|
271
|
+
const withUpdateReturn = M.withReturnType<UpdateReturn>()
|
|
272
|
+
|
|
273
|
+
const DietListbox = Listbox.create<string>()
|
|
274
|
+
const PeriodListbox = Listbox.create<string>()
|
|
275
|
+
|
|
276
|
+
const foldDietListboxOutMessage: (
|
|
277
|
+
outMessage: Listbox.OutMessage,
|
|
278
|
+
) => Update.Step<Model, Message> = M.type<Listbox.OutMessage>().pipe(
|
|
279
|
+
M.withReturnType<Update.Step<Model, Message>>(),
|
|
280
|
+
M.tagsExhaustive({
|
|
281
|
+
Selected:
|
|
282
|
+
({ value }) =>
|
|
283
|
+
model => {
|
|
284
|
+
const fields = routeToBrowseFields(model.route)
|
|
285
|
+
return [
|
|
286
|
+
model,
|
|
287
|
+
[
|
|
288
|
+
ReplaceFilters({
|
|
289
|
+
...fields,
|
|
290
|
+
diet: selectionToParam(Option.some(value), Diet),
|
|
291
|
+
}),
|
|
292
|
+
],
|
|
293
|
+
]
|
|
294
|
+
},
|
|
295
|
+
}),
|
|
296
|
+
)
|
|
297
|
+
|
|
298
|
+
const foldDietListbox = Update.foldChild({
|
|
299
|
+
update: DietListbox.update,
|
|
300
|
+
read: (model: Model) => Option.some(model.dietListbox),
|
|
301
|
+
write: (model, nextDietListbox) =>
|
|
302
|
+
evo(model, { dietListbox: () => nextDietListbox }),
|
|
303
|
+
toParentMessage: message => Message.GotDietListboxMessage({ message }),
|
|
304
|
+
foldOutMessage: foldDietListboxOutMessage,
|
|
305
|
+
})
|
|
306
|
+
|
|
307
|
+
const foldPeriodListboxOutMessage: (
|
|
308
|
+
outMessage: Listbox.OutMessage,
|
|
309
|
+
) => Update.Step<Model, Message> = M.type<Listbox.OutMessage>().pipe(
|
|
310
|
+
M.withReturnType<Update.Step<Model, Message>>(),
|
|
311
|
+
M.tagsExhaustive({
|
|
312
|
+
Selected:
|
|
313
|
+
({ value }) =>
|
|
314
|
+
model => {
|
|
315
|
+
const fields = routeToBrowseFields(model.route)
|
|
316
|
+
return [
|
|
317
|
+
model,
|
|
318
|
+
[
|
|
319
|
+
ReplaceFilters({
|
|
320
|
+
...fields,
|
|
321
|
+
period: selectionToParam(Option.some(value), Period),
|
|
322
|
+
}),
|
|
323
|
+
],
|
|
324
|
+
]
|
|
325
|
+
},
|
|
326
|
+
}),
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
const foldPeriodListbox = Update.foldChild({
|
|
330
|
+
update: PeriodListbox.update,
|
|
331
|
+
read: (model: Model) => Option.some(model.periodListbox),
|
|
332
|
+
write: (model, nextPeriodListbox) =>
|
|
333
|
+
evo(model, { periodListbox: () => nextPeriodListbox }),
|
|
334
|
+
toParentMessage: message => Message.GotPeriodListboxMessage({ message }),
|
|
335
|
+
foldOutMessage: foldPeriodListboxOutMessage,
|
|
336
|
+
})
|
|
337
|
+
|
|
338
|
+
export const update = (model: Model, message: Message) =>
|
|
339
|
+
Message.match<UpdateReturn>(message, {
|
|
340
|
+
CompletedNavigateInternal: () => [model, []],
|
|
341
|
+
CompletedLoadExternal: () => [model, []],
|
|
342
|
+
CompletedReplaceFilters: () => [model, []],
|
|
343
|
+
|
|
344
|
+
ClickedLink: ({ request }) =>
|
|
345
|
+
M.value(request).pipe(
|
|
346
|
+
withUpdateReturn,
|
|
347
|
+
M.tagsExhaustive({
|
|
348
|
+
Internal: ({ url }) => [
|
|
349
|
+
model,
|
|
350
|
+
[NavigateInternal({ url: urlToString(url) })],
|
|
351
|
+
],
|
|
352
|
+
External: ({ href }) => [model, [LoadExternal({ href })]],
|
|
353
|
+
}),
|
|
354
|
+
),
|
|
355
|
+
|
|
356
|
+
ChangedUrl: ({ url }) => {
|
|
357
|
+
const nextRoute = urlToAppRoute(url)
|
|
358
|
+
|
|
359
|
+
return [evo(model, { route: () => nextRoute }), []]
|
|
360
|
+
},
|
|
361
|
+
|
|
362
|
+
ChangedSearchInput: ({ value }) => {
|
|
363
|
+
const fields = routeToBrowseFields(model.route)
|
|
364
|
+
|
|
365
|
+
return [
|
|
366
|
+
model,
|
|
367
|
+
[
|
|
368
|
+
ReplaceFilters({
|
|
369
|
+
...fields,
|
|
370
|
+
search: Option.liftPredicate(value, String.isNonEmpty),
|
|
371
|
+
}),
|
|
372
|
+
],
|
|
373
|
+
]
|
|
374
|
+
},
|
|
375
|
+
|
|
376
|
+
ClickedColumnHeader: ({ column }) => {
|
|
377
|
+
const fields = routeToBrowseFields(model.route)
|
|
378
|
+
|
|
379
|
+
return [
|
|
380
|
+
model,
|
|
381
|
+
[
|
|
382
|
+
ReplaceFilters({
|
|
383
|
+
...fields,
|
|
384
|
+
sorting: nextSorting(fields.sorting, column),
|
|
385
|
+
}),
|
|
386
|
+
],
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
|
|
390
|
+
GotDietListboxMessage: ({ message }) => foldDietListbox(model, message),
|
|
391
|
+
|
|
392
|
+
GotPeriodListboxMessage: ({ message }) => foldPeriodListbox(model, message),
|
|
393
|
+
})
|
|
394
|
+
|
|
395
|
+
// VIEW
|
|
396
|
+
|
|
397
|
+
const columnOrders: Record<SortColumn, Order.Order<Dinosaur>> = {
|
|
398
|
+
Name: Order.mapInput(Order.String, ({ name }: Dinosaur) => name),
|
|
399
|
+
Period: Order.mapInput(Order.String, ({ period }: Dinosaur) => period),
|
|
400
|
+
Diet: Order.mapInput(Order.String, ({ diet }: Dinosaur) => diet),
|
|
401
|
+
Length: Order.mapInput(
|
|
402
|
+
Order.Number,
|
|
403
|
+
({ lengthMeters }: Dinosaur) => lengthMeters,
|
|
404
|
+
),
|
|
405
|
+
Weight: Order.mapInput(Order.Number, ({ weightKg }: Dinosaur) => weightKg),
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
const filterWhenSome =
|
|
409
|
+
<A, B>(
|
|
410
|
+
maybeValue: Option.Option<A>,
|
|
411
|
+
predicate: (value: A, item: B) => boolean,
|
|
412
|
+
) =>
|
|
413
|
+
(items: ReadonlyArray<B>): ReadonlyArray<B> =>
|
|
414
|
+
Option.match(maybeValue, {
|
|
415
|
+
onNone: () => items,
|
|
416
|
+
onSome: value => Array.filter(items, item => predicate(value, item)),
|
|
417
|
+
})
|
|
418
|
+
|
|
419
|
+
const sortBySorting =
|
|
420
|
+
<A>(sorting: Sorting, orders: Record<SortColumn, Order.Order<A>>) =>
|
|
421
|
+
(items: ReadonlyArray<A>): ReadonlyArray<A> =>
|
|
422
|
+
M.value(sorting).pipe(
|
|
423
|
+
M.tag('Unsorted', () => items),
|
|
424
|
+
M.tag('Ascending', ({ column }) => Array.sort(items, orders[column])),
|
|
425
|
+
M.tag('Descending', ({ column }) =>
|
|
426
|
+
Array.sort(items, Order.flip(orders[column])),
|
|
427
|
+
),
|
|
428
|
+
M.exhaustive,
|
|
429
|
+
)
|
|
430
|
+
|
|
431
|
+
const filterAndSort = (fields: BrowseFields): ReadonlyArray<Dinosaur> =>
|
|
432
|
+
pipe(
|
|
433
|
+
dinosaurs,
|
|
434
|
+
filterWhenSome(fields.search, (query, dinosaur) =>
|
|
435
|
+
dinosaur.name.toLowerCase().includes(query.toLowerCase()),
|
|
436
|
+
),
|
|
437
|
+
filterWhenSome(
|
|
438
|
+
fields.diet,
|
|
439
|
+
(dietValue, dinosaur) => dinosaur.diet === dietValue,
|
|
440
|
+
),
|
|
441
|
+
filterWhenSome(
|
|
442
|
+
fields.period,
|
|
443
|
+
(periodValue, dinosaur) => dinosaur.period === periodValue,
|
|
444
|
+
),
|
|
445
|
+
sortBySorting(fields.sorting, columnOrders),
|
|
446
|
+
)
|
|
447
|
+
|
|
448
|
+
const sortIndicator = (column: SortColumn, sorting: Sorting): string =>
|
|
449
|
+
M.value(columnSortDirection(sorting, column)).pipe(
|
|
450
|
+
M.when('Unsorted', () => ''),
|
|
451
|
+
M.when('Ascending', () => '↑'),
|
|
452
|
+
M.when('Descending', () => '↓'),
|
|
453
|
+
M.exhaustive,
|
|
454
|
+
)
|
|
455
|
+
|
|
456
|
+
const BADGE_BASE = 'px-2 py-0.5 rounded-full text-xs font-medium'
|
|
457
|
+
|
|
458
|
+
const periodBadgeClass = (period: string): string =>
|
|
459
|
+
clsx(BADGE_BASE, {
|
|
460
|
+
'bg-amber-100 text-amber-800': period === 'Triassic',
|
|
461
|
+
'bg-sky-100 text-sky-800': period === 'Jurassic',
|
|
462
|
+
'bg-purple-100 text-purple-800': period === 'Cretaceous',
|
|
463
|
+
})
|
|
464
|
+
|
|
465
|
+
const dietBadgeClass = (diet: string): string =>
|
|
466
|
+
clsx(BADGE_BASE, {
|
|
467
|
+
'bg-red-100 text-red-800': diet === 'Carnivore',
|
|
468
|
+
'bg-green-100 text-green-800': diet === 'Herbivore',
|
|
469
|
+
'bg-orange-100 text-orange-800': diet === 'Omnivore',
|
|
470
|
+
})
|
|
471
|
+
|
|
472
|
+
const SORT_INDICATOR_WIDTH = 'w-4'
|
|
473
|
+
|
|
474
|
+
const headerButtonClass =
|
|
475
|
+
'w-full px-4 py-3 text-sm font-semibold text-gray-700 cursor-pointer select-none hover:bg-gray-100 focus-visible:bg-emerald-100 focus-visible:text-emerald-900 focus-visible:outline-none transition'
|
|
476
|
+
|
|
477
|
+
const bodyCellClass = 'px-4 py-3 text-sm text-gray-700'
|
|
478
|
+
|
|
479
|
+
const dinosaurRowView = (dinosaur: Dinosaur, h: HtmlBuilder<Message>): Html =>
|
|
480
|
+
h.keyed('tr')(
|
|
481
|
+
dinosaur.name,
|
|
482
|
+
[h.Class('border-b border-gray-100 hover:bg-gray-50 transition')],
|
|
483
|
+
[
|
|
484
|
+
h.td(
|
|
485
|
+
[h.Class(clsx(bodyCellClass, 'font-medium text-gray-900'))],
|
|
486
|
+
[dinosaur.name],
|
|
487
|
+
),
|
|
488
|
+
h.td(
|
|
489
|
+
[h.Class(bodyCellClass)],
|
|
490
|
+
[
|
|
491
|
+
h.span(
|
|
492
|
+
[h.Class(periodBadgeClass(dinosaur.period))],
|
|
493
|
+
[dinosaur.period],
|
|
494
|
+
),
|
|
495
|
+
],
|
|
496
|
+
),
|
|
497
|
+
h.td(
|
|
498
|
+
[h.Class(bodyCellClass)],
|
|
499
|
+
[h.span([h.Class(dietBadgeClass(dinosaur.diet))], [dinosaur.diet])],
|
|
500
|
+
),
|
|
501
|
+
h.td(
|
|
502
|
+
[h.Class(clsx(bodyCellClass, 'text-right tabular-nums'))],
|
|
503
|
+
[dinosaur.lengthMeters.toString()],
|
|
504
|
+
),
|
|
505
|
+
h.td(
|
|
506
|
+
[h.Class(clsx(bodyCellClass, 'text-right tabular-nums'))],
|
|
507
|
+
[dinosaur.weightKg.toLocaleString()],
|
|
508
|
+
),
|
|
509
|
+
],
|
|
510
|
+
)
|
|
511
|
+
|
|
512
|
+
const sortAriaLabel = (column: SortColumn, sorting: Sorting): string =>
|
|
513
|
+
M.value(columnSortDirection(sorting, column)).pipe(
|
|
514
|
+
M.when('Unsorted', () => `Sort by ${column}`),
|
|
515
|
+
M.when('Ascending', () => `Sort by ${column}, currently ascending`),
|
|
516
|
+
M.when('Descending', () => `Sort by ${column}, currently descending`),
|
|
517
|
+
M.exhaustive,
|
|
518
|
+
)
|
|
519
|
+
|
|
520
|
+
const ariaSortValue = (column: SortColumn, sorting: Sorting): string =>
|
|
521
|
+
M.value(columnSortDirection(sorting, column)).pipe(
|
|
522
|
+
M.when('Unsorted', () => 'none'),
|
|
523
|
+
M.when('Ascending', () => 'ascending'),
|
|
524
|
+
M.when('Descending', () => 'descending'),
|
|
525
|
+
M.exhaustive,
|
|
526
|
+
)
|
|
527
|
+
|
|
528
|
+
const sortableColumnHeader = (
|
|
529
|
+
column: SortColumn,
|
|
530
|
+
displayLabel: string,
|
|
531
|
+
fields: BrowseFields,
|
|
532
|
+
isRightAligned: boolean,
|
|
533
|
+
h: HtmlBuilder<Message>,
|
|
534
|
+
): Html => {
|
|
535
|
+
const indicator = h.span(
|
|
536
|
+
[h.Class(clsx(SORT_INDICATOR_WIDTH, 'inline-block text-center'))],
|
|
537
|
+
[sortIndicator(column, fields.sorting)],
|
|
538
|
+
)
|
|
539
|
+
const label = h.span([], [displayLabel])
|
|
540
|
+
const alignment = isRightAligned ? 'text-right' : 'text-left'
|
|
541
|
+
|
|
542
|
+
return h.th(
|
|
543
|
+
[h.AriaSort(ariaSortValue(column, fields.sorting))],
|
|
544
|
+
[
|
|
545
|
+
Button.view(
|
|
546
|
+
{
|
|
547
|
+
onClick: Message.ClickedColumnHeader({ column }),
|
|
548
|
+
toView: attributes =>
|
|
549
|
+
h.button(
|
|
550
|
+
[
|
|
551
|
+
...attributes.button,
|
|
552
|
+
h.AriaLabel(sortAriaLabel(column, fields.sorting)),
|
|
553
|
+
h.Class(clsx(headerButtonClass, alignment)),
|
|
554
|
+
],
|
|
555
|
+
isRightAligned ? [indicator, label] : [label, indicator],
|
|
556
|
+
),
|
|
557
|
+
},
|
|
558
|
+
h,
|
|
559
|
+
),
|
|
560
|
+
],
|
|
561
|
+
)
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
const LISTBOX_ANCHOR: AnchorConfig = {
|
|
565
|
+
placement: 'bottom-start',
|
|
566
|
+
gap: 4,
|
|
567
|
+
padding: 8,
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
const listboxButtonClassName =
|
|
571
|
+
'inline-flex items-center justify-between gap-2 min-w-40 px-4 py-2 text-sm border border-gray-300 rounded-lg bg-white cursor-pointer select-none hover:bg-gray-50 focus:outline-none focus-visible:ring-2 focus-visible:ring-emerald-500 focus-visible:border-emerald-500'
|
|
572
|
+
|
|
573
|
+
const listboxItemsClassName =
|
|
574
|
+
'absolute mt-1 min-w-40 rounded-lg border border-gray-200 bg-white shadow-lg overflow-hidden z-10 outline-none'
|
|
575
|
+
|
|
576
|
+
const listboxItemClassName =
|
|
577
|
+
'group px-3 py-2 text-sm text-gray-700 cursor-pointer data-[active]:bg-emerald-50 data-[active]:text-emerald-900'
|
|
578
|
+
|
|
579
|
+
const listboxBackdropClassName = 'fixed inset-0 z-0'
|
|
580
|
+
|
|
581
|
+
const listboxWrapperClassName = 'relative inline-block'
|
|
582
|
+
|
|
583
|
+
const filterItemConfig = (
|
|
584
|
+
label: string,
|
|
585
|
+
h: HtmlBuilder<Message>,
|
|
586
|
+
): Listbox.ItemConfig => {
|
|
587
|
+
return {
|
|
588
|
+
className: listboxItemClassName,
|
|
589
|
+
content: h.div(
|
|
590
|
+
[h.Class('flex items-center gap-2')],
|
|
591
|
+
[
|
|
592
|
+
h.span(
|
|
593
|
+
[
|
|
594
|
+
h.Class(
|
|
595
|
+
'w-4 text-center text-emerald-600 invisible group-data-[selected]:visible',
|
|
596
|
+
),
|
|
597
|
+
],
|
|
598
|
+
['✓'],
|
|
599
|
+
),
|
|
600
|
+
h.span([], [label]),
|
|
601
|
+
],
|
|
602
|
+
),
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
const chevronDown = (className: string, h: HtmlBuilder<Message>): Html =>
|
|
607
|
+
h.svg(
|
|
608
|
+
[
|
|
609
|
+
h.AriaHidden(true),
|
|
610
|
+
h.Class(className),
|
|
611
|
+
h.Xmlns('http://www.w3.org/2000/svg'),
|
|
612
|
+
h.Fill('none'),
|
|
613
|
+
h.ViewBox('0 0 24 24'),
|
|
614
|
+
h.StrokeWidth('1.5'),
|
|
615
|
+
h.Stroke('currentColor'),
|
|
616
|
+
],
|
|
617
|
+
[
|
|
618
|
+
h.path([
|
|
619
|
+
h.StrokeLinecap('round'),
|
|
620
|
+
h.StrokeLinejoin('round'),
|
|
621
|
+
h.D('M19.5 8.25l-7.5 7.5-7.5-7.5'),
|
|
622
|
+
]),
|
|
623
|
+
],
|
|
624
|
+
)
|
|
625
|
+
|
|
626
|
+
const filterButtonContent = (label: string, h: HtmlBuilder<Message>): Html =>
|
|
627
|
+
h.div(
|
|
628
|
+
[h.Class('flex w-full items-center justify-between gap-4')],
|
|
629
|
+
[h.span([], [label]), chevronDown('w-4 h-4 text-gray-400', h)],
|
|
630
|
+
)
|
|
631
|
+
|
|
632
|
+
const filterButtonLabel = (
|
|
633
|
+
maybeSelectedItem: Option.Option<string>,
|
|
634
|
+
fallback: string,
|
|
635
|
+
): string =>
|
|
636
|
+
pipe(
|
|
637
|
+
maybeSelectedItem,
|
|
638
|
+
Option.filter(String.isNonEmpty),
|
|
639
|
+
Option.getOrElse(() => fallback),
|
|
640
|
+
)
|
|
641
|
+
|
|
642
|
+
const dietLabel = (item: string): string =>
|
|
643
|
+
String.isEmpty(item) ? 'All Diets' : item
|
|
644
|
+
|
|
645
|
+
const periodLabel = (item: string): string =>
|
|
646
|
+
String.isEmpty(item) ? 'All Periods' : item
|
|
647
|
+
|
|
648
|
+
const browseView = (
|
|
649
|
+
model: Model,
|
|
650
|
+
route: typeof BrowseRoute.Type,
|
|
651
|
+
h: HtmlBuilder<Message>,
|
|
652
|
+
): Html => {
|
|
653
|
+
const fields = routeToBrowseFields(route)
|
|
654
|
+
const results = filterAndSort(fields)
|
|
655
|
+
|
|
656
|
+
return h.div(
|
|
657
|
+
[h.Class('max-w-6xl mx-auto px-4')],
|
|
658
|
+
[
|
|
659
|
+
h.h1(
|
|
660
|
+
[h.Class('text-3xl font-bold text-gray-800 mb-2')],
|
|
661
|
+
['Dinosaur Explorer'],
|
|
662
|
+
),
|
|
663
|
+
h.p(
|
|
664
|
+
[h.Class('text-gray-500 mb-6')],
|
|
665
|
+
[
|
|
666
|
+
'Filter, sort, and search. Every control syncs to the URL. Try changing the filters, then copy the URL or hit the back button.',
|
|
667
|
+
],
|
|
668
|
+
),
|
|
669
|
+
|
|
670
|
+
h.div(
|
|
671
|
+
[h.Class('flex flex-wrap items-start gap-3 mb-6')],
|
|
672
|
+
[
|
|
673
|
+
Input.view(
|
|
674
|
+
{
|
|
675
|
+
id: 'dinosaur-search',
|
|
676
|
+
value: Option.getOrElse(fields.search, () => ''),
|
|
677
|
+
placeholder: 'Search by name…',
|
|
678
|
+
onInput: value => Message.ChangedSearchInput({ value }),
|
|
679
|
+
toView: attributes =>
|
|
680
|
+
h.input([
|
|
681
|
+
...attributes.input,
|
|
682
|
+
h.Class(
|
|
683
|
+
'flex-1 min-w-48 px-4 py-2 text-sm border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500',
|
|
684
|
+
),
|
|
685
|
+
]),
|
|
686
|
+
},
|
|
687
|
+
h,
|
|
688
|
+
),
|
|
689
|
+
h.submodel({
|
|
690
|
+
slotId: model.dietListbox.id,
|
|
691
|
+
model: model.dietListbox,
|
|
692
|
+
view: DietListbox.view,
|
|
693
|
+
viewInputs: {
|
|
694
|
+
anchor: LISTBOX_ANCHOR,
|
|
695
|
+
items: dietFilterItems,
|
|
696
|
+
maybeSelectedValue: Option.orElseSome(fields.diet, () => ''),
|
|
697
|
+
itemToConfig: item => filterItemConfig(dietLabel(item), h),
|
|
698
|
+
itemToSearchText: dietLabel,
|
|
699
|
+
buttonContent: filterButtonContent(
|
|
700
|
+
filterButtonLabel(fields.diet, 'All Diets'),
|
|
701
|
+
h,
|
|
702
|
+
),
|
|
703
|
+
buttonAttributes: childAttributes([
|
|
704
|
+
h.Class(listboxButtonClassName),
|
|
705
|
+
]),
|
|
706
|
+
itemsAttributes: childAttributes([
|
|
707
|
+
h.Class(listboxItemsClassName),
|
|
708
|
+
]),
|
|
709
|
+
backdropAttributes: childAttributes([
|
|
710
|
+
h.Class(listboxBackdropClassName),
|
|
711
|
+
]),
|
|
712
|
+
attributes: childAttributes([h.Class(listboxWrapperClassName)]),
|
|
713
|
+
},
|
|
714
|
+
toParentMessage: message =>
|
|
715
|
+
Message.GotDietListboxMessage({ message }),
|
|
716
|
+
}),
|
|
717
|
+
h.submodel({
|
|
718
|
+
slotId: model.periodListbox.id,
|
|
719
|
+
model: model.periodListbox,
|
|
720
|
+
view: PeriodListbox.view,
|
|
721
|
+
viewInputs: {
|
|
722
|
+
anchor: LISTBOX_ANCHOR,
|
|
723
|
+
items: periodFilterItems,
|
|
724
|
+
maybeSelectedValue: Option.orElseSome(fields.period, () => ''),
|
|
725
|
+
itemToConfig: item => filterItemConfig(periodLabel(item), h),
|
|
726
|
+
itemToSearchText: periodLabel,
|
|
727
|
+
buttonContent: filterButtonContent(
|
|
728
|
+
filterButtonLabel(fields.period, 'All Periods'),
|
|
729
|
+
h,
|
|
730
|
+
),
|
|
731
|
+
buttonAttributes: childAttributes([
|
|
732
|
+
h.Class(listboxButtonClassName),
|
|
733
|
+
]),
|
|
734
|
+
itemsAttributes: childAttributes([
|
|
735
|
+
h.Class(listboxItemsClassName),
|
|
736
|
+
]),
|
|
737
|
+
backdropAttributes: childAttributes([
|
|
738
|
+
h.Class(listboxBackdropClassName),
|
|
739
|
+
]),
|
|
740
|
+
attributes: childAttributes([h.Class(listboxWrapperClassName)]),
|
|
741
|
+
},
|
|
742
|
+
toParentMessage: message =>
|
|
743
|
+
Message.GotPeriodListboxMessage({ message }),
|
|
744
|
+
}),
|
|
745
|
+
],
|
|
746
|
+
),
|
|
747
|
+
|
|
748
|
+
h.p(
|
|
749
|
+
[h.Class('text-sm text-gray-500 mb-3')],
|
|
750
|
+
[
|
|
751
|
+
`Showing ${Array.length(results)} of ${Array.length(dinosaurs)} dinosaurs`,
|
|
752
|
+
],
|
|
753
|
+
),
|
|
754
|
+
|
|
755
|
+
Array.match(results, {
|
|
756
|
+
onEmpty: () =>
|
|
757
|
+
h.div(
|
|
758
|
+
[h.Class('text-center py-12 text-gray-400')],
|
|
759
|
+
[
|
|
760
|
+
h.p([h.Class('text-lg')], ['No dinosaurs match your filters.']),
|
|
761
|
+
h.p(
|
|
762
|
+
[h.Class('text-sm mt-2')],
|
|
763
|
+
['Try broadening your search or removing filters.'],
|
|
764
|
+
),
|
|
765
|
+
],
|
|
766
|
+
),
|
|
767
|
+
onNonEmpty: rows =>
|
|
768
|
+
h.div(
|
|
769
|
+
[h.Class('overflow-x-auto rounded-lg border border-gray-200')],
|
|
770
|
+
[
|
|
771
|
+
h.table(
|
|
772
|
+
[h.Class('w-full')],
|
|
773
|
+
[
|
|
774
|
+
h.thead(
|
|
775
|
+
[h.Class('bg-gray-50 border-b border-gray-200')],
|
|
776
|
+
[
|
|
777
|
+
h.tr(
|
|
778
|
+
[],
|
|
779
|
+
[
|
|
780
|
+
sortableColumnHeader(
|
|
781
|
+
'Name',
|
|
782
|
+
'Name',
|
|
783
|
+
fields,
|
|
784
|
+
false,
|
|
785
|
+
h,
|
|
786
|
+
),
|
|
787
|
+
sortableColumnHeader(
|
|
788
|
+
'Period',
|
|
789
|
+
'Period',
|
|
790
|
+
fields,
|
|
791
|
+
false,
|
|
792
|
+
h,
|
|
793
|
+
),
|
|
794
|
+
sortableColumnHeader(
|
|
795
|
+
'Diet',
|
|
796
|
+
'Diet',
|
|
797
|
+
fields,
|
|
798
|
+
false,
|
|
799
|
+
h,
|
|
800
|
+
),
|
|
801
|
+
sortableColumnHeader(
|
|
802
|
+
'Length',
|
|
803
|
+
'Length (m)',
|
|
804
|
+
fields,
|
|
805
|
+
true,
|
|
806
|
+
h,
|
|
807
|
+
),
|
|
808
|
+
sortableColumnHeader(
|
|
809
|
+
'Weight',
|
|
810
|
+
'Weight (kg)',
|
|
811
|
+
fields,
|
|
812
|
+
true,
|
|
813
|
+
h,
|
|
814
|
+
),
|
|
815
|
+
],
|
|
816
|
+
),
|
|
817
|
+
],
|
|
818
|
+
),
|
|
819
|
+
h.tbody(
|
|
820
|
+
[],
|
|
821
|
+
rows.map(row => dinosaurRowView(row, h)),
|
|
822
|
+
),
|
|
823
|
+
],
|
|
824
|
+
),
|
|
825
|
+
],
|
|
826
|
+
),
|
|
827
|
+
}),
|
|
828
|
+
|
|
829
|
+
h.p(
|
|
830
|
+
[h.Class('text-xs text-gray-400 mt-6 text-center')],
|
|
831
|
+
[
|
|
832
|
+
'All filter and sort state lives in the URL. Share it or bookmark it.',
|
|
833
|
+
],
|
|
834
|
+
),
|
|
835
|
+
],
|
|
836
|
+
)
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
const notFoundView = (path: string, h: HtmlBuilder<Message>): Html =>
|
|
840
|
+
h.div(
|
|
841
|
+
[h.Class('max-w-4xl mx-auto px-4 text-center')],
|
|
842
|
+
[
|
|
843
|
+
h.h1(
|
|
844
|
+
[h.Class('text-4xl font-bold text-red-600 mb-6')],
|
|
845
|
+
['404 — Page Not Found'],
|
|
846
|
+
),
|
|
847
|
+
h.p(
|
|
848
|
+
[h.Class('text-lg text-gray-600 mb-4')],
|
|
849
|
+
[`The path "${path}" was not found.`],
|
|
850
|
+
),
|
|
851
|
+
h.a(
|
|
852
|
+
[
|
|
853
|
+
h.Href(browseRouter(emptyBrowseFields)),
|
|
854
|
+
h.Class('text-emerald-600 hover:underline'),
|
|
855
|
+
],
|
|
856
|
+
['← Back to Dinosaur Explorer'],
|
|
857
|
+
),
|
|
858
|
+
],
|
|
859
|
+
)
|
|
860
|
+
|
|
861
|
+
const routeTitle = (route: Model['route']): string =>
|
|
862
|
+
M.value(route).pipe(
|
|
863
|
+
M.tag('Browse', () => 'Dinosaur Explorer'),
|
|
864
|
+
M.orElse(() => 'Not Found | Dinosaur Explorer'),
|
|
865
|
+
)
|
|
866
|
+
|
|
867
|
+
export const view = (model: Model, h: HtmlBuilder<Message>): Document => {
|
|
868
|
+
const routeContent = M.value(model.route).pipe(
|
|
869
|
+
M.tagsExhaustive({
|
|
870
|
+
Browse: route => browseView(model, route, h),
|
|
871
|
+
NotFound: ({ path }) => notFoundView(path, h),
|
|
872
|
+
}),
|
|
873
|
+
)
|
|
874
|
+
|
|
875
|
+
const body = h.div(
|
|
876
|
+
[h.Class('min-h-screen bg-gray-50')],
|
|
877
|
+
[
|
|
878
|
+
h.header(
|
|
879
|
+
[h.Class('bg-emerald-600 text-white px-6 py-4 mb-8 shadow-sm')],
|
|
880
|
+
[
|
|
881
|
+
h.div(
|
|
882
|
+
[h.Class('max-w-6xl mx-auto flex items-center gap-3')],
|
|
883
|
+
[
|
|
884
|
+
h.span([h.Class('text-lg font-semibold')], ['foldkit']),
|
|
885
|
+
h.span(
|
|
886
|
+
[h.Class('text-emerald-200 text-sm')],
|
|
887
|
+
['query-sync example'],
|
|
888
|
+
),
|
|
889
|
+
],
|
|
890
|
+
),
|
|
891
|
+
],
|
|
892
|
+
),
|
|
893
|
+
h.main([h.Class('pb-12')], [routeContent]),
|
|
894
|
+
],
|
|
895
|
+
)
|
|
896
|
+
|
|
897
|
+
return { title: routeTitle(model.route), body }
|
|
898
|
+
}
|