@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,93 @@
|
|
|
1
|
+
import { currentRoute, Link } from '@askrjs/askr/router';
|
|
2
|
+
import { Input } from '@askrjs/ui/input';
|
|
3
|
+
import {
|
|
4
|
+
Avatar,
|
|
5
|
+
AvatarFallback,
|
|
6
|
+
DropdownMenu,
|
|
7
|
+
DropdownMenuContent,
|
|
8
|
+
DropdownMenuGroup,
|
|
9
|
+
DropdownMenuItem,
|
|
10
|
+
DropdownMenuLabel,
|
|
11
|
+
DropdownMenuPortal,
|
|
12
|
+
DropdownMenuSeparator,
|
|
13
|
+
DropdownMenuTrigger,
|
|
14
|
+
Inline,
|
|
15
|
+
} from '@askrjs/themes/components';
|
|
16
|
+
import { SearchIcon } from '@askrjs/lucide';
|
|
17
|
+
import { buildLoginHref, getRouteLabel, settingsRoute } from '../lib/routes';
|
|
18
|
+
import { showToast } from '../toast';
|
|
19
|
+
import { signOut } from '../lib/mock-data';
|
|
20
|
+
|
|
21
|
+
export default function AppHeader() {
|
|
22
|
+
const breadcrumb = () => getRouteLabel(currentRoute().path);
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<header class="app-header">
|
|
26
|
+
<Inline
|
|
27
|
+
align="center"
|
|
28
|
+
justify="between"
|
|
29
|
+
gap="var(--ak-space-lg)"
|
|
30
|
+
wrap="wrap"
|
|
31
|
+
>
|
|
32
|
+
<div class="breadcrumbs">
|
|
33
|
+
<span>App</span>
|
|
34
|
+
<span aria-hidden="true">/</span>
|
|
35
|
+
<strong>{breadcrumb()}</strong>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
<label class="header-search" aria-label="Search">
|
|
39
|
+
<SearchIcon size={15} aria-hidden="true" />
|
|
40
|
+
<Input placeholder="Search docs, accounts, settings..." disabled />
|
|
41
|
+
</label>
|
|
42
|
+
|
|
43
|
+
<DropdownMenu>
|
|
44
|
+
<DropdownMenuTrigger class="header-account-trigger">
|
|
45
|
+
<Avatar>
|
|
46
|
+
<AvatarFallback>AM</AvatarFallback>
|
|
47
|
+
</Avatar>
|
|
48
|
+
<span class="header-account-name">Alex Morgan</span>
|
|
49
|
+
</DropdownMenuTrigger>
|
|
50
|
+
<DropdownMenuPortal>
|
|
51
|
+
<DropdownMenuContent side="bottom" align="end" sideOffset={8}>
|
|
52
|
+
<DropdownMenuLabel>Workspace</DropdownMenuLabel>
|
|
53
|
+
<DropdownMenuGroup>
|
|
54
|
+
<DropdownMenuItem asChild>
|
|
55
|
+
<Link href={settingsRoute.href}>Profile settings</Link>
|
|
56
|
+
</DropdownMenuItem>
|
|
57
|
+
<DropdownMenuItem
|
|
58
|
+
onSelect={() =>
|
|
59
|
+
showToast({
|
|
60
|
+
title: 'Notifications enabled',
|
|
61
|
+
description:
|
|
62
|
+
'Connect this action to your notification center.',
|
|
63
|
+
})
|
|
64
|
+
}
|
|
65
|
+
>
|
|
66
|
+
Notifications
|
|
67
|
+
</DropdownMenuItem>
|
|
68
|
+
</DropdownMenuGroup>
|
|
69
|
+
<DropdownMenuSeparator />
|
|
70
|
+
<DropdownMenuItem
|
|
71
|
+
onSelect={() => {
|
|
72
|
+
const nextTarget =
|
|
73
|
+
typeof window === 'undefined'
|
|
74
|
+
? undefined
|
|
75
|
+
: `${window.location.pathname}${window.location.search}${window.location.hash}`;
|
|
76
|
+
signOut();
|
|
77
|
+
showToast({
|
|
78
|
+
title: 'Signed out',
|
|
79
|
+
description:
|
|
80
|
+
'Session state is now cleared from local storage.',
|
|
81
|
+
});
|
|
82
|
+
window.location.assign(buildLoginHref(nextTarget));
|
|
83
|
+
}}
|
|
84
|
+
>
|
|
85
|
+
Sign out
|
|
86
|
+
</DropdownMenuItem>
|
|
87
|
+
</DropdownMenuContent>
|
|
88
|
+
</DropdownMenuPortal>
|
|
89
|
+
</DropdownMenu>
|
|
90
|
+
</Inline>
|
|
91
|
+
</header>
|
|
92
|
+
);
|
|
93
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Link } from '@askrjs/askr/router';
|
|
2
|
+
import {
|
|
3
|
+
LayoutDashboardIcon,
|
|
4
|
+
UsersIcon,
|
|
5
|
+
SettingsIcon,
|
|
6
|
+
LayersIcon,
|
|
7
|
+
ShieldCheckIcon,
|
|
8
|
+
} from '@askrjs/lucide';
|
|
9
|
+
import type { IconProps } from '@askrjs/lucide';
|
|
10
|
+
import type { JSXElement } from '@askrjs/askr/foundations';
|
|
11
|
+
import { NavBrand, NavGroup, NavLink, Navbar } from '@askrjs/themes/components';
|
|
12
|
+
import {
|
|
13
|
+
accountsRoute,
|
|
14
|
+
dashboardRoute,
|
|
15
|
+
landingRoute,
|
|
16
|
+
loginRoute,
|
|
17
|
+
settingsRoute,
|
|
18
|
+
} from '../lib/routes';
|
|
19
|
+
|
|
20
|
+
type NavItem = {
|
|
21
|
+
href: string;
|
|
22
|
+
label: string;
|
|
23
|
+
icon: (props: IconProps) => JSXElement;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
const primaryNav: NavItem[] = [
|
|
27
|
+
{
|
|
28
|
+
href: dashboardRoute.href,
|
|
29
|
+
label: dashboardRoute.navLabel,
|
|
30
|
+
icon: LayoutDashboardIcon,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
href: accountsRoute.href,
|
|
34
|
+
label: accountsRoute.navLabel,
|
|
35
|
+
icon: UsersIcon,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
href: settingsRoute.href,
|
|
39
|
+
label: settingsRoute.navLabel,
|
|
40
|
+
icon: SettingsIcon,
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const secondaryNav: NavItem[] = [
|
|
45
|
+
{ href: landingRoute.href, label: 'Marketing site', icon: LayersIcon },
|
|
46
|
+
{ href: loginRoute.href, label: 'Auth entry', icon: ShieldCheckIcon },
|
|
47
|
+
];
|
|
48
|
+
|
|
49
|
+
export default function AppSidebar() {
|
|
50
|
+
return (
|
|
51
|
+
<aside class="app-sidebar" aria-label="Sidebar navigation">
|
|
52
|
+
<Navbar
|
|
53
|
+
orientation="vertical"
|
|
54
|
+
class="app-sidebar-nav"
|
|
55
|
+
aria-label="Sidebar navigation"
|
|
56
|
+
>
|
|
57
|
+
<NavBrand>
|
|
58
|
+
<Link href={dashboardRoute.href} class="sidebar-brand">
|
|
59
|
+
<span class="brand-pill" aria-hidden="true">
|
|
60
|
+
A
|
|
61
|
+
</span>
|
|
62
|
+
<div>
|
|
63
|
+
<p class="sidebar-title">{'{{appName}}'}</p>
|
|
64
|
+
<p class="sidebar-subtitle">Starter Kit</p>
|
|
65
|
+
</div>
|
|
66
|
+
</Link>
|
|
67
|
+
</NavBrand>
|
|
68
|
+
|
|
69
|
+
<NavGroup id="workspace-nav-group" label="Workspace">
|
|
70
|
+
{primaryNav.map((item) => {
|
|
71
|
+
const Icon = item.icon;
|
|
72
|
+
return (
|
|
73
|
+
<NavLink href={item.href}>
|
|
74
|
+
<Icon size={16} aria-hidden={true} />
|
|
75
|
+
<span>{item.label}</span>
|
|
76
|
+
</NavLink>
|
|
77
|
+
);
|
|
78
|
+
})}
|
|
79
|
+
</NavGroup>
|
|
80
|
+
|
|
81
|
+
<NavGroup id="other-nav-group" label="Other" placement="bottom">
|
|
82
|
+
{secondaryNav.map((item) => {
|
|
83
|
+
const Icon = item.icon;
|
|
84
|
+
return (
|
|
85
|
+
<NavLink href={item.href}>
|
|
86
|
+
<Icon size={16} aria-hidden={true} />
|
|
87
|
+
<span>{item.label}</span>
|
|
88
|
+
</NavLink>
|
|
89
|
+
);
|
|
90
|
+
})}
|
|
91
|
+
</NavGroup>
|
|
92
|
+
</Navbar>
|
|
93
|
+
</aside>
|
|
94
|
+
);
|
|
95
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { For } from '@askrjs/askr/control';
|
|
2
|
+
import { Skeleton } from '@askrjs/themes/components';
|
|
3
|
+
import EmptyState from './empty-state';
|
|
4
|
+
import { joinClasses } from '../utils/join-classes';
|
|
5
|
+
|
|
6
|
+
export type DataTableColumn<Row> = {
|
|
7
|
+
key: string;
|
|
8
|
+
header: unknown;
|
|
9
|
+
class?: string;
|
|
10
|
+
render: (row: Row) => unknown;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default function DataTable<Row>(props: {
|
|
14
|
+
rows: () => Row[];
|
|
15
|
+
rowKey: (row: Row) => string;
|
|
16
|
+
columns: DataTableColumn<Row>[];
|
|
17
|
+
class?: string;
|
|
18
|
+
tableClass?: string;
|
|
19
|
+
rowClass?: (row: Row) => string | undefined;
|
|
20
|
+
isLoading?: boolean;
|
|
21
|
+
errorText?: string | null;
|
|
22
|
+
emptyTitle?: string;
|
|
23
|
+
emptyDescription?: string;
|
|
24
|
+
}) {
|
|
25
|
+
if (props.errorText) {
|
|
26
|
+
return (
|
|
27
|
+
<EmptyState title="Could not load table" description={props.errorText} />
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (props.isLoading) {
|
|
32
|
+
return (
|
|
33
|
+
<div
|
|
34
|
+
class={joinClasses('panel stack-sm', props.class)}
|
|
35
|
+
aria-hidden="true"
|
|
36
|
+
>
|
|
37
|
+
<Skeleton class="skeleton-line" />
|
|
38
|
+
<Skeleton class="skeleton-line" />
|
|
39
|
+
<Skeleton class="skeleton-line" />
|
|
40
|
+
</div>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
if (props.rows().length === 0) {
|
|
45
|
+
return (
|
|
46
|
+
<EmptyState
|
|
47
|
+
title={props.emptyTitle ?? 'No rows found'}
|
|
48
|
+
description={
|
|
49
|
+
props.emptyDescription ??
|
|
50
|
+
'Try changing filters or adding new records.'
|
|
51
|
+
}
|
|
52
|
+
/>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
return (
|
|
57
|
+
<div class={joinClasses('table-wrap', props.class)}>
|
|
58
|
+
<table class={props.tableClass}>
|
|
59
|
+
<thead>
|
|
60
|
+
<tr>
|
|
61
|
+
{props.columns.map((column) => (
|
|
62
|
+
<th class={column.class}>{column.header}</th>
|
|
63
|
+
))}
|
|
64
|
+
</tr>
|
|
65
|
+
</thead>
|
|
66
|
+
<tbody>
|
|
67
|
+
<For each={props.rows} by={props.rowKey}>
|
|
68
|
+
{(row: Row) => (
|
|
69
|
+
<tr class={props.rowClass?.(row)}>
|
|
70
|
+
{props.columns.map((column) => (
|
|
71
|
+
<td class={column.class}>{column.render(row)}</td>
|
|
72
|
+
))}
|
|
73
|
+
</tr>
|
|
74
|
+
)}
|
|
75
|
+
</For>
|
|
76
|
+
</tbody>
|
|
77
|
+
</table>
|
|
78
|
+
</div>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default function EmptyState(props: {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
action?: unknown;
|
|
5
|
+
}) {
|
|
6
|
+
return (
|
|
7
|
+
<section class="empty-state panel" role="status">
|
|
8
|
+
<h2>{props.title}</h2>
|
|
9
|
+
<p>{props.description}</p>
|
|
10
|
+
{props.action && <div>{props.action}</div>}
|
|
11
|
+
</section>
|
|
12
|
+
);
|
|
13
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Inline } from '@askrjs/themes/components';
|
|
2
|
+
|
|
3
|
+
export default function PageHeader(props: {
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
actions?: unknown;
|
|
7
|
+
}) {
|
|
8
|
+
return (
|
|
9
|
+
<Inline
|
|
10
|
+
class="page-header"
|
|
11
|
+
align="center"
|
|
12
|
+
justify="between"
|
|
13
|
+
gap="var(--ak-space-lg)"
|
|
14
|
+
wrap="wrap"
|
|
15
|
+
>
|
|
16
|
+
<div class="page-header-copy">
|
|
17
|
+
<h1>{props.title}</h1>
|
|
18
|
+
<p>{props.description}</p>
|
|
19
|
+
</div>
|
|
20
|
+
{props.actions && <div>{props.actions}</div>}
|
|
21
|
+
</Inline>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { JSXElement } from '@askrjs/askr/foundations';
|
|
2
|
+
import type { IconProps } from '@askrjs/lucide';
|
|
3
|
+
|
|
4
|
+
type IconComponent = (props: IconProps) => JSXElement;
|
|
5
|
+
|
|
6
|
+
export default function StatCard(props: {
|
|
7
|
+
label: string;
|
|
8
|
+
value: string;
|
|
9
|
+
trend: string;
|
|
10
|
+
icon: IconComponent;
|
|
11
|
+
}) {
|
|
12
|
+
const Icon = props.icon;
|
|
13
|
+
|
|
14
|
+
return (
|
|
15
|
+
<article class="panel stat-card">
|
|
16
|
+
<div class="stat-card-head">
|
|
17
|
+
<p>{props.label}</p>
|
|
18
|
+
<Icon size={16} aria-hidden="true" />
|
|
19
|
+
</div>
|
|
20
|
+
<strong>{props.value}</strong>
|
|
21
|
+
<p class="trend">{props.trend}</p>
|
|
22
|
+
</article>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Input } from '@askrjs/ui/input';
|
|
2
|
+
import { SearchIcon } from '@askrjs/lucide';
|
|
3
|
+
import {
|
|
4
|
+
Select,
|
|
5
|
+
SelectContent,
|
|
6
|
+
SelectItem,
|
|
7
|
+
SelectPortal,
|
|
8
|
+
SelectTrigger,
|
|
9
|
+
SelectValue,
|
|
10
|
+
} from '@askrjs/ui/select';
|
|
11
|
+
import { Button } from '@askrjs/ui/button';
|
|
12
|
+
import type { AccountStatus } from '../../lib/mock-data';
|
|
13
|
+
|
|
14
|
+
export default function AccountFilters(props: {
|
|
15
|
+
query: string;
|
|
16
|
+
status: AccountStatus | 'all';
|
|
17
|
+
onQueryChange: (next: string) => void;
|
|
18
|
+
onStatusChange: (next: AccountStatus | 'all') => void;
|
|
19
|
+
onReset: () => void;
|
|
20
|
+
}) {
|
|
21
|
+
const hasFilters = () =>
|
|
22
|
+
props.query.trim().length > 0 || props.status !== 'all';
|
|
23
|
+
|
|
24
|
+
return (
|
|
25
|
+
<div class="account-filters">
|
|
26
|
+
<label class="input-row account-search" aria-label="Search accounts">
|
|
27
|
+
<SearchIcon size={15} aria-hidden="true" />
|
|
28
|
+
<Input
|
|
29
|
+
placeholder="Search by name, email, or id"
|
|
30
|
+
value={props.query}
|
|
31
|
+
onInput={(event: Event) =>
|
|
32
|
+
props.onQueryChange((event.target as HTMLInputElement).value)
|
|
33
|
+
}
|
|
34
|
+
/>
|
|
35
|
+
</label>
|
|
36
|
+
|
|
37
|
+
<Select
|
|
38
|
+
value={props.status}
|
|
39
|
+
onValueChange={(value) =>
|
|
40
|
+
props.onStatusChange(value as AccountStatus | 'all')
|
|
41
|
+
}
|
|
42
|
+
>
|
|
43
|
+
<SelectTrigger aria-label="Status filter">
|
|
44
|
+
<SelectValue placeholder="Filter by status" />
|
|
45
|
+
</SelectTrigger>
|
|
46
|
+
<SelectPortal>
|
|
47
|
+
<SelectContent>
|
|
48
|
+
<SelectItem value="all">All statuses</SelectItem>
|
|
49
|
+
<SelectItem value="active">Active</SelectItem>
|
|
50
|
+
<SelectItem value="pending">Pending</SelectItem>
|
|
51
|
+
<SelectItem value="archived">Archived</SelectItem>
|
|
52
|
+
</SelectContent>
|
|
53
|
+
</SelectPortal>
|
|
54
|
+
</Select>
|
|
55
|
+
|
|
56
|
+
<Button onPress={props.onReset} disabled={!hasFilters()}>
|
|
57
|
+
Clear filters
|
|
58
|
+
</Button>
|
|
59
|
+
</div>
|
|
60
|
+
);
|
|
61
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { Checkbox } from '@askrjs/ui/checkbox';
|
|
2
|
+
import { Button } from '@askrjs/ui/button';
|
|
3
|
+
import { EyeIcon } from '@askrjs/lucide';
|
|
4
|
+
import DataTable, { type DataTableColumn } from '../../components/data-table';
|
|
5
|
+
import type { AccountRecord } from '../../lib/mock-data';
|
|
6
|
+
import { formatCurrency } from '../../lib/format';
|
|
7
|
+
|
|
8
|
+
export default function AccountTable(props: {
|
|
9
|
+
rows: () => AccountRecord[];
|
|
10
|
+
selectedIds: () => string[];
|
|
11
|
+
onToggleRow: (id: string) => void;
|
|
12
|
+
onOpenRow: (row: AccountRecord) => void;
|
|
13
|
+
loading?: boolean;
|
|
14
|
+
errorText?: string | null;
|
|
15
|
+
}) {
|
|
16
|
+
const columns: DataTableColumn<AccountRecord>[] = [
|
|
17
|
+
{
|
|
18
|
+
key: 'select',
|
|
19
|
+
header: 'Select',
|
|
20
|
+
class: 'cell-select',
|
|
21
|
+
render: (row) => (
|
|
22
|
+
<Checkbox
|
|
23
|
+
checked={props.selectedIds().includes(row.id)}
|
|
24
|
+
onPress={() => props.onToggleRow(row.id)}
|
|
25
|
+
aria-label={`Select ${row.name}`}
|
|
26
|
+
/>
|
|
27
|
+
),
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
key: 'account',
|
|
31
|
+
header: 'Account',
|
|
32
|
+
render: (row) => (
|
|
33
|
+
<div class="entity-copy">
|
|
34
|
+
<strong>{row.name}</strong>
|
|
35
|
+
<span class="muted">{row.email}</span>
|
|
36
|
+
</div>
|
|
37
|
+
),
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
key: 'plan',
|
|
41
|
+
header: 'Plan',
|
|
42
|
+
render: (row) => row.plan,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
key: 'mrr',
|
|
46
|
+
header: 'MRR',
|
|
47
|
+
render: (row) => formatCurrency(row.mrr),
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
key: 'status',
|
|
51
|
+
header: 'Status',
|
|
52
|
+
render: (row) => (
|
|
53
|
+
<span class={`status-pill status-${row.status}`}>{row.status}</span>
|
|
54
|
+
),
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
key: 'actions',
|
|
58
|
+
header: 'Actions',
|
|
59
|
+
class: 'cell-actions',
|
|
60
|
+
render: (row) => (
|
|
61
|
+
<Button onPress={() => props.onOpenRow(row)}>
|
|
62
|
+
<EyeIcon size={14} aria-hidden="true" /> View
|
|
63
|
+
</Button>
|
|
64
|
+
),
|
|
65
|
+
},
|
|
66
|
+
];
|
|
67
|
+
|
|
68
|
+
return (
|
|
69
|
+
<DataTable
|
|
70
|
+
rows={props.rows}
|
|
71
|
+
rowKey={(row) => row.id}
|
|
72
|
+
columns={columns}
|
|
73
|
+
isLoading={props.loading}
|
|
74
|
+
errorText={props.errorText}
|
|
75
|
+
emptyTitle="No accounts matched"
|
|
76
|
+
emptyDescription="Try a broader search, or clear your status filter."
|
|
77
|
+
/>
|
|
78
|
+
);
|
|
79
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export function formatCurrency(value: number): string {
|
|
2
|
+
return new Intl.NumberFormat('en-US', {
|
|
3
|
+
style: 'currency',
|
|
4
|
+
currency: 'USD',
|
|
5
|
+
maximumFractionDigits: 0,
|
|
6
|
+
}).format(value);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function formatPercent(value: number): string {
|
|
10
|
+
return `${value > 0 ? '+' : ''}${value.toFixed(1)}%`;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function formatRelativeDate(timestamp: string): string {
|
|
14
|
+
const date = new Date(timestamp);
|
|
15
|
+
const diffMs = Date.now() - date.getTime();
|
|
16
|
+
const hourMs = 60 * 60 * 1000;
|
|
17
|
+
const dayMs = 24 * hourMs;
|
|
18
|
+
|
|
19
|
+
if (diffMs < hourMs) {
|
|
20
|
+
const minutes = Math.max(1, Math.floor(diffMs / (60 * 1000)));
|
|
21
|
+
return `${minutes}m ago`;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
if (diffMs < dayMs) {
|
|
25
|
+
const hours = Math.max(1, Math.floor(diffMs / hourMs));
|
|
26
|
+
return `${hours}h ago`;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const days = Math.max(1, Math.floor(diffMs / dayMs));
|
|
30
|
+
return `${days}d ago`;
|
|
31
|
+
}
|