@askrjs/cli 0.0.2
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/LICENSE +201 -0
- package/README.md +140 -0
- package/dist/add-DqhqRzBQ.js +555 -0
- package/dist/add-DqhqRzBQ.js.map +1 -0
- package/dist/add.js +3 -0
- package/dist/cli.js +91 -0
- package/dist/cli.js.map +1 -0
- package/dist/create.js +923 -0
- package/dist/create.js.map +1 -0
- package/dist/is-direct-execution-Cdlr-ZUl.js +20 -0
- package/dist/is-direct-execution-Cdlr-ZUl.js.map +1 -0
- package/dist/openapi.js +127 -0
- package/dist/openapi.js.map +1 -0
- package/dist/skills/askr-accessibility/SKILL.md +68 -0
- package/dist/skills/askr-accessibility/agents/openai.yaml +4 -0
- package/dist/skills/askr-agent-execution/SKILL.md +85 -0
- package/dist/skills/askr-agent-execution/agents/openai.yaml +4 -0
- package/dist/skills/askr-agent-workflows/SKILL.md +57 -0
- package/dist/skills/askr-agent-workflows/agents/openai.yaml +4 -0
- package/dist/skills/askr-api-integration/SKILL.md +79 -0
- package/dist/skills/askr-api-integration/agents/openai.yaml +4 -0
- package/dist/skills/askr-app-builder/SKILL.md +99 -0
- package/dist/skills/askr-app-builder/agents/openai.yaml +4 -0
- package/dist/skills/askr-auth-access/SKILL.md +74 -0
- package/dist/skills/askr-auth-access/agents/openai.yaml +4 -0
- package/dist/skills/askr-cli-vite/SKILL.md +76 -0
- package/dist/skills/askr-cli-vite/agents/openai.yaml +4 -0
- package/dist/skills/askr-dashboard-charts/SKILL.md +82 -0
- package/dist/skills/askr-dashboard-charts/agents/openai.yaml +4 -0
- package/dist/skills/askr-design-system/SKILL.md +86 -0
- package/dist/skills/askr-design-system/agents/openai.yaml +4 -0
- package/dist/skills/askr-env-config/SKILL.md +74 -0
- package/dist/skills/askr-env-config/agents/openai.yaml +4 -0
- package/dist/skills/askr-error-loading-empty/SKILL.md +89 -0
- package/dist/skills/askr-error-loading-empty/agents/openai.yaml +4 -0
- package/dist/skills/askr-file-upload-artifacts/SKILL.md +77 -0
- package/dist/skills/askr-file-upload-artifacts/agents/openai.yaml +4 -0
- package/dist/skills/askr-forms-tables-crud/SKILL.md +98 -0
- package/dist/skills/askr-forms-tables-crud/agents/openai.yaml +4 -0
- package/dist/skills/askr-mental-model/SKILL.md +109 -0
- package/dist/skills/askr-mental-model/agents/openai.yaml +4 -0
- package/dist/skills/askr-migration-react/SKILL.md +81 -0
- package/dist/skills/askr-migration-react/agents/openai.yaml +4 -0
- package/dist/skills/askr-observability-debugging/SKILL.md +83 -0
- package/dist/skills/askr-observability-debugging/agents/openai.yaml +4 -0
- package/dist/skills/askr-project-structure/SKILL.md +79 -0
- package/dist/skills/askr-project-structure/agents/openai.yaml +4 -0
- package/dist/skills/askr-query-mutation/SKILL.md +115 -0
- package/dist/skills/askr-query-mutation/agents/openai.yaml +4 -0
- package/dist/skills/askr-realtime-streaming/SKILL.md +76 -0
- package/dist/skills/askr-realtime-streaming/agents/openai.yaml +4 -0
- package/dist/skills/askr-resources-data/SKILL.md +100 -0
- package/dist/skills/askr-resources-data/agents/openai.yaml +4 -0
- package/dist/skills/askr-routing-layouts/SKILL.md +107 -0
- package/dist/skills/askr-routing-layouts/agents/openai.yaml +4 -0
- package/dist/skills/askr-runtime-reactivity/SKILL.md +92 -0
- package/dist/skills/askr-runtime-reactivity/agents/openai.yaml +4 -0
- package/dist/skills/askr-ssr-ssg/SKILL.md +76 -0
- package/dist/skills/askr-ssr-ssg/agents/openai.yaml +4 -0
- package/dist/skills/askr-testing-determinism/SKILL.md +75 -0
- package/dist/skills/askr-testing-determinism/agents/openai.yaml +4 -0
- package/dist/skills/askr-theming/SKILL.md +86 -0
- package/dist/skills/askr-theming/agents/openai.yaml +4 -0
- package/dist/skills/askr-ui-composition/SKILL.md +92 -0
- package/dist/skills/askr-ui-composition/agents/openai.yaml +4 -0
- package/dist/skills-Bh0mEhIx.js +682 -0
- package/dist/skills-Bh0mEhIx.js.map +1 -0
- package/dist/skills.js +3 -0
- package/dist/ssg.js +188 -0
- package/dist/ssg.js.map +1 -0
- package/dist/templates/full-stack/AGENTS.md +12 -0
- package/dist/templates/full-stack/README.md +18 -0
- package/dist/templates/full-stack/gitignore.template +4 -0
- package/dist/templates/full-stack/index.html +14 -0
- package/dist/templates/full-stack/package.json +37 -0
- package/dist/templates/full-stack/server.ts +13 -0
- package/dist/templates/full-stack/src/action-authorizations.ts +10 -0
- package/dist/templates/full-stack/src/actions/create-message.ts +10 -0
- package/dist/templates/full-stack/src/i18n.ts +8 -0
- package/dist/templates/full-stack/src/main.tsx +12 -0
- package/dist/templates/full-stack/src/pages/home.tsx +25 -0
- package/dist/templates/full-stack/src/pages/layout.tsx +33 -0
- package/dist/templates/full-stack/src/pages/not-found.tsx +4 -0
- package/dist/templates/full-stack/src/routes.tsx +20 -0
- package/dist/templates/full-stack/src/schemas.ts +11 -0
- package/dist/templates/full-stack/src/server/action-registry.ts +12 -0
- package/dist/templates/full-stack/src/server/actions/create-message.ts +14 -0
- package/dist/templates/full-stack/src/server/app.ts +66 -0
- package/dist/templates/full-stack/src/server/dependencies.ts +55 -0
- package/dist/templates/full-stack/src/server/entry-server.ts +8 -0
- package/dist/templates/full-stack/src/telemetry.ts +4 -0
- package/dist/templates/full-stack/src/vite-server.d.ts +6 -0
- package/dist/templates/full-stack/tests/actions/create-message.test.ts +13 -0
- package/dist/templates/full-stack/tsconfig.json +16 -0
- package/dist/templates/full-stack/vite.config.ts +11 -0
- package/dist/templates/spa/AGENTS.md +60 -0
- package/dist/templates/spa/README.md +96 -0
- package/dist/templates/spa/gitignore.template +16 -0
- package/dist/templates/spa/index.html +13 -0
- package/dist/templates/spa/package.json +35 -0
- package/dist/templates/spa/src/adapters/operations-client.ts +90 -0
- package/dist/templates/spa/src/components/shared/metric-card.tsx +27 -0
- package/dist/templates/spa/src/components/shared/status-badge.tsx +24 -0
- package/dist/templates/spa/src/features/operations/operations.query.ts +9 -0
- package/dist/templates/spa/src/main.tsx +10 -0
- package/dist/templates/spa/src/pages/_layout.tsx +9 -0
- package/dist/templates/spa/src/pages/_routes.tsx +27 -0
- package/dist/templates/spa/src/pages/app/_layout.tsx +94 -0
- package/dist/templates/spa/src/pages/app/_routes.tsx +10 -0
- package/dist/templates/spa/src/pages/app/admin-home.tsx +152 -0
- package/dist/templates/spa/src/pages/app/agent-runs.tsx +93 -0
- package/dist/templates/spa/src/pages/app/settings.tsx +91 -0
- package/dist/templates/spa/src/pages/auth/_layout.tsx +38 -0
- package/dist/templates/spa/src/pages/auth/_routes.tsx +6 -0
- package/dist/templates/spa/src/pages/auth/login.tsx +63 -0
- package/dist/templates/spa/src/pages/not-found.tsx +22 -0
- package/dist/templates/spa/src/pages/public/_layout.tsx +47 -0
- package/dist/templates/spa/src/pages/public/_routes.tsx +6 -0
- package/dist/templates/spa/src/pages/public/home.tsx +143 -0
- package/dist/templates/spa/src/shared/format.ts +12 -0
- package/dist/templates/spa/src/shared/navigation.ts +15 -0
- package/dist/templates/spa/src/styles/components.css +49 -0
- package/dist/templates/spa/src/styles/layout.css +192 -0
- package/dist/templates/spa/src/styles/reset.css +44 -0
- package/dist/templates/spa/src/styles/theme.css +57 -0
- package/dist/templates/spa/src/styles/tokens.css +20 -0
- package/dist/templates/spa/src/styles.css +7 -0
- package/dist/templates/spa/src/styles.d.ts +1 -0
- package/dist/templates/spa/tests/app.test.tsx +37 -0
- package/dist/templates/spa/tests/components/shared.test.tsx +12 -0
- package/dist/templates/spa/tests/resources.test.ts +22 -0
- package/dist/templates/spa/tsconfig.json +20 -0
- package/dist/templates/spa/tsconfig.node.json +10 -0
- package/dist/templates/spa/vite.config.ts +24 -0
- package/dist/templates/spa/vitest.config.ts +17 -0
- package/dist/templates/ssg/AGENTS.md +55 -0
- package/dist/templates/ssg/README.md +39 -0
- package/dist/templates/ssg/gitignore.template +17 -0
- package/dist/templates/ssg/index.html +13 -0
- package/dist/templates/ssg/package.json +35 -0
- package/dist/templates/ssg/src/app.tsx +14 -0
- package/dist/templates/ssg/src/components/badge.tsx +3 -0
- package/dist/templates/ssg/src/components/counter.tsx +30 -0
- package/dist/templates/ssg/src/components/site-shell.tsx +111 -0
- package/dist/templates/ssg/src/jsx.d.ts +23 -0
- package/dist/templates/ssg/src/main.tsx +8 -0
- package/dist/templates/ssg/src/pages/about.tsx +82 -0
- package/dist/templates/ssg/src/pages/content.tsx +63 -0
- package/dist/templates/ssg/src/pages/example.tsx +97 -0
- package/dist/templates/ssg/src/pages/home.tsx +51 -0
- package/dist/templates/ssg/src/resources/user.ts +15 -0
- package/dist/templates/ssg/src/routes.tsx +15 -0
- package/dist/templates/ssg/src/styles.css +89 -0
- package/dist/templates/ssg/src/vite-env.d.ts +5 -0
- package/dist/templates/ssg/ssg.config.ts +34 -0
- package/dist/templates/ssg/tests/app.test.tsx +19 -0
- package/dist/templates/ssg/tests/components/counter.test.tsx +18 -0
- package/dist/templates/ssg/tests/resources.test.ts +11 -0
- package/dist/templates/ssg/tests/ssg-config.test.ts +11 -0
- package/dist/templates/ssg/tsconfig.json +20 -0
- package/dist/templates/ssg/tsconfig.node.json +10 -0
- package/dist/templates/ssg/vite.config.ts +24 -0
- package/dist/templates/ssg/vitest.config.ts +17 -0
- package/dist/templates/ssr/AGENTS.md +28 -0
- package/dist/templates/ssr/README.md +38 -0
- package/dist/templates/ssr/gitignore.template +16 -0
- package/dist/templates/ssr/index.html +13 -0
- package/dist/templates/ssr/package.json +34 -0
- package/dist/templates/ssr/server.ts +16 -0
- package/dist/templates/ssr/src/app.tsx +21 -0
- package/dist/templates/ssr/src/components/counter.tsx +26 -0
- package/dist/templates/ssr/src/entry-server.tsx +10 -0
- package/dist/templates/ssr/src/main.tsx +11 -0
- package/dist/templates/ssr/src/pages/about.tsx +75 -0
- package/dist/templates/ssr/src/pages/example.tsx +113 -0
- package/dist/templates/ssr/src/pages/home.tsx +56 -0
- package/dist/templates/ssr/src/resources/user.ts +15 -0
- package/dist/templates/ssr/src/routes.tsx +13 -0
- package/dist/templates/ssr/src/styles.css +148 -0
- package/dist/templates/ssr/src/vite-server.d.ts +7 -0
- package/dist/templates/ssr/tests/app.test.tsx +24 -0
- package/dist/templates/ssr/tests/components/counter.test.tsx +13 -0
- package/dist/templates/ssr/tests/resources.test.ts +11 -0
- package/dist/templates/ssr/tsconfig.json +22 -0
- package/dist/templates/ssr/tsconfig.node.json +10 -0
- package/dist/templates/ssr/tsconfig.server.json +15 -0
- package/dist/templates/ssr/vite.config.ts +25 -0
- package/dist/templates/ssr/vitest.config.ts +13 -0
- package/dist/templates/startkit/AGENTS.md +77 -0
- package/dist/templates/startkit/README.md +192 -0
- package/dist/templates/startkit/gitignore.template +16 -0
- package/dist/templates/startkit/index.html +13 -0
- package/dist/templates/startkit/package.json +35 -0
- package/dist/templates/startkit/src/components/app-header.tsx +93 -0
- package/dist/templates/startkit/src/components/app-sidebar.tsx +95 -0
- package/dist/templates/startkit/src/components/data-table.tsx +80 -0
- package/dist/templates/startkit/src/components/empty-state.tsx +13 -0
- package/dist/templates/startkit/src/components/page-header.tsx +23 -0
- package/dist/templates/startkit/src/components/stat-card.tsx +24 -0
- package/dist/templates/startkit/src/features/accounts/account-filters.tsx +61 -0
- package/dist/templates/startkit/src/features/accounts/account-table.tsx +79 -0
- package/dist/templates/startkit/src/lib/format.ts +31 -0
- package/dist/templates/startkit/src/lib/mock-data.ts +441 -0
- package/dist/templates/startkit/src/lib/routes.ts +116 -0
- package/dist/templates/startkit/src/main.tsx +12 -0
- package/dist/templates/startkit/src/pages/_layout.tsx +56 -0
- package/dist/templates/startkit/src/pages/auth/_layout.tsx +7 -0
- package/dist/templates/startkit/src/pages/auth/login.tsx +129 -0
- package/dist/templates/startkit/src/pages/home.tsx +83 -0
- package/dist/templates/startkit/src/pages/not-found.tsx +24 -0
- package/dist/templates/startkit/src/pages/workspace/_layout.tsx +17 -0
- package/dist/templates/startkit/src/pages/workspace/accounts/index.tsx +217 -0
- package/dist/templates/startkit/src/pages/workspace/dashboard.tsx +118 -0
- package/dist/templates/startkit/src/pages/workspace/settings.tsx +218 -0
- package/dist/templates/startkit/src/router.tsx +7 -0
- package/dist/templates/startkit/src/routes/auth-config.ts +38 -0
- package/dist/templates/startkit/src/routes/auth.ts +8 -0
- package/dist/templates/startkit/src/routes/index.ts +28 -0
- package/dist/templates/startkit/src/routes/public.ts +8 -0
- package/dist/templates/startkit/src/routes/workspace/accounts.ts +8 -0
- package/dist/templates/startkit/src/routes/workspace/index.ts +14 -0
- package/dist/templates/startkit/src/styles/components.css +396 -0
- package/dist/templates/startkit/src/styles/layout.css +192 -0
- package/dist/templates/startkit/src/styles/reset.css +38 -0
- package/dist/templates/startkit/src/styles/theme.css +76 -0
- package/dist/templates/startkit/src/styles/tokens.css +67 -0
- package/dist/templates/startkit/src/styles.css +7 -0
- package/dist/templates/startkit/src/toast.ts +55 -0
- package/dist/templates/startkit/src/utils/join-classes.ts +4 -0
- package/dist/templates/startkit/src/vite-env.d.ts +5 -0
- package/dist/templates/startkit/tests/app.test.tsx +32 -0
- package/dist/templates/startkit/tests/preferences.test.ts +43 -0
- package/dist/templates/startkit/tests/resources.test.ts +82 -0
- package/dist/templates/startkit/tsconfig.json +20 -0
- package/dist/templates/startkit/tsconfig.node.json +10 -0
- package/dist/templates/startkit/vite.config.ts +32 -0
- package/dist/templates/startkit/vitest.config.ts +13 -0
- package/dist/update-DyW1na5V.js +1140 -0
- package/dist/update-DyW1na5V.js.map +1 -0
- package/dist/update.js +3 -0
- package/package.json +84 -0
- package/skills/askr-accessibility/SKILL.md +68 -0
- package/skills/askr-accessibility/agents/openai.yaml +4 -0
- package/skills/askr-agent-execution/SKILL.md +85 -0
- package/skills/askr-agent-execution/agents/openai.yaml +4 -0
- package/skills/askr-agent-workflows/SKILL.md +57 -0
- package/skills/askr-agent-workflows/agents/openai.yaml +4 -0
- package/skills/askr-api-integration/SKILL.md +79 -0
- package/skills/askr-api-integration/agents/openai.yaml +4 -0
- package/skills/askr-app-builder/SKILL.md +99 -0
- package/skills/askr-app-builder/agents/openai.yaml +4 -0
- package/skills/askr-auth-access/SKILL.md +74 -0
- package/skills/askr-auth-access/agents/openai.yaml +4 -0
- package/skills/askr-cli-vite/SKILL.md +76 -0
- package/skills/askr-cli-vite/agents/openai.yaml +4 -0
- package/skills/askr-dashboard-charts/SKILL.md +82 -0
- package/skills/askr-dashboard-charts/agents/openai.yaml +4 -0
- package/skills/askr-design-system/SKILL.md +86 -0
- package/skills/askr-design-system/agents/openai.yaml +4 -0
- package/skills/askr-env-config/SKILL.md +74 -0
- package/skills/askr-env-config/agents/openai.yaml +4 -0
- package/skills/askr-error-loading-empty/SKILL.md +89 -0
- package/skills/askr-error-loading-empty/agents/openai.yaml +4 -0
- package/skills/askr-file-upload-artifacts/SKILL.md +77 -0
- package/skills/askr-file-upload-artifacts/agents/openai.yaml +4 -0
- package/skills/askr-forms-tables-crud/SKILL.md +98 -0
- package/skills/askr-forms-tables-crud/agents/openai.yaml +4 -0
- package/skills/askr-mental-model/SKILL.md +109 -0
- package/skills/askr-mental-model/agents/openai.yaml +4 -0
- package/skills/askr-migration-react/SKILL.md +81 -0
- package/skills/askr-migration-react/agents/openai.yaml +4 -0
- package/skills/askr-observability-debugging/SKILL.md +83 -0
- package/skills/askr-observability-debugging/agents/openai.yaml +4 -0
- package/skills/askr-project-structure/SKILL.md +79 -0
- package/skills/askr-project-structure/agents/openai.yaml +4 -0
- package/skills/askr-query-mutation/SKILL.md +115 -0
- package/skills/askr-query-mutation/agents/openai.yaml +4 -0
- package/skills/askr-realtime-streaming/SKILL.md +76 -0
- package/skills/askr-realtime-streaming/agents/openai.yaml +4 -0
- package/skills/askr-resources-data/SKILL.md +100 -0
- package/skills/askr-resources-data/agents/openai.yaml +4 -0
- package/skills/askr-routing-layouts/SKILL.md +107 -0
- package/skills/askr-routing-layouts/agents/openai.yaml +4 -0
- package/skills/askr-runtime-reactivity/SKILL.md +92 -0
- package/skills/askr-runtime-reactivity/agents/openai.yaml +4 -0
- package/skills/askr-ssr-ssg/SKILL.md +76 -0
- package/skills/askr-ssr-ssg/agents/openai.yaml +4 -0
- package/skills/askr-testing-determinism/SKILL.md +75 -0
- package/skills/askr-testing-determinism/agents/openai.yaml +4 -0
- package/skills/askr-theming/SKILL.md +86 -0
- package/skills/askr-theming/agents/openai.yaml +4 -0
- package/skills/askr-ui-composition/SKILL.md +92 -0
- package/skills/askr-ui-composition/agents/openai.yaml +4 -0
- package/templates/full-stack/AGENTS.md +12 -0
- package/templates/full-stack/README.md +18 -0
- package/templates/full-stack/gitignore.template +4 -0
- package/templates/full-stack/index.html +14 -0
- package/templates/full-stack/package.json +37 -0
- package/templates/full-stack/server.ts +13 -0
- package/templates/full-stack/src/action-authorizations.ts +10 -0
- package/templates/full-stack/src/actions/create-message.ts +10 -0
- package/templates/full-stack/src/i18n.ts +8 -0
- package/templates/full-stack/src/main.tsx +12 -0
- package/templates/full-stack/src/pages/home.tsx +25 -0
- package/templates/full-stack/src/pages/layout.tsx +33 -0
- package/templates/full-stack/src/pages/not-found.tsx +4 -0
- package/templates/full-stack/src/routes.tsx +20 -0
- package/templates/full-stack/src/schemas.ts +11 -0
- package/templates/full-stack/src/server/action-registry.ts +12 -0
- package/templates/full-stack/src/server/actions/create-message.ts +14 -0
- package/templates/full-stack/src/server/app.ts +66 -0
- package/templates/full-stack/src/server/dependencies.ts +55 -0
- package/templates/full-stack/src/server/entry-server.ts +8 -0
- package/templates/full-stack/src/telemetry.ts +4 -0
- package/templates/full-stack/src/vite-server.d.ts +6 -0
- package/templates/full-stack/tests/actions/create-message.test.ts +13 -0
- package/templates/full-stack/tsconfig.json +16 -0
- package/templates/full-stack/vite.config.ts +11 -0
- package/templates/spa/AGENTS.md +60 -0
- package/templates/spa/README.md +96 -0
- package/templates/spa/gitignore.template +16 -0
- package/templates/spa/index.html +13 -0
- package/templates/spa/package.json +35 -0
- package/templates/spa/src/adapters/operations-client.ts +90 -0
- package/templates/spa/src/components/shared/metric-card.tsx +27 -0
- package/templates/spa/src/components/shared/status-badge.tsx +24 -0
- package/templates/spa/src/features/operations/operations.query.ts +9 -0
- package/templates/spa/src/main.tsx +10 -0
- package/templates/spa/src/pages/_layout.tsx +9 -0
- package/templates/spa/src/pages/_routes.tsx +27 -0
- package/templates/spa/src/pages/app/_layout.tsx +94 -0
- package/templates/spa/src/pages/app/_routes.tsx +10 -0
- package/templates/spa/src/pages/app/admin-home.tsx +152 -0
- package/templates/spa/src/pages/app/agent-runs.tsx +93 -0
- package/templates/spa/src/pages/app/settings.tsx +91 -0
- package/templates/spa/src/pages/auth/_layout.tsx +38 -0
- package/templates/spa/src/pages/auth/_routes.tsx +6 -0
- package/templates/spa/src/pages/auth/login.tsx +63 -0
- package/templates/spa/src/pages/not-found.tsx +22 -0
- package/templates/spa/src/pages/public/_layout.tsx +47 -0
- package/templates/spa/src/pages/public/_routes.tsx +6 -0
- package/templates/spa/src/pages/public/home.tsx +143 -0
- package/templates/spa/src/shared/format.ts +12 -0
- package/templates/spa/src/shared/navigation.ts +15 -0
- package/templates/spa/src/styles/components.css +49 -0
- package/templates/spa/src/styles/layout.css +192 -0
- package/templates/spa/src/styles/reset.css +44 -0
- package/templates/spa/src/styles/theme.css +57 -0
- package/templates/spa/src/styles/tokens.css +20 -0
- package/templates/spa/src/styles.css +7 -0
- package/templates/spa/src/styles.d.ts +1 -0
- package/templates/spa/tests/app.test.tsx +37 -0
- package/templates/spa/tests/components/shared.test.tsx +12 -0
- package/templates/spa/tests/resources.test.ts +22 -0
- package/templates/spa/tsconfig.json +20 -0
- package/templates/spa/tsconfig.node.json +10 -0
- package/templates/spa/vite.config.ts +24 -0
- package/templates/spa/vitest.config.ts +17 -0
- package/templates/ssg/AGENTS.md +55 -0
- package/templates/ssg/README.md +39 -0
- package/templates/ssg/gitignore.template +17 -0
- package/templates/ssg/index.html +13 -0
- package/templates/ssg/package.json +35 -0
- package/templates/ssg/src/app.tsx +14 -0
- package/templates/ssg/src/components/badge.tsx +3 -0
- package/templates/ssg/src/components/counter.tsx +30 -0
- package/templates/ssg/src/components/site-shell.tsx +111 -0
- package/templates/ssg/src/jsx.d.ts +23 -0
- package/templates/ssg/src/main.tsx +8 -0
- package/templates/ssg/src/pages/about.tsx +82 -0
- package/templates/ssg/src/pages/content.tsx +63 -0
- package/templates/ssg/src/pages/example.tsx +97 -0
- package/templates/ssg/src/pages/home.tsx +51 -0
- package/templates/ssg/src/resources/user.ts +15 -0
- package/templates/ssg/src/routes.tsx +15 -0
- package/templates/ssg/src/styles.css +89 -0
- package/templates/ssg/src/vite-env.d.ts +5 -0
- package/templates/ssg/ssg.config.ts +34 -0
- package/templates/ssg/tests/app.test.tsx +19 -0
- package/templates/ssg/tests/components/counter.test.tsx +18 -0
- package/templates/ssg/tests/resources.test.ts +11 -0
- package/templates/ssg/tests/ssg-config.test.ts +11 -0
- package/templates/ssg/tsconfig.json +20 -0
- package/templates/ssg/tsconfig.node.json +10 -0
- package/templates/ssg/vite.config.ts +24 -0
- package/templates/ssg/vitest.config.ts +17 -0
- package/templates/ssr/AGENTS.md +28 -0
- package/templates/ssr/README.md +38 -0
- package/templates/ssr/gitignore.template +16 -0
- package/templates/ssr/index.html +13 -0
- package/templates/ssr/package.json +34 -0
- package/templates/ssr/server.ts +16 -0
- package/templates/ssr/src/app.tsx +21 -0
- package/templates/ssr/src/components/counter.tsx +26 -0
- package/templates/ssr/src/entry-server.tsx +10 -0
- package/templates/ssr/src/main.tsx +11 -0
- package/templates/ssr/src/pages/about.tsx +75 -0
- package/templates/ssr/src/pages/example.tsx +113 -0
- package/templates/ssr/src/pages/home.tsx +56 -0
- package/templates/ssr/src/resources/user.ts +15 -0
- package/templates/ssr/src/routes.tsx +13 -0
- package/templates/ssr/src/styles.css +148 -0
- package/templates/ssr/src/vite-server.d.ts +7 -0
- package/templates/ssr/tests/app.test.tsx +24 -0
- package/templates/ssr/tests/components/counter.test.tsx +13 -0
- package/templates/ssr/tests/resources.test.ts +11 -0
- package/templates/ssr/tsconfig.json +22 -0
- package/templates/ssr/tsconfig.node.json +10 -0
- package/templates/ssr/tsconfig.server.json +15 -0
- package/templates/ssr/vite.config.ts +25 -0
- package/templates/ssr/vitest.config.ts +13 -0
- package/templates/startkit/AGENTS.md +77 -0
- package/templates/startkit/README.md +192 -0
- package/templates/startkit/gitignore.template +16 -0
- package/templates/startkit/index.html +13 -0
- package/templates/startkit/package.json +35 -0
- package/templates/startkit/src/components/app-header.tsx +93 -0
- package/templates/startkit/src/components/app-sidebar.tsx +95 -0
- package/templates/startkit/src/components/data-table.tsx +80 -0
- package/templates/startkit/src/components/empty-state.tsx +13 -0
- package/templates/startkit/src/components/page-header.tsx +23 -0
- package/templates/startkit/src/components/stat-card.tsx +24 -0
- package/templates/startkit/src/features/accounts/account-filters.tsx +61 -0
- package/templates/startkit/src/features/accounts/account-table.tsx +79 -0
- package/templates/startkit/src/lib/format.ts +31 -0
- package/templates/startkit/src/lib/mock-data.ts +441 -0
- package/templates/startkit/src/lib/routes.ts +116 -0
- package/templates/startkit/src/main.tsx +12 -0
- package/templates/startkit/src/pages/_layout.tsx +56 -0
- package/templates/startkit/src/pages/auth/_layout.tsx +7 -0
- package/templates/startkit/src/pages/auth/login.tsx +129 -0
- package/templates/startkit/src/pages/home.tsx +83 -0
- package/templates/startkit/src/pages/not-found.tsx +24 -0
- package/templates/startkit/src/pages/workspace/_layout.tsx +17 -0
- package/templates/startkit/src/pages/workspace/accounts/index.tsx +217 -0
- package/templates/startkit/src/pages/workspace/dashboard.tsx +118 -0
- package/templates/startkit/src/pages/workspace/settings.tsx +218 -0
- package/templates/startkit/src/router.tsx +7 -0
- package/templates/startkit/src/routes/auth-config.ts +38 -0
- package/templates/startkit/src/routes/auth.ts +8 -0
- package/templates/startkit/src/routes/index.ts +28 -0
- package/templates/startkit/src/routes/public.ts +8 -0
- package/templates/startkit/src/routes/workspace/accounts.ts +8 -0
- package/templates/startkit/src/routes/workspace/index.ts +14 -0
- package/templates/startkit/src/styles/components.css +396 -0
- package/templates/startkit/src/styles/layout.css +192 -0
- package/templates/startkit/src/styles/reset.css +38 -0
- package/templates/startkit/src/styles/theme.css +76 -0
- package/templates/startkit/src/styles/tokens.css +67 -0
- package/templates/startkit/src/styles.css +7 -0
- package/templates/startkit/src/toast.ts +55 -0
- package/templates/startkit/src/utils/join-classes.ts +4 -0
- package/templates/startkit/src/vite-env.d.ts +5 -0
- package/templates/startkit/tests/app.test.tsx +32 -0
- package/templates/startkit/tests/preferences.test.ts +43 -0
- package/templates/startkit/tests/resources.test.ts +82 -0
- package/templates/startkit/tsconfig.json +20 -0
- package/templates/startkit/tsconfig.node.json +10 -0
- package/templates/startkit/vite.config.ts +32 -0
- package/templates/startkit/vitest.config.ts +13 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { describe, expect, it } from 'vite-plus/test';
|
|
2
|
+
import { staticConfig } from '../ssg.config';
|
|
3
|
+
|
|
4
|
+
describe('SSG config', () => {
|
|
5
|
+
it('keeps the sample route tree explicit', () => {
|
|
6
|
+
expect(staticConfig.registry.manifest.records.map((route) => route.path).sort()).toEqual(
|
|
7
|
+
['/', '/content', '/preview', '/workflow'].sort()
|
|
8
|
+
);
|
|
9
|
+
expect(staticConfig.registry.routes).toHaveLength(4);
|
|
10
|
+
});
|
|
11
|
+
});
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"useDefineForClassFields": true,
|
|
5
|
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
6
|
+
"module": "ESNext",
|
|
7
|
+
"moduleResolution": "bundler",
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"allowSyntheticDefaultImports": true,
|
|
11
|
+
"strict": true,
|
|
12
|
+
"resolveJsonModule": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"noEmit": true,
|
|
15
|
+
"jsx": "react-jsx",
|
|
16
|
+
"jsxImportSource": "@askrjs/askr"
|
|
17
|
+
},
|
|
18
|
+
"include": ["src"],
|
|
19
|
+
"references": [{ "path": "./tsconfig.node.json" }]
|
|
20
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { defineConfig } from 'vite-plus';
|
|
2
|
+
import { askr } from '@askrjs/vite';
|
|
3
|
+
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
plugins: [askr()],
|
|
6
|
+
lint: {
|
|
7
|
+
ignorePatterns: ['dist/**', 'node_modules/**', 'coverage/**'],
|
|
8
|
+
},
|
|
9
|
+
fmt: {
|
|
10
|
+
semi: true,
|
|
11
|
+
singleQuote: true,
|
|
12
|
+
trailingComma: 'es5',
|
|
13
|
+
printWidth: 80,
|
|
14
|
+
tabWidth: 2,
|
|
15
|
+
},
|
|
16
|
+
server: {
|
|
17
|
+
port: 5173,
|
|
18
|
+
open: true,
|
|
19
|
+
},
|
|
20
|
+
build: {
|
|
21
|
+
outDir: 'dist',
|
|
22
|
+
sourcemap: true,
|
|
23
|
+
},
|
|
24
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { defineConfig } from 'vite-plus';
|
|
2
|
+
import { askr } from '@askrjs/vite';
|
|
3
|
+
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
plugins: [askr()],
|
|
6
|
+
esbuild: {
|
|
7
|
+
jsx: 'automatic',
|
|
8
|
+
jsxImportSource: '@askrjs/askr',
|
|
9
|
+
},
|
|
10
|
+
test: {
|
|
11
|
+
environment: 'jsdom',
|
|
12
|
+
globals: true,
|
|
13
|
+
coverage: {
|
|
14
|
+
reporter: ['text', 'json', 'html'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# {{appName}}
|
|
2
|
+
|
|
3
|
+
This is a strict TypeScript, ESM-only Askr SSR application.
|
|
4
|
+
|
|
5
|
+
## Architecture
|
|
6
|
+
|
|
7
|
+
- `src/routes.tsx` owns the shared `createRouteRegistry()` result.
|
|
8
|
+
- `src/entry-server.tsx` exports a composed `ServerApp` using `@askrjs/server/askr`.
|
|
9
|
+
- `index.html` is the only document source and contains exactly one `<!--askr-head-->` marker and one `<!--askr-app-->` marker.
|
|
10
|
+
- `@askrjs/vite/server` owns development and production document composition.
|
|
11
|
+
- `server.ts` only starts the production app through `@askrjs/node`.
|
|
12
|
+
- `src/main.tsx` hydrates server HTML or starts the SPA when no fragment is present.
|
|
13
|
+
|
|
14
|
+
Do not add Express, a `render(url)` convention, inline document markup, or manual marker replacement to application code.
|
|
15
|
+
|
|
16
|
+
## Commands
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm run dev
|
|
20
|
+
npm run build
|
|
21
|
+
npm run preview
|
|
22
|
+
npm test
|
|
23
|
+
npm run typecheck
|
|
24
|
+
npm run lint
|
|
25
|
+
npm run fmt
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Use askr-ui primitives for interactive controls, `--ak-*` theme tokens for styling, and preserve the shared server/browser route registry.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# {{appName}}
|
|
2
|
+
|
|
3
|
+
An Askr application with server rendering, browser hydration, and a Node production adapter.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install
|
|
9
|
+
npm run dev
|
|
10
|
+
npm run build
|
|
11
|
+
npm run preview
|
|
12
|
+
npm test
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Rendering model
|
|
16
|
+
|
|
17
|
+
`src/routes.tsx` exports one route registry shared by the browser and server. The server entry composes `createServerApp()` with `createAskrPageHandler()`, which returns an Askr HTML fragment plus normalized document metadata. The Vite server integration preserves static head content, injects Askr-owned metadata at the single `<!--askr-head-->` marker, and inserts the fragment at the single `<!--askr-app-->` marker.
|
|
18
|
+
|
|
19
|
+
In development, Vite reloads the server entry and document for each HTML request. The production build emits a document-composing server app; `server.ts` only adapts that Web `ServerApp` to Node transport.
|
|
20
|
+
|
|
21
|
+
API responses and other non-fragment responses pass through without document composition.
|
|
22
|
+
|
|
23
|
+
## Structure
|
|
24
|
+
|
|
25
|
+
```text
|
|
26
|
+
index.html document source and sole askr-head and askr-app markers
|
|
27
|
+
server.ts production Node launcher
|
|
28
|
+
src/
|
|
29
|
+
main.tsx browser hydration
|
|
30
|
+
entry-server.tsx composed ServerApp
|
|
31
|
+
routes.tsx shared route registry
|
|
32
|
+
app.tsx root layout
|
|
33
|
+
pages/ route components
|
|
34
|
+
components/ reusable components
|
|
35
|
+
resources/ data resources
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
The application source does not construct document markup or expose a `render(url)` callback. Document ownership stays in `index.html` and `@askrjs/vite/server`.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>{{appName}}</title>
|
|
7
|
+
<!--askr-head-->
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="app"><!--askr-app--></div>
|
|
11
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "{{appName}}",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vp dev",
|
|
7
|
+
"build": "vp build && vp build --ssr server.ts --outDir dist/server",
|
|
8
|
+
"preview": "node dist/server/server.js",
|
|
9
|
+
"test": "vp test run",
|
|
10
|
+
"typecheck": "tsc --noEmit",
|
|
11
|
+
"lint": "vp lint src server.ts tests vite.config.ts",
|
|
12
|
+
"lint:fix": "npm run lint -- --fix",
|
|
13
|
+
"fmt": "vp fmt \"src/**/*.{ts,tsx,css}\" \"server.ts\" \"tests/**/*.{ts,tsx}\" \"*.md\"",
|
|
14
|
+
"check": "npm run lint && npm run typecheck && npm test && npm run build"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@askrjs/askr": ">=0.0.53 <0.1.0",
|
|
18
|
+
"@askrjs/node": ">=0.0.1 <0.1.0",
|
|
19
|
+
"@askrjs/server": ">=0.0.1 <0.1.0",
|
|
20
|
+
"@askrjs/themes": ">=0.0.12 <0.1.0",
|
|
21
|
+
"@askrjs/ui": ">=0.0.13 <0.1.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@askrjs/vite": ">=0.0.6 <0.1.0",
|
|
25
|
+
"@types/node": "^26.0.0",
|
|
26
|
+
"jsdom": "^29.1.1",
|
|
27
|
+
"tsx": "^4.23.1",
|
|
28
|
+
"typescript": "^6.0.3",
|
|
29
|
+
"vite-plus": "^0.2.4"
|
|
30
|
+
},
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { listen } from '@askrjs/node';
|
|
2
|
+
import app from 'virtual:askr-server';
|
|
3
|
+
|
|
4
|
+
const port = Number(process.env.PORT ?? 3000);
|
|
5
|
+
const server = await listen(app, {
|
|
6
|
+
host: process.env.HOST ?? '127.0.0.1',
|
|
7
|
+
port,
|
|
8
|
+
});
|
|
9
|
+
const address = server.address();
|
|
10
|
+
const boundPort = typeof address === 'object' && address ? address.port : port;
|
|
11
|
+
|
|
12
|
+
console.log(`Server started at http://127.0.0.1:${boundPort}`);
|
|
13
|
+
|
|
14
|
+
const shutdown = () => server.close();
|
|
15
|
+
process.once('SIGINT', shutdown);
|
|
16
|
+
process.once('SIGTERM', shutdown);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import './styles.css';
|
|
2
|
+
import { Link } from '@askrjs/askr/router';
|
|
3
|
+
|
|
4
|
+
export default function App({ children }: { children?: unknown }) {
|
|
5
|
+
return (
|
|
6
|
+
<div>
|
|
7
|
+
<header>
|
|
8
|
+
<nav>
|
|
9
|
+
<Link href="/">
|
|
10
|
+
<strong>{'{{appName}}'}</strong>
|
|
11
|
+
</Link>
|
|
12
|
+
<div class="nav-links">
|
|
13
|
+
<Link href="/example">Example</Link>
|
|
14
|
+
<Link href="/about">About</Link>
|
|
15
|
+
</div>
|
|
16
|
+
</nav>
|
|
17
|
+
</header>
|
|
18
|
+
<main>{children}</main>
|
|
19
|
+
</div>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { state, derive } from '@askrjs/askr';
|
|
2
|
+
import { Button } from '@askrjs/ui/button';
|
|
3
|
+
|
|
4
|
+
export default function Counter() {
|
|
5
|
+
const [count, setCount] = state(0);
|
|
6
|
+
const parity = derive(() => (count() % 2 === 0 ? 'even' : 'odd'));
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<div class="counter">
|
|
10
|
+
<h2>Interactive Counter</h2>
|
|
11
|
+
<p class="text-muted">
|
|
12
|
+
Built with <code>state()</code> and <code>derive()</code>
|
|
13
|
+
</p>
|
|
14
|
+
<div class="counter-value">{count()}</div>
|
|
15
|
+
<div>
|
|
16
|
+
<span class="badge">{parity()}</span>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="counter-controls">
|
|
19
|
+
<Button onPress={() => setCount((c) => Math.max(0, c - 1))}>
|
|
20
|
+
- Decrement
|
|
21
|
+
</Button>
|
|
22
|
+
<Button onPress={() => setCount((c) => c + 1)}>+ Increment</Button>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { createServerApp } from '@askrjs/server';
|
|
2
|
+
import { createAskrPageHandler } from '@askrjs/server/askr';
|
|
3
|
+
import { pageRegistry } from './routes';
|
|
4
|
+
|
|
5
|
+
const app = createServerApp({
|
|
6
|
+
fallback: createAskrPageHandler({ registry: pageRegistry }),
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export { app };
|
|
10
|
+
export default app;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { createSPA, hydrateSPA } from '@askrjs/askr/boot';
|
|
2
|
+
import { pageRegistry } from './routes';
|
|
3
|
+
|
|
4
|
+
const root = document.getElementById('app');
|
|
5
|
+
if (!root) throw new Error('Missing #app root element.');
|
|
6
|
+
|
|
7
|
+
if (root.hasChildNodes()) {
|
|
8
|
+
await hydrateSPA({ root, registry: pageRegistry });
|
|
9
|
+
} else {
|
|
10
|
+
await createSPA({ root, registry: pageRegistry });
|
|
11
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export default function About() {
|
|
2
|
+
return (
|
|
3
|
+
<>
|
|
4
|
+
<h1>About Askr</h1>
|
|
5
|
+
<p class="text-muted">
|
|
6
|
+
A modern reactive framework for building fast, maintainable web
|
|
7
|
+
applications.
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
<section class="section">
|
|
11
|
+
<h2>Why Askr Exists</h2>
|
|
12
|
+
<p>
|
|
13
|
+
Modern web development has become unnecessarily complex. Frameworks
|
|
14
|
+
have grown bloated with abstractions, requiring developers to learn
|
|
15
|
+
extensive APIs and fight against the framework rather than work with
|
|
16
|
+
it.
|
|
17
|
+
</p>
|
|
18
|
+
<p>
|
|
19
|
+
Askr was created to bring simplicity back to web development. It
|
|
20
|
+
provides just enough structure to build sophisticated applications
|
|
21
|
+
while staying out of your way.
|
|
22
|
+
</p>
|
|
23
|
+
</section>
|
|
24
|
+
|
|
25
|
+
<section class="section">
|
|
26
|
+
<h2>Core Primitives</h2>
|
|
27
|
+
<div class="features">
|
|
28
|
+
<div class="feature-card">
|
|
29
|
+
<h3>Fine-grained Reactivity</h3>
|
|
30
|
+
<p>
|
|
31
|
+
<code>state()</code> for reactive values with automatic dependency
|
|
32
|
+
tracking. Updates are surgical — only the specific DOM nodes that
|
|
33
|
+
need to change are updated.
|
|
34
|
+
</p>
|
|
35
|
+
</div>
|
|
36
|
+
<div class="feature-card">
|
|
37
|
+
<h3>Simple Async Data</h3>
|
|
38
|
+
<p>
|
|
39
|
+
<code>resource()</code> handles async data fetching with built-in
|
|
40
|
+
loading states, error handling, and automatic refetching when
|
|
41
|
+
dependencies change.
|
|
42
|
+
</p>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="feature-card">
|
|
45
|
+
<h3>Declarative Routing</h3>
|
|
46
|
+
<p>
|
|
47
|
+
Routes are declared at module-load time with{' '}
|
|
48
|
+
<code>createRouteRegistry()</code>, <code>group()</code>, and{' '}
|
|
49
|
+
<code>route()</code>. Clean, type-safe, and no configuration
|
|
50
|
+
needed.
|
|
51
|
+
</p>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</section>
|
|
55
|
+
|
|
56
|
+
<section class="section">
|
|
57
|
+
<h2>The Ecosystem</h2>
|
|
58
|
+
<p>
|
|
59
|
+
<strong>askr</strong> — the core framework with reactive primitives,
|
|
60
|
+
routing, SSR, and SSG support. Zero runtime dependencies.
|
|
61
|
+
</p>
|
|
62
|
+
<p>
|
|
63
|
+
<strong>askr-ui</strong> — headless, accessible UI components. Button,
|
|
64
|
+
Accordion, Dialog, and 30+ more. All interaction logic, no opinions on
|
|
65
|
+
style.
|
|
66
|
+
</p>
|
|
67
|
+
<p>
|
|
68
|
+
<strong>askr-themes</strong> — CSS-only themes that target askr-ui's{' '}
|
|
69
|
+
<code>data-slot</code> attributes. Swap themes with a single import
|
|
70
|
+
change.
|
|
71
|
+
</p>
|
|
72
|
+
</section>
|
|
73
|
+
</>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { state } from '@askrjs/askr';
|
|
2
|
+
import {
|
|
3
|
+
Accordion,
|
|
4
|
+
AccordionItem,
|
|
5
|
+
AccordionHeader,
|
|
6
|
+
AccordionTrigger,
|
|
7
|
+
AccordionContent,
|
|
8
|
+
} from '@askrjs/ui/accordion';
|
|
9
|
+
import { Toggle } from '@askrjs/ui/toggle';
|
|
10
|
+
import { Input } from '@askrjs/ui/input';
|
|
11
|
+
import Counter from '../components/counter';
|
|
12
|
+
|
|
13
|
+
export default function Example() {
|
|
14
|
+
const [name, setName] = state('');
|
|
15
|
+
const [bold, setBold] = state(false);
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<>
|
|
19
|
+
<h1>Component Showcase</h1>
|
|
20
|
+
<p class="text-muted">
|
|
21
|
+
askr-ui headless components styled by askr-themes — working together
|
|
22
|
+
out of the box.
|
|
23
|
+
</p>
|
|
24
|
+
|
|
25
|
+
<Counter />
|
|
26
|
+
|
|
27
|
+
<div class="showcase-section">
|
|
28
|
+
<h3>Reactivity</h3>
|
|
29
|
+
<p>
|
|
30
|
+
Askr uses <code>state()</code> for reactive values that automatically
|
|
31
|
+
track dependencies and update only the DOM nodes that need to change.
|
|
32
|
+
</p>
|
|
33
|
+
<p>
|
|
34
|
+
Create reactive state with{' '}
|
|
35
|
+
<code>const [count, setCount] = state(0)</code>, read with{' '}
|
|
36
|
+
<code>count()</code>, and update with{' '}
|
|
37
|
+
<code>setCount(n => n + 1)</code>.
|
|
38
|
+
</p>
|
|
39
|
+
<p>
|
|
40
|
+
Core primitives: <code>state()</code>, <code>derive()</code>,{' '}
|
|
41
|
+
<code>selector()</code>, <code>resource()</code>, and <code>For</code>
|
|
42
|
+
.
|
|
43
|
+
</p>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="showcase-section">
|
|
47
|
+
<h3>Accordion</h3>
|
|
48
|
+
<Accordion type="single" collapsible>
|
|
49
|
+
<AccordionItem value="reactivity">
|
|
50
|
+
<AccordionHeader>
|
|
51
|
+
<AccordionTrigger>
|
|
52
|
+
What is fine-grained reactivity?
|
|
53
|
+
</AccordionTrigger>
|
|
54
|
+
</AccordionHeader>
|
|
55
|
+
<AccordionContent>
|
|
56
|
+
<p>
|
|
57
|
+
Fine-grained reactivity means updates are surgical. When a state
|
|
58
|
+
value changes, only the specific DOM nodes that read that value
|
|
59
|
+
are updated — no virtual DOM diffing, no component re-renders.
|
|
60
|
+
</p>
|
|
61
|
+
</AccordionContent>
|
|
62
|
+
</AccordionItem>
|
|
63
|
+
<AccordionItem value="ssr">
|
|
64
|
+
<AccordionHeader>
|
|
65
|
+
<AccordionTrigger>Does Askr support SSR?</AccordionTrigger>
|
|
66
|
+
</AccordionHeader>
|
|
67
|
+
<AccordionContent>
|
|
68
|
+
<p>
|
|
69
|
+
Yes. Askr provides <code>renderToString()</code> and{' '}
|
|
70
|
+
<code>renderToStream()</code> for server-side rendering, plus{' '}
|
|
71
|
+
<code>hydrateSPA()</code> for client hydration.
|
|
72
|
+
</p>
|
|
73
|
+
</AccordionContent>
|
|
74
|
+
</AccordionItem>
|
|
75
|
+
<AccordionItem value="themes">
|
|
76
|
+
<AccordionHeader>
|
|
77
|
+
<AccordionTrigger>How does theming work?</AccordionTrigger>
|
|
78
|
+
</AccordionHeader>
|
|
79
|
+
<AccordionContent>
|
|
80
|
+
<p>
|
|
81
|
+
askr-ui components emit <code>data-slot</code> attributes.
|
|
82
|
+
askr-themes provides CSS that targets these slots with design
|
|
83
|
+
tokens. Switch themes by changing a single CSS import.
|
|
84
|
+
</p>
|
|
85
|
+
</AccordionContent>
|
|
86
|
+
</AccordionItem>
|
|
87
|
+
</Accordion>
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
<div class="showcase-section">
|
|
91
|
+
<h3>Toggle & Input</h3>
|
|
92
|
+
<p class="text-muted">
|
|
93
|
+
Reactive state driving UI updates in real time.
|
|
94
|
+
</p>
|
|
95
|
+
<div style="display: flex; align-items: center; gap: var(--ak-space-md); margin-bottom: var(--ak-space-md);">
|
|
96
|
+
<Toggle pressed={bold()} onPress={() => setBold((b) => !b)}>
|
|
97
|
+
Bold
|
|
98
|
+
</Toggle>
|
|
99
|
+
<Input
|
|
100
|
+
placeholder="Type your name..."
|
|
101
|
+
value={name()}
|
|
102
|
+
onInput={(e: Event) =>
|
|
103
|
+
setName((e.target as HTMLInputElement).value)
|
|
104
|
+
}
|
|
105
|
+
/>
|
|
106
|
+
</div>
|
|
107
|
+
<p style={`font-weight: ${bold() ? '700' : '400'}`}>
|
|
108
|
+
{name() ? `Hello, ${name()}!` : 'Type something above...'}
|
|
109
|
+
</p>
|
|
110
|
+
</div>
|
|
111
|
+
</>
|
|
112
|
+
);
|
|
113
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { Link } from '@askrjs/askr/router';
|
|
2
|
+
import { Button } from '@askrjs/ui/button';
|
|
3
|
+
|
|
4
|
+
export default function Home() {
|
|
5
|
+
return (
|
|
6
|
+
<>
|
|
7
|
+
<section class="text-center section">
|
|
8
|
+
<h1>Welcome to Askr</h1>
|
|
9
|
+
<p class="text-muted">
|
|
10
|
+
A minimalist reactive framework for modern web applications.
|
|
11
|
+
Fine-grained reactivity, zero runtime dependencies, TypeScript-first.
|
|
12
|
+
</p>
|
|
13
|
+
<div class="hero-actions">
|
|
14
|
+
<Button asChild>
|
|
15
|
+
<Link href="/example">View Examples</Link>
|
|
16
|
+
</Button>
|
|
17
|
+
<Button asChild>
|
|
18
|
+
<Link href="/about">Learn More</Link>
|
|
19
|
+
</Button>
|
|
20
|
+
</div>
|
|
21
|
+
</section>
|
|
22
|
+
|
|
23
|
+
<div class="features">
|
|
24
|
+
<div class="feature-card">
|
|
25
|
+
<h3>
|
|
26
|
+
<span class="badge">Reactive</span>
|
|
27
|
+
</h3>
|
|
28
|
+
<p>
|
|
29
|
+
<code>state()</code> and <code>derive()</code> give you fine-grained
|
|
30
|
+
reactivity. Only the DOM nodes that depend on changed values update
|
|
31
|
+
— nothing more.
|
|
32
|
+
</p>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="feature-card">
|
|
35
|
+
<h3>
|
|
36
|
+
<span class="badge">Async</span>
|
|
37
|
+
</h3>
|
|
38
|
+
<p>
|
|
39
|
+
<code>resource()</code> handles data fetching with built-in loading
|
|
40
|
+
states, error handling, and automatic refetching when dependencies
|
|
41
|
+
change.
|
|
42
|
+
</p>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="feature-card">
|
|
45
|
+
<h3>
|
|
46
|
+
<span class="badge">Composable</span>
|
|
47
|
+
</h3>
|
|
48
|
+
<p>
|
|
49
|
+
askr-ui provides headless components. askr-themes provides CSS
|
|
50
|
+
themes. Mix and match — or build your own.
|
|
51
|
+
</p>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { resource } from '@askrjs/askr/resources';
|
|
2
|
+
|
|
3
|
+
export function fetchUser(id: number) {
|
|
4
|
+
return resource(
|
|
5
|
+
async ({ signal }: { signal: AbortSignal }) => {
|
|
6
|
+
// Simulate API call
|
|
7
|
+
await new Promise((resolve) => setTimeout(resolve, 100));
|
|
8
|
+
if (signal.aborted) {
|
|
9
|
+
throw new DOMException('Request aborted', 'AbortError');
|
|
10
|
+
}
|
|
11
|
+
return { id, name: `User ${id}`, email: `user${id}@example.com` };
|
|
12
|
+
},
|
|
13
|
+
[id]
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createRouteRegistry, group, route } from '@askrjs/askr/router';
|
|
2
|
+
import AppLayout from './app';
|
|
3
|
+
import Home from './pages/home';
|
|
4
|
+
import About from './pages/about';
|
|
5
|
+
import Example from './pages/example';
|
|
6
|
+
|
|
7
|
+
export const pageRegistry = createRouteRegistry(() => {
|
|
8
|
+
group({ layout: AppLayout }, () => {
|
|
9
|
+
route('/', Home);
|
|
10
|
+
route('/about', About);
|
|
11
|
+
route('/example', Example);
|
|
12
|
+
});
|
|
13
|
+
});
|