robodev 0.11.0 → 0.13.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/package.json +1 -1
- package/src/collect-files.test.ts +19 -0
- package/src/collect-files.ts +1 -0
- package/src/config.test.ts +26 -0
- package/src/config.ts +34 -5
- package/src/emit-starter.test.ts +68 -0
- package/src/emit-starter.ts +47 -13
- package/src/index.ts +45 -4
- package/templates/auth-chat/.config/local.spa.template.yml +27 -0
- package/templates/auth-chat/.oxlint-base.json +29 -0
- package/templates/auth-chat/.oxlintrc.json +78 -0
- package/templates/auth-chat/.rulesync/rules/frontend-api-boundary.md +36 -0
- package/templates/auth-chat/.rulesync/rules/frontend-component-structure.md +38 -0
- package/templates/auth-chat/.rulesync/rules/frontend-forms.md +32 -0
- package/templates/auth-chat/.rulesync/rules/frontend-notifications.md +24 -0
- package/templates/auth-chat/.rulesync/rules/frontend-povio-components.md +42 -0
- package/templates/auth-chat/.rulesync/rules/frontend-povio-ui.md +45 -0
- package/templates/auth-chat/.rulesync/rules/frontend-query-autocomplete.md +29 -0
- package/templates/auth-chat/.rulesync/rules/frontend-tables-and-lists.md +34 -0
- package/templates/auth-chat/.rulesync/rules/frontend-translations.md +26 -0
- package/templates/auth-chat/.rulesync/rules/project-overview.md +32 -0
- package/templates/auth-chat/.rulesync/rules/robodev-api.md +30 -0
- package/templates/auth-chat/.rulesync/rules/robodev-auth.md +40 -0
- package/templates/auth-chat/.rulesync/rules/robodev-database.md +22 -0
- package/templates/auth-chat/.rulesync/rules/role-based-app-structure.md +36 -0
- package/templates/auth-chat/.rulesync/skills/media-feature/SKILL.md +21 -0
- package/templates/auth-chat/.rulesync/skills/povio-ui-styling/SKILL.md +208 -0
- package/templates/auth-chat/.rulesync/skills/povio-ui-styling/agents/openai.yaml +4 -0
- package/templates/auth-chat/.rulesync/skills/robodev-api-route/SKILL.md +13 -0
- package/templates/auth-chat/.rulesync/skills/robodev-table/SKILL.md +12 -0
- package/templates/auth-chat/README.md +26 -7
- package/templates/auth-chat/api/invite.ts +43 -0
- package/templates/auth-chat/apps/fe/index.html +24 -0
- package/templates/auth-chat/apps/fe/openapi-codegen.config.ts +37 -0
- package/templates/auth-chat/apps/fe/package.json +82 -0
- package/templates/auth-chat/apps/fe/public/apple-touch-icon.png +0 -0
- package/templates/auth-chat/apps/fe/public/favicon-96x96.png +0 -0
- package/templates/auth-chat/apps/fe/public/favicon.ico +0 -0
- package/templates/auth-chat/apps/fe/public/favicon.svg +3 -0
- package/templates/auth-chat/apps/fe/public/site.webmanifest +21 -0
- package/templates/auth-chat/apps/fe/public/web-app-manifest-192x192.png +0 -0
- package/templates/auth-chat/apps/fe/public/web-app-manifest-512x512.png +0 -0
- package/templates/auth-chat/apps/fe/src/assets/fonts/GeneralSans-Bold.otf +0 -0
- package/templates/auth-chat/apps/fe/src/assets/fonts/GeneralSans-Medium.otf +0 -0
- package/templates/auth-chat/apps/fe/src/assets/fonts/GeneralSans-Regular.otf +0 -0
- package/templates/auth-chat/apps/fe/src/assets/fonts/GeneralSans-Semibold.otf +0 -0
- package/templates/auth-chat/apps/fe/src/assets/locales/en/translation.json +202 -0
- package/templates/auth-chat/apps/fe/src/assets/locales/sl/translation.json +202 -0
- package/templates/auth-chat/apps/fe/src/clients/app-rest-client.ts +15 -0
- package/templates/auth-chat/apps/fe/src/clients/auth-token-store.ts +101 -0
- package/templates/auth-chat/apps/fe/src/clients/rest/app-error-handler.ts +31 -0
- package/templates/auth-chat/apps/fe/src/clients/rest/interceptors/authorization-header.interceptor.ts +15 -0
- package/templates/auth-chat/apps/fe/src/clients/rest/interceptors/refresh-token.interceptor.ts +37 -0
- package/templates/auth-chat/apps/fe/src/clients/rest/interceptors/response.interceptor.ts +17 -0
- package/templates/auth-chat/apps/fe/src/components/404.tsx +18 -0
- package/templates/auth-chat/apps/fe/src/components/features/auth/AuthBrandPanel.tsx +60 -0
- package/templates/auth-chat/apps/fe/src/components/features/auth/AuthLayout.tsx +23 -0
- package/templates/auth-chat/apps/fe/src/components/features/auth/LoginPage.tsx +111 -0
- package/templates/auth-chat/apps/fe/src/components/features/auth/RegisterPage.tsx +143 -0
- package/templates/auth-chat/apps/fe/src/components/features/chat/ChatPage.tsx +105 -0
- package/templates/auth-chat/apps/fe/src/components/features/chat/InviteForm.tsx +84 -0
- package/templates/auth-chat/apps/fe/src/components/features/profile/ProfilePage.tsx +96 -0
- package/templates/auth-chat/apps/fe/src/components/googleAnalytics/GoogleAnalytics.tsx +35 -0
- package/templates/auth-chat/apps/fe/src/components/layout/AppLayout.tsx +19 -0
- package/templates/auth-chat/apps/fe/src/components/layout/app-header/AppHeader.tsx +91 -0
- package/templates/auth-chat/apps/fe/src/components/layout/app-header/MobileNavigation.tsx +51 -0
- package/templates/auth-chat/apps/fe/src/components/layout/app-header/NavLink.tsx +29 -0
- package/templates/auth-chat/apps/fe/src/components/shared/branding/BrandLogo.tsx +13 -0
- package/templates/auth-chat/apps/fe/src/components/shared/error/ErrorFallback.tsx +43 -0
- package/templates/auth-chat/apps/fe/src/components/shared/error/ErrorText.tsx +20 -0
- package/templates/auth-chat/apps/fe/src/components/shared/error/NotFound.tsx +36 -0
- package/templates/auth-chat/apps/fe/src/components/shared/forms/RequiredLabel.tsx +21 -0
- package/templates/auth-chat/apps/fe/src/components/shared/forms/RowInputWrapper.tsx +50 -0
- package/templates/auth-chat/apps/fe/src/components/shared/head/AppHead.tsx +32 -0
- package/templates/auth-chat/apps/fe/src/components/shared/head/DefaultAppHead.tsx +34 -0
- package/templates/auth-chat/apps/fe/src/components/shared/layout/LoadingState.tsx +9 -0
- package/templates/auth-chat/apps/fe/src/components/shared/layout/ThinPageWrapper.tsx +5 -0
- package/templates/auth-chat/apps/fe/src/components/shared/page/PageHeader.tsx +69 -0
- package/templates/auth-chat/apps/fe/src/components/shared/ui/Card.tsx +60 -0
- package/templates/auth-chat/apps/fe/src/components/shared/ui/GoogleLoginButton.tsx +19 -0
- package/templates/auth-chat/apps/fe/src/components/shared/ui/RequiredLabel.tsx +22 -0
- package/templates/auth-chat/apps/fe/src/components/shared/ui/TableActions.tsx +22 -0
- package/templates/auth-chat/apps/fe/src/config/app.config.ts +35 -0
- package/templates/auth-chat/apps/fe/src/config/i18n.ts +43 -0
- package/templates/auth-chat/apps/fe/src/config/inits/a11y.ts +14 -0
- package/templates/auth-chat/apps/fe/src/config/inits/logger.ts +7 -0
- package/templates/auth-chat/apps/fe/src/config/inits/sentry.ts +21 -0
- package/templates/auth-chat/apps/fe/src/config/jwt.config.ts +2 -0
- package/templates/auth-chat/apps/fe/src/config/query.config.ts +20 -0
- package/templates/auth-chat/apps/fe/src/hooks/useAuth.ts +5 -0
- package/templates/auth-chat/apps/fe/src/main.tsx +52 -0
- package/templates/auth-chat/apps/fe/src/pages/(guest)/login.tsx +23 -0
- package/templates/auth-chat/apps/fe/src/pages/(guest)/register.tsx +23 -0
- package/templates/auth-chat/apps/fe/src/pages/(guest)/route.tsx +18 -0
- package/templates/auth-chat/apps/fe/src/pages/(private)/index.tsx +23 -0
- package/templates/auth-chat/apps/fe/src/pages/(private)/profile.tsx +23 -0
- package/templates/auth-chat/apps/fe/src/pages/(private)/route.tsx +18 -0
- package/templates/auth-chat/apps/fe/src/pages/(public)/auth.tsx +37 -0
- package/templates/auth-chat/apps/fe/src/pages/(public)/route.tsx +9 -0
- package/templates/auth-chat/apps/fe/src/pages/__root.tsx +164 -0
- package/templates/auth-chat/apps/fe/src/providers/AppErrorBoundary.tsx +10 -0
- package/templates/auth-chat/apps/fe/src/providers/OpenApiRuntimeProvider.tsx +31 -0
- package/templates/auth-chat/apps/fe/src/providers/index.tsx +44 -0
- package/templates/auth-chat/apps/fe/src/providers/jwt.provider.tsx +95 -0
- package/templates/auth-chat/apps/fe/src/routeTree.gen.ts +225 -0
- package/templates/auth-chat/apps/fe/src/styles/base.css +103 -0
- package/templates/auth-chat/apps/fe/src/styles/fonts/fonts.tsx +10 -0
- package/templates/auth-chat/apps/fe/src/styles/fonts/general-sans.css +31 -0
- package/templates/auth-chat/apps/fe/src/styles/globals.css +28 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/button.override.ts +536 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/checkbox.override.ts +71 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/input.override.ts +252 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/label.override.ts +91 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/modal.override.ts +57 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/radio.override.ts +46 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/table.override.ts +104 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/tag.override.ts +66 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/defaults/typography.override.ts +115 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/outline.clsx.ts +10 -0
- package/templates/auth-chat/apps/fe/src/styles/overrides/uiOverrides.override.ts +60 -0
- package/templates/auth-chat/apps/fe/src/styles/theme.css +2177 -0
- package/templates/auth-chat/apps/fe/src/types/i18next.d.ts +12 -0
- package/templates/auth-chat/apps/fe/src/types/table.d.ts +17 -0
- package/templates/auth-chat/apps/fe/src/types/ui.d.ts +26 -0
- package/templates/auth-chat/apps/fe/src/types/vite-env.d.ts +20 -0
- package/templates/auth-chat/apps/fe/src/utils/date.utils.ts +17 -0
- package/templates/auth-chat/apps/fe/src/utils/number.utils.ts +12 -0
- package/templates/auth-chat/apps/fe/src/utils/string.utils.ts +5 -0
- package/templates/auth-chat/apps/fe/src/vite-env.d.ts +1 -0
- package/templates/auth-chat/apps/fe/tsconfig.app.json +32 -0
- package/templates/auth-chat/apps/fe/tsconfig.json +9 -0
- package/templates/auth-chat/apps/fe/tsconfig.node.json +31 -0
- package/templates/auth-chat/apps/fe/vite.config.ts +94 -0
- package/templates/auth-chat/openapi.json +1016 -0
- package/templates/auth-chat/oxfmt.config.js +23 -0
- package/templates/auth-chat/package.json +6 -13
- package/templates/auth-chat/rulesync.jsonc +18 -0
- package/templates/auth-chat/tsconfig.json +2 -4
- package/templates/backend/README.md +2 -2
- package/templates/backend/api/_lib.ts +359 -0
- package/templates/backend/api/aliens/labels.ts +19 -0
- package/templates/backend/api/files/presigned-url.ts +48 -0
- package/templates/backend/api/files/upload.ts +29 -0
- package/templates/backend/api/planets/[id]/like.ts +36 -0
- package/templates/backend/api/planets/[id].ts +56 -13
- package/templates/backend/api/planets/paginate.ts +36 -0
- package/templates/backend/api/planets.ts +52 -44
- package/templates/backend/database.ts +33 -13
- package/templates/backend/package.json +1 -1
- package/templates/catalog.json +3 -3
- package/templates/empty/package.json +1 -1
- package/templates/space/.config/local.spa.template.yml +27 -0
- package/templates/space/.oxlint-base.json +29 -0
- package/templates/space/.oxlintrc.json +78 -0
- package/templates/space/.rulesync/rules/frontend-api-boundary.md +36 -0
- package/templates/space/.rulesync/rules/frontend-component-structure.md +38 -0
- package/templates/space/.rulesync/rules/frontend-forms.md +32 -0
- package/templates/space/.rulesync/rules/frontend-notifications.md +24 -0
- package/templates/space/.rulesync/rules/frontend-povio-components.md +42 -0
- package/templates/space/.rulesync/rules/frontend-povio-ui.md +45 -0
- package/templates/space/.rulesync/rules/frontend-query-autocomplete.md +29 -0
- package/templates/space/.rulesync/rules/frontend-tables-and-lists.md +34 -0
- package/templates/space/.rulesync/rules/frontend-translations.md +26 -0
- package/templates/space/.rulesync/rules/project-overview.md +32 -0
- package/templates/space/.rulesync/rules/robodev-api.md +30 -0
- package/templates/space/.rulesync/rules/robodev-auth.md +40 -0
- package/templates/space/.rulesync/rules/robodev-database.md +22 -0
- package/templates/space/.rulesync/rules/role-based-app-structure.md +36 -0
- package/templates/space/.rulesync/skills/media-feature/SKILL.md +21 -0
- package/templates/space/.rulesync/skills/povio-ui-styling/SKILL.md +208 -0
- package/templates/space/.rulesync/skills/povio-ui-styling/agents/openai.yaml +4 -0
- package/templates/space/.rulesync/skills/robodev-api-route/SKILL.md +13 -0
- package/templates/space/.rulesync/skills/robodev-table/SKILL.md +12 -0
- package/templates/space/README.md +26 -7
- package/templates/space/api/_lib.ts +359 -0
- package/templates/space/api/aliens/labels.ts +19 -0
- package/templates/space/api/files/presigned-url.ts +48 -0
- package/templates/space/api/files/upload.ts +29 -0
- package/templates/space/api/planets/[id]/like.ts +36 -0
- package/templates/space/api/planets/[id].ts +56 -13
- package/templates/space/api/planets/paginate.ts +36 -0
- package/templates/space/api/planets.ts +52 -44
- package/templates/space/apps/fe/index.html +24 -0
- package/templates/space/apps/fe/openapi-codegen.config.ts +37 -0
- package/templates/space/apps/fe/package.json +82 -0
- package/templates/space/apps/fe/public/apple-touch-icon.png +0 -0
- package/templates/space/apps/fe/public/favicon-96x96.png +0 -0
- package/templates/space/apps/fe/public/favicon.ico +0 -0
- package/templates/space/apps/fe/public/favicon.svg +3 -0
- package/templates/space/apps/fe/public/site.webmanifest +21 -0
- package/templates/space/apps/fe/public/web-app-manifest-192x192.png +0 -0
- package/templates/space/apps/fe/public/web-app-manifest-512x512.png +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Bold.otf +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Medium.otf +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Regular.otf +0 -0
- package/templates/space/apps/fe/src/assets/fonts/GeneralSans-Semibold.otf +0 -0
- package/templates/space/apps/fe/src/assets/locales/en/translation.json +301 -0
- package/templates/space/apps/fe/src/assets/locales/sl/translation.json +301 -0
- package/templates/space/apps/fe/src/clients/app-rest-client.ts +15 -0
- package/templates/space/apps/fe/src/clients/auth-token-store.ts +101 -0
- package/templates/space/apps/fe/src/clients/rest/app-error-handler.ts +31 -0
- package/templates/space/apps/fe/src/clients/rest/interceptors/authorization-header.interceptor.ts +15 -0
- package/templates/space/apps/fe/src/clients/rest/interceptors/refresh-token.interceptor.ts +37 -0
- package/templates/space/apps/fe/src/clients/rest/interceptors/response.interceptor.ts +17 -0
- package/templates/space/apps/fe/src/components/404.tsx +18 -0
- package/templates/space/apps/fe/src/components/features/auth/AuthBrandPanel.tsx +60 -0
- package/templates/space/apps/fe/src/components/features/auth/AuthLayout.tsx +23 -0
- package/templates/space/apps/fe/src/components/features/auth/LoginPage.tsx +111 -0
- package/templates/space/apps/fe/src/components/features/auth/RegisterPage.tsx +143 -0
- package/templates/space/apps/fe/src/components/features/home/HomePage.tsx +21 -0
- package/templates/space/apps/fe/src/components/features/planets/details/PlanetDetailsPage.tsx +139 -0
- package/templates/space/apps/fe/src/components/features/planets/details/PlanetEditPage.tsx +266 -0
- package/templates/space/apps/fe/src/components/features/planets/feed/PlanetFeedCard.tsx +131 -0
- package/templates/space/apps/fe/src/components/features/planets/feed/PlanetsFeedPage.tsx +119 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetCard.tsx +89 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetCreateModal.tsx +179 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsFilters.css +3 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsFilters.tsx +73 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsGridPage.tsx +51 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsInfiniteTablePage.tsx +79 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsPage.tsx +65 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsTablePage.tsx +72 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsTableSummary.tsx +29 -0
- package/templates/space/apps/fe/src/components/features/planets/list/PlanetsViewTabs.tsx +79 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/PlanetsTable.tsx +30 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/PlanetsTableActions.tsx +64 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/PlanetsTableInfinite.tsx +36 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/planetsTableColumns.tsx +72 -0
- package/templates/space/apps/fe/src/components/features/planets/list/table/usePlanetTableFilters.tsx +102 -0
- package/templates/space/apps/fe/src/components/features/profile/ProfilePage.tsx +96 -0
- package/templates/space/apps/fe/src/components/googleAnalytics/GoogleAnalytics.tsx +35 -0
- package/templates/space/apps/fe/src/components/layout/AppLayout.tsx +19 -0
- package/templates/space/apps/fe/src/components/layout/app-header/AppHeader.tsx +93 -0
- package/templates/space/apps/fe/src/components/layout/app-header/MobileNavigation.tsx +53 -0
- package/templates/space/apps/fe/src/components/layout/app-header/NavLink.tsx +29 -0
- package/templates/space/apps/fe/src/components/shared/branding/BrandLogo.tsx +13 -0
- package/templates/space/apps/fe/src/components/shared/error/ErrorFallback.tsx +43 -0
- package/templates/space/apps/fe/src/components/shared/error/ErrorText.tsx +20 -0
- package/templates/space/apps/fe/src/components/shared/error/NotFound.tsx +36 -0
- package/templates/space/apps/fe/src/components/shared/forms/RequiredLabel.tsx +21 -0
- package/templates/space/apps/fe/src/components/shared/forms/RowInputWrapper.tsx +50 -0
- package/templates/space/apps/fe/src/components/shared/head/AppHead.tsx +32 -0
- package/templates/space/apps/fe/src/components/shared/head/DefaultAppHead.tsx +34 -0
- package/templates/space/apps/fe/src/components/shared/layout/LoadingState.tsx +9 -0
- package/templates/space/apps/fe/src/components/shared/layout/ThinPageWrapper.tsx +5 -0
- package/templates/space/apps/fe/src/components/shared/page/PageHeader.tsx +69 -0
- package/templates/space/apps/fe/src/components/shared/ui/Card.tsx +60 -0
- package/templates/space/apps/fe/src/components/shared/ui/GoogleLoginButton.tsx +19 -0
- package/templates/space/apps/fe/src/components/shared/ui/RequiredLabel.tsx +22 -0
- package/templates/space/apps/fe/src/components/shared/ui/TableActions.tsx +22 -0
- package/templates/space/apps/fe/src/config/app.config.ts +35 -0
- package/templates/space/apps/fe/src/config/i18n.ts +43 -0
- package/templates/space/apps/fe/src/config/inits/a11y.ts +14 -0
- package/templates/space/apps/fe/src/config/inits/logger.ts +7 -0
- package/templates/space/apps/fe/src/config/inits/sentry.ts +21 -0
- package/templates/space/apps/fe/src/config/jwt.config.ts +2 -0
- package/templates/space/apps/fe/src/config/query.config.ts +20 -0
- package/templates/space/apps/fe/src/hooks/useAuth.ts +5 -0
- package/templates/space/apps/fe/src/main.tsx +52 -0
- package/templates/space/apps/fe/src/pages/(guest)/login.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(guest)/register.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(guest)/route.tsx +18 -0
- package/templates/space/apps/fe/src/pages/(private)/index.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(private)/planets/$id/edit.tsx +53 -0
- package/templates/space/apps/fe/src/pages/(private)/planets/$id/index.tsx +41 -0
- package/templates/space/apps/fe/src/pages/(private)/planets/index.tsx +24 -0
- package/templates/space/apps/fe/src/pages/(private)/planets-feed.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(private)/profile.tsx +23 -0
- package/templates/space/apps/fe/src/pages/(private)/route.tsx +18 -0
- package/templates/space/apps/fe/src/pages/(public)/auth.tsx +37 -0
- package/templates/space/apps/fe/src/pages/(public)/route.tsx +9 -0
- package/templates/space/apps/fe/src/pages/__root.tsx +164 -0
- package/templates/space/apps/fe/src/providers/AppErrorBoundary.tsx +10 -0
- package/templates/space/apps/fe/src/providers/OpenApiRuntimeProvider.tsx +31 -0
- package/templates/space/apps/fe/src/providers/index.tsx +44 -0
- package/templates/space/apps/fe/src/providers/jwt.provider.tsx +95 -0
- package/templates/space/apps/fe/src/routeTree.gen.ts +309 -0
- package/templates/space/apps/fe/src/styles/base.css +103 -0
- package/templates/space/apps/fe/src/styles/fonts/fonts.tsx +10 -0
- package/templates/space/apps/fe/src/styles/fonts/general-sans.css +31 -0
- package/templates/space/apps/fe/src/styles/globals.css +28 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/button.override.ts +536 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/checkbox.override.ts +71 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/input.override.ts +252 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/label.override.ts +91 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/modal.override.ts +57 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/radio.override.ts +46 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/table.override.ts +104 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/tag.override.ts +66 -0
- package/templates/space/apps/fe/src/styles/overrides/defaults/typography.override.ts +115 -0
- package/templates/space/apps/fe/src/styles/overrides/outline.clsx.ts +10 -0
- package/templates/space/apps/fe/src/styles/overrides/uiOverrides.override.ts +60 -0
- package/templates/space/apps/fe/src/styles/theme.css +2177 -0
- package/templates/space/apps/fe/src/types/i18next.d.ts +12 -0
- package/templates/space/apps/fe/src/types/table.d.ts +17 -0
- package/templates/space/apps/fe/src/types/ui.d.ts +26 -0
- package/templates/space/apps/fe/src/types/vite-env.d.ts +20 -0
- package/templates/space/apps/fe/src/utils/date.utils.ts +17 -0
- package/templates/space/apps/fe/src/utils/image-fallback.ts +9 -0
- package/templates/space/apps/fe/src/utils/media-upload.ts +63 -0
- package/templates/space/apps/fe/src/utils/number.utils.ts +12 -0
- package/templates/space/apps/fe/src/utils/string.utils.ts +5 -0
- package/templates/space/apps/fe/src/vite-env.d.ts +1 -0
- package/templates/space/apps/fe/tsconfig.app.json +32 -0
- package/templates/space/apps/fe/tsconfig.json +9 -0
- package/templates/space/apps/fe/tsconfig.node.json +31 -0
- package/templates/space/apps/fe/vite.config.ts +94 -0
- package/templates/space/database.ts +33 -13
- package/templates/space/openapi.json +1819 -0
- package/templates/space/oxfmt.config.js +23 -0
- package/templates/space/package.json +6 -13
- package/templates/space/rulesync.jsonc +18 -0
- package/templates/space/tsconfig.json +2 -4
- package/templates/auth-chat/index.html +0 -201
- package/templates/auth-chat/src/main.tsx +0 -282
- package/templates/auth-chat/vite.config.ts +0 -7
- package/templates/backend/api/health.ts +0 -7
- package/templates/backend/api/launch.ts +0 -29
- package/templates/backend/api/me.ts +0 -14
- package/templates/backend/api/motto.ts +0 -9
- package/templates/backend/api/rockets.ts +0 -43
- package/templates/space/api/health.ts +0 -7
- package/templates/space/api/launch.ts +0 -29
- package/templates/space/api/me.ts +0 -14
- package/templates/space/api/motto.ts +0 -9
- package/templates/space/api/rockets.ts +0 -43
- package/templates/space/index.html +0 -138
- package/templates/space/src/main.tsx +0 -229
- package/templates/space/vite.config.ts +0 -7
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
useTabs: false,
|
|
3
|
+
tabWidth: 2,
|
|
4
|
+
printWidth: 120,
|
|
5
|
+
singleQuote: false,
|
|
6
|
+
jsxSingleQuote: false,
|
|
7
|
+
quoteProps: "as-needed",
|
|
8
|
+
trailingComma: "all",
|
|
9
|
+
semi: true,
|
|
10
|
+
arrowParens: "always",
|
|
11
|
+
bracketSameLine: false,
|
|
12
|
+
bracketSpacing: true,
|
|
13
|
+
singleAttributePerLine: true,
|
|
14
|
+
ignorePatterns: [
|
|
15
|
+
"node_modules",
|
|
16
|
+
"dist",
|
|
17
|
+
"out",
|
|
18
|
+
".turbo",
|
|
19
|
+
".next",
|
|
20
|
+
"routeTree.gen.ts",
|
|
21
|
+
"openapi.generated.json",
|
|
22
|
+
],
|
|
23
|
+
};
|
|
@@ -4,22 +4,15 @@
|
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"deploy": "robodev deploy"
|
|
7
|
+
"deploy": "robodev deploy",
|
|
8
|
+
"rules:gen": "rulesync generate"
|
|
10
9
|
},
|
|
11
10
|
"dependencies": {
|
|
12
|
-
"
|
|
13
|
-
"react-dom": "^18.3.1",
|
|
14
|
-
"@robodev-ai/sdk": "^0.6.0",
|
|
15
|
-
"@robodev-ai/client": "^0.3.0"
|
|
11
|
+
"@robodev-ai/sdk": "^0.6.0"
|
|
16
12
|
},
|
|
17
13
|
"devDependencies": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"typescript": "^5.9.2",
|
|
22
|
-
"vite": "^6.3.5",
|
|
23
|
-
"robodev": "^0.11.0"
|
|
14
|
+
"robodev": "^0.13.0",
|
|
15
|
+
"rulesync": "^8.18.0",
|
|
16
|
+
"typescript": "^5.9.2"
|
|
24
17
|
}
|
|
25
18
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://github.com/dyoshikawa/rulesync/releases/latest/download/config-schema.json",
|
|
3
|
+
"targets": {
|
|
4
|
+
"cursor": ["rules", "skills"],
|
|
5
|
+
"claudecode": ["rules", "skills"],
|
|
6
|
+
"codexcli": ["rules", "skills"],
|
|
7
|
+
},
|
|
8
|
+
"outputRoots": ["."],
|
|
9
|
+
// Clean stale outputs when source rules are removed. All sources live under .rulesync/.
|
|
10
|
+
"delete": true,
|
|
11
|
+
"verbose": false,
|
|
12
|
+
"silent": false,
|
|
13
|
+
"global": false,
|
|
14
|
+
"simulateCommands": false,
|
|
15
|
+
"simulateSubagents": false,
|
|
16
|
+
"simulateSkills": false,
|
|
17
|
+
"gitignoreTargetsOnly": true,
|
|
18
|
+
}
|
|
@@ -3,11 +3,9 @@
|
|
|
3
3
|
"target": "ES2022",
|
|
4
4
|
"module": "ESNext",
|
|
5
5
|
"moduleResolution": "bundler",
|
|
6
|
-
"jsx": "react-jsx",
|
|
7
6
|
"strict": true,
|
|
8
7
|
"skipLibCheck": true,
|
|
9
|
-
"noEmit": true
|
|
10
|
-
"types": ["vite/client"]
|
|
8
|
+
"noEmit": true
|
|
11
9
|
},
|
|
12
|
-
"include": ["
|
|
10
|
+
"include": ["database.ts", "api/**/*.ts"]
|
|
13
11
|
}
|
|
@@ -1,201 +0,0 @@
|
|
|
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>{{NAME}}</title>
|
|
7
|
-
<style>
|
|
8
|
-
:root {
|
|
9
|
-
color-scheme: dark;
|
|
10
|
-
--bg: #10131a;
|
|
11
|
-
--panel: #181c26;
|
|
12
|
-
--line: #2a3140;
|
|
13
|
-
--text: #f2eee6;
|
|
14
|
-
--muted: #9aa3b2;
|
|
15
|
-
--accent: #7ee0c6;
|
|
16
|
-
--ink: #10221c;
|
|
17
|
-
--mine: #243f38;
|
|
18
|
-
--theirs: #222733;
|
|
19
|
-
--danger: #f0a0a0;
|
|
20
|
-
}
|
|
21
|
-
* {
|
|
22
|
-
box-sizing: border-box;
|
|
23
|
-
}
|
|
24
|
-
body {
|
|
25
|
-
margin: 0;
|
|
26
|
-
min-height: 100vh;
|
|
27
|
-
background:
|
|
28
|
-
radial-gradient(900px 420px at 10% -10%, #1d3a34 0%, transparent 55%), var(--bg);
|
|
29
|
-
color: var(--text);
|
|
30
|
-
font:
|
|
31
|
-
15px/1.5 ui-sans-serif,
|
|
32
|
-
system-ui,
|
|
33
|
-
sans-serif;
|
|
34
|
-
}
|
|
35
|
-
main {
|
|
36
|
-
max-width: 720px;
|
|
37
|
-
margin: 0 auto;
|
|
38
|
-
padding: 36px 20px 48px;
|
|
39
|
-
}
|
|
40
|
-
main.narrow {
|
|
41
|
-
max-width: 420px;
|
|
42
|
-
}
|
|
43
|
-
main.chat {
|
|
44
|
-
display: flex;
|
|
45
|
-
flex-direction: column;
|
|
46
|
-
min-height: 100vh;
|
|
47
|
-
padding-bottom: 24px;
|
|
48
|
-
}
|
|
49
|
-
h1 {
|
|
50
|
-
font-size: 28px;
|
|
51
|
-
font-weight: 650;
|
|
52
|
-
letter-spacing: -0.04em;
|
|
53
|
-
margin: 0 0 4px;
|
|
54
|
-
}
|
|
55
|
-
.eyebrow {
|
|
56
|
-
margin: 0 0 6px;
|
|
57
|
-
color: var(--accent);
|
|
58
|
-
font-size: 12px;
|
|
59
|
-
letter-spacing: 0.08em;
|
|
60
|
-
text-transform: uppercase;
|
|
61
|
-
}
|
|
62
|
-
.lede {
|
|
63
|
-
color: var(--muted);
|
|
64
|
-
margin: 0 0 22px;
|
|
65
|
-
overflow-wrap: anywhere;
|
|
66
|
-
}
|
|
67
|
-
.error {
|
|
68
|
-
color: var(--danger);
|
|
69
|
-
margin: 0 0 16px;
|
|
70
|
-
}
|
|
71
|
-
.tabs {
|
|
72
|
-
display: flex;
|
|
73
|
-
gap: 8px;
|
|
74
|
-
margin-bottom: 14px;
|
|
75
|
-
}
|
|
76
|
-
.tab,
|
|
77
|
-
.ghost,
|
|
78
|
-
button {
|
|
79
|
-
font: inherit;
|
|
80
|
-
cursor: pointer;
|
|
81
|
-
}
|
|
82
|
-
.tab {
|
|
83
|
-
background: transparent;
|
|
84
|
-
color: var(--muted);
|
|
85
|
-
border: 1px solid var(--line);
|
|
86
|
-
border-radius: 999px;
|
|
87
|
-
padding: 6px 12px;
|
|
88
|
-
}
|
|
89
|
-
.tab.on {
|
|
90
|
-
color: var(--ink);
|
|
91
|
-
background: var(--accent);
|
|
92
|
-
border-color: var(--accent);
|
|
93
|
-
}
|
|
94
|
-
form {
|
|
95
|
-
display: grid;
|
|
96
|
-
gap: 10px;
|
|
97
|
-
}
|
|
98
|
-
label {
|
|
99
|
-
display: grid;
|
|
100
|
-
gap: 4px;
|
|
101
|
-
font-size: 12px;
|
|
102
|
-
color: var(--muted);
|
|
103
|
-
}
|
|
104
|
-
input,
|
|
105
|
-
button {
|
|
106
|
-
color: var(--text);
|
|
107
|
-
}
|
|
108
|
-
input {
|
|
109
|
-
background: var(--panel);
|
|
110
|
-
border: 1px solid var(--line);
|
|
111
|
-
border-radius: 8px;
|
|
112
|
-
padding: 10px 12px;
|
|
113
|
-
}
|
|
114
|
-
button[type="submit"],
|
|
115
|
-
.google {
|
|
116
|
-
background: var(--accent);
|
|
117
|
-
color: var(--ink);
|
|
118
|
-
border: 0;
|
|
119
|
-
border-radius: 8px;
|
|
120
|
-
padding: 10px 12px;
|
|
121
|
-
font-weight: 650;
|
|
122
|
-
}
|
|
123
|
-
.google {
|
|
124
|
-
width: 100%;
|
|
125
|
-
background: #fff;
|
|
126
|
-
color: #1f1f1f;
|
|
127
|
-
}
|
|
128
|
-
.ghost {
|
|
129
|
-
background: transparent;
|
|
130
|
-
color: var(--accent);
|
|
131
|
-
border: 1px solid var(--accent);
|
|
132
|
-
border-radius: 8px;
|
|
133
|
-
padding: 8px 12px;
|
|
134
|
-
height: fit-content;
|
|
135
|
-
}
|
|
136
|
-
button:disabled {
|
|
137
|
-
opacity: 0.5;
|
|
138
|
-
cursor: default;
|
|
139
|
-
}
|
|
140
|
-
.or {
|
|
141
|
-
text-align: center;
|
|
142
|
-
color: var(--muted);
|
|
143
|
-
margin: 16px 0 12px;
|
|
144
|
-
font-size: 12px;
|
|
145
|
-
}
|
|
146
|
-
header {
|
|
147
|
-
display: flex;
|
|
148
|
-
justify-content: space-between;
|
|
149
|
-
align-items: flex-start;
|
|
150
|
-
gap: 16px;
|
|
151
|
-
margin-bottom: 16px;
|
|
152
|
-
}
|
|
153
|
-
.transcript {
|
|
154
|
-
flex: 1;
|
|
155
|
-
min-height: 320px;
|
|
156
|
-
max-height: calc(100vh - 240px);
|
|
157
|
-
overflow: auto;
|
|
158
|
-
display: flex;
|
|
159
|
-
flex-direction: column;
|
|
160
|
-
gap: 10px;
|
|
161
|
-
padding: 12px;
|
|
162
|
-
background: var(--panel);
|
|
163
|
-
border: 1px solid var(--line);
|
|
164
|
-
border-radius: 12px;
|
|
165
|
-
margin-bottom: 12px;
|
|
166
|
-
}
|
|
167
|
-
.empty {
|
|
168
|
-
color: var(--muted);
|
|
169
|
-
margin: auto;
|
|
170
|
-
}
|
|
171
|
-
.bubble {
|
|
172
|
-
max-width: 80%;
|
|
173
|
-
padding: 8px 12px;
|
|
174
|
-
border-radius: 12px;
|
|
175
|
-
background: var(--theirs);
|
|
176
|
-
}
|
|
177
|
-
.bubble.mine {
|
|
178
|
-
align-self: flex-end;
|
|
179
|
-
background: var(--mine);
|
|
180
|
-
}
|
|
181
|
-
.bubble p {
|
|
182
|
-
margin: 0;
|
|
183
|
-
white-space: pre-wrap;
|
|
184
|
-
}
|
|
185
|
-
.meta {
|
|
186
|
-
color: var(--muted);
|
|
187
|
-
font-size: 12px;
|
|
188
|
-
margin-bottom: 2px;
|
|
189
|
-
}
|
|
190
|
-
.composer {
|
|
191
|
-
display: grid;
|
|
192
|
-
grid-template-columns: 1fr auto;
|
|
193
|
-
gap: 8px;
|
|
194
|
-
}
|
|
195
|
-
</style>
|
|
196
|
-
</head>
|
|
197
|
-
<body>
|
|
198
|
-
<div id="root"></div>
|
|
199
|
-
<script type="module" src="/src/main.tsx"></script>
|
|
200
|
-
</body>
|
|
201
|
-
</html>
|
|
@@ -1,282 +0,0 @@
|
|
|
1
|
-
import { StrictMode, useEffect, useRef, useState, type FormEvent } from "react";
|
|
2
|
-
import { createRoot } from "react-dom/client";
|
|
3
|
-
import { createClient, type AuthUser } from "@robodev-ai/client";
|
|
4
|
-
|
|
5
|
-
type Message = {
|
|
6
|
-
id: string;
|
|
7
|
-
userId: string;
|
|
8
|
-
authorName: string | null;
|
|
9
|
-
authorEmail: string;
|
|
10
|
-
body: string;
|
|
11
|
-
createdAt: string | null;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
function projectApiUrl(): string {
|
|
15
|
-
const fromEnv = import.meta.env.VITE_API_URL;
|
|
16
|
-
if (typeof fromEnv === "string" && fromEnv.trim()) return fromEnv.replace(/\/+$/, "");
|
|
17
|
-
if (typeof window !== "undefined") return window.location.origin;
|
|
18
|
-
return "";
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
const apiUrl = projectApiUrl();
|
|
22
|
-
const api = createClient({ url: apiUrl });
|
|
23
|
-
|
|
24
|
-
function authorLabel(user: { name?: string | null; email: string }) {
|
|
25
|
-
return user.name?.trim() || user.email;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function App() {
|
|
29
|
-
const [mode, setMode] = useState<"signin" | "signup">("signin");
|
|
30
|
-
const [user, setUser] = useState<AuthUser | null>(null);
|
|
31
|
-
const [ready, setReady] = useState(false);
|
|
32
|
-
const [error, setError] = useState<string | null>(null);
|
|
33
|
-
const [pending, setPending] = useState(false);
|
|
34
|
-
const [email, setEmail] = useState("");
|
|
35
|
-
const [password, setPassword] = useState("");
|
|
36
|
-
const [name, setName] = useState("");
|
|
37
|
-
const [messages, setMessages] = useState<Message[]>([]);
|
|
38
|
-
const [draft, setDraft] = useState("");
|
|
39
|
-
const [unauthStatus, setUnauthStatus] = useState<string | null>(null);
|
|
40
|
-
const listRef = useRef<HTMLDivElement>(null);
|
|
41
|
-
|
|
42
|
-
async function refreshMessages() {
|
|
43
|
-
const res = await api.fetch("/api/messages");
|
|
44
|
-
if (!res.ok) throw new Error(await res.text());
|
|
45
|
-
setMessages((await res.json()) as Message[]);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
useEffect(() => {
|
|
49
|
-
api.consumeTokenFromUrl();
|
|
50
|
-
void api.auth
|
|
51
|
-
.getUser()
|
|
52
|
-
.then(({ user: next }) => setUser(next))
|
|
53
|
-
.catch(() => setUser(null))
|
|
54
|
-
.finally(() => setReady(true));
|
|
55
|
-
}, []);
|
|
56
|
-
|
|
57
|
-
useEffect(() => {
|
|
58
|
-
if (!user) return;
|
|
59
|
-
let cancelled = false;
|
|
60
|
-
const load = () =>
|
|
61
|
-
refreshMessages().catch((err: unknown) => {
|
|
62
|
-
if (!cancelled) setError(err instanceof Error ? err.message : "Failed to load messages");
|
|
63
|
-
});
|
|
64
|
-
void load();
|
|
65
|
-
const timer = window.setInterval(() => void load(), 2500);
|
|
66
|
-
return () => {
|
|
67
|
-
cancelled = true;
|
|
68
|
-
window.clearInterval(timer);
|
|
69
|
-
};
|
|
70
|
-
}, [user]);
|
|
71
|
-
|
|
72
|
-
useEffect(() => {
|
|
73
|
-
listRef.current?.scrollTo({ top: listRef.current.scrollHeight });
|
|
74
|
-
}, [messages]);
|
|
75
|
-
|
|
76
|
-
useEffect(() => {
|
|
77
|
-
void fetch(`${apiUrl}/api/messages`).then((res) => {
|
|
78
|
-
setUnauthStatus(
|
|
79
|
-
`${res.status} ${res.status === 401 ? "unauthorized (expected)" : res.statusText}`,
|
|
80
|
-
);
|
|
81
|
-
});
|
|
82
|
-
}, []);
|
|
83
|
-
|
|
84
|
-
async function onEmailAuth(event: FormEvent) {
|
|
85
|
-
event.preventDefault();
|
|
86
|
-
setPending(true);
|
|
87
|
-
setError(null);
|
|
88
|
-
try {
|
|
89
|
-
if (mode === "signup") {
|
|
90
|
-
await api.auth.signUp({ email, password, name: name.trim() || undefined });
|
|
91
|
-
} else {
|
|
92
|
-
await api.auth.signIn.email({ email, password });
|
|
93
|
-
}
|
|
94
|
-
const { user: next } = await api.auth.getUser();
|
|
95
|
-
setUser(next);
|
|
96
|
-
setPassword("");
|
|
97
|
-
} catch (err) {
|
|
98
|
-
setError(err instanceof Error ? err.message : "Auth failed");
|
|
99
|
-
} finally {
|
|
100
|
-
setPending(false);
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
async function onGoogle() {
|
|
105
|
-
setPending(true);
|
|
106
|
-
setError(null);
|
|
107
|
-
try {
|
|
108
|
-
const start = new URL(`${api.url}/api/user/auth/google`);
|
|
109
|
-
start.searchParams.set("redirect_uri", window.location.href);
|
|
110
|
-
const probe = await fetch(start.toString(), { redirect: "manual" });
|
|
111
|
-
if (probe.status === 503) {
|
|
112
|
-
const body = (await probe.json().catch(() => ({}))) as { error?: string; message?: string };
|
|
113
|
-
throw new Error(
|
|
114
|
-
body.message ||
|
|
115
|
-
`Google sign-in is not configured on Starbase (${body.error ?? "503"}). Set GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, and PUBLIC_URL.`,
|
|
116
|
-
);
|
|
117
|
-
}
|
|
118
|
-
api.auth.signIn.google();
|
|
119
|
-
} catch (err) {
|
|
120
|
-
setError(err instanceof Error ? err.message : "Google sign-in failed");
|
|
121
|
-
setPending(false);
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
async function onSignOut() {
|
|
126
|
-
await api.auth.signOut();
|
|
127
|
-
setUser(null);
|
|
128
|
-
setMessages([]);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
async function onSend(event: FormEvent) {
|
|
132
|
-
event.preventDefault();
|
|
133
|
-
if (!draft.trim()) return;
|
|
134
|
-
setPending(true);
|
|
135
|
-
setError(null);
|
|
136
|
-
try {
|
|
137
|
-
const res = await api.fetch("/api/messages", {
|
|
138
|
-
method: "POST",
|
|
139
|
-
body: JSON.stringify({ body: draft.trim() }),
|
|
140
|
-
});
|
|
141
|
-
if (!res.ok) throw new Error(await res.text());
|
|
142
|
-
setDraft("");
|
|
143
|
-
await refreshMessages();
|
|
144
|
-
} catch (err) {
|
|
145
|
-
setError(err instanceof Error ? err.message : "Could not send");
|
|
146
|
-
} finally {
|
|
147
|
-
setPending(false);
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
if (!ready) {
|
|
152
|
-
return (
|
|
153
|
-
<main>
|
|
154
|
-
<p className="lede">Loading session…</p>
|
|
155
|
-
</main>
|
|
156
|
-
);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
if (!user) {
|
|
160
|
-
return (
|
|
161
|
-
<main className="narrow">
|
|
162
|
-
<p className="eyebrow">Robodev Auth</p>
|
|
163
|
-
<h1>{{NAME}}</h1>
|
|
164
|
-
<p className="lede">
|
|
165
|
-
Sign in with email or Google. Protected APIs live at {apiUrl}. Unauthenticated GET
|
|
166
|
-
/api/messages: {unauthStatus ?? "checking…"}.
|
|
167
|
-
</p>
|
|
168
|
-
{error ? <p className="error">{error}</p> : null}
|
|
169
|
-
|
|
170
|
-
<div className="tabs">
|
|
171
|
-
<button
|
|
172
|
-
type="button"
|
|
173
|
-
className={mode === "signin" ? "tab on" : "tab"}
|
|
174
|
-
onClick={() => setMode("signin")}
|
|
175
|
-
>
|
|
176
|
-
Sign in
|
|
177
|
-
</button>
|
|
178
|
-
<button
|
|
179
|
-
type="button"
|
|
180
|
-
className={mode === "signup" ? "tab on" : "tab"}
|
|
181
|
-
onClick={() => setMode("signup")}
|
|
182
|
-
>
|
|
183
|
-
Sign up
|
|
184
|
-
</button>
|
|
185
|
-
</div>
|
|
186
|
-
|
|
187
|
-
<form onSubmit={onEmailAuth}>
|
|
188
|
-
{mode === "signup" ? (
|
|
189
|
-
<label>
|
|
190
|
-
Name
|
|
191
|
-
<input
|
|
192
|
-
value={name}
|
|
193
|
-
onChange={(event) => setName(event.target.value)}
|
|
194
|
-
placeholder="Ada"
|
|
195
|
-
/>
|
|
196
|
-
</label>
|
|
197
|
-
) : null}
|
|
198
|
-
<label>
|
|
199
|
-
Email
|
|
200
|
-
<input
|
|
201
|
-
type="email"
|
|
202
|
-
required
|
|
203
|
-
autoComplete="email"
|
|
204
|
-
value={email}
|
|
205
|
-
onChange={(event) => setEmail(event.target.value)}
|
|
206
|
-
/>
|
|
207
|
-
</label>
|
|
208
|
-
<label>
|
|
209
|
-
Password
|
|
210
|
-
<input
|
|
211
|
-
type="password"
|
|
212
|
-
required
|
|
213
|
-
minLength={12}
|
|
214
|
-
autoComplete={mode === "signup" ? "new-password" : "current-password"}
|
|
215
|
-
value={password}
|
|
216
|
-
onChange={(event) => setPassword(event.target.value)}
|
|
217
|
-
/>
|
|
218
|
-
</label>
|
|
219
|
-
<button type="submit" disabled={pending}>
|
|
220
|
-
{mode === "signup" ? "Create account" : "Sign in"}
|
|
221
|
-
</button>
|
|
222
|
-
</form>
|
|
223
|
-
|
|
224
|
-
<div className="or">or</div>
|
|
225
|
-
<button className="google" type="button" onClick={onGoogle} disabled={pending}>
|
|
226
|
-
Continue with Google
|
|
227
|
-
</button>
|
|
228
|
-
</main>
|
|
229
|
-
);
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
return (
|
|
233
|
-
<main className="chat">
|
|
234
|
-
<header>
|
|
235
|
-
<div>
|
|
236
|
-
<p className="eyebrow">Signed in</p>
|
|
237
|
-
<h1>{authorLabel(user)}</h1>
|
|
238
|
-
<p className="lede">{user.email}</p>
|
|
239
|
-
</div>
|
|
240
|
-
<button className="ghost" type="button" onClick={() => void onSignOut()}>
|
|
241
|
-
Sign out
|
|
242
|
-
</button>
|
|
243
|
-
</header>
|
|
244
|
-
{error ? <p className="error">{error}</p> : null}
|
|
245
|
-
<div className="transcript" ref={listRef}>
|
|
246
|
-
{messages.length === 0 ? <p className="empty">No messages yet. Say hello.</p> : null}
|
|
247
|
-
{messages.map((message) => {
|
|
248
|
-
const mine = message.userId === user.id;
|
|
249
|
-
return (
|
|
250
|
-
<article key={message.id} className={mine ? "bubble mine" : "bubble"}>
|
|
251
|
-
<div className="meta">
|
|
252
|
-
{authorLabel({ name: message.authorName, email: message.authorEmail })}
|
|
253
|
-
{message.createdAt
|
|
254
|
-
? ` · ${new Date(message.createdAt).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" })}`
|
|
255
|
-
: ""}
|
|
256
|
-
</div>
|
|
257
|
-
<p>{message.body}</p>
|
|
258
|
-
</article>
|
|
259
|
-
);
|
|
260
|
-
})}
|
|
261
|
-
</div>
|
|
262
|
-
<form className="composer" onSubmit={onSend}>
|
|
263
|
-
<input
|
|
264
|
-
required
|
|
265
|
-
maxLength={2000}
|
|
266
|
-
placeholder="Message the room…"
|
|
267
|
-
value={draft}
|
|
268
|
-
onChange={(event) => setDraft(event.target.value)}
|
|
269
|
-
/>
|
|
270
|
-
<button type="submit" disabled={pending || !draft.trim()}>
|
|
271
|
-
Send
|
|
272
|
-
</button>
|
|
273
|
-
</form>
|
|
274
|
-
</main>
|
|
275
|
-
);
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
createRoot(document.getElementById("root")!).render(
|
|
279
|
-
<StrictMode>
|
|
280
|
-
<App />
|
|
281
|
-
</StrictMode>,
|
|
282
|
-
);
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/** POST /api/launch — marks a rocket as launched. */
|
|
2
|
-
import { rockets } from "../database";
|
|
3
|
-
import { defineApi, eq, z } from "@robodev-ai/sdk";
|
|
4
|
-
|
|
5
|
-
const Rocket = z.object({
|
|
6
|
-
id: z.string(),
|
|
7
|
-
name: z.string(),
|
|
8
|
-
destinationId: z.string(),
|
|
9
|
-
launched: z.boolean(),
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
export const post = defineApi({
|
|
13
|
-
body: z.object({
|
|
14
|
-
id: z.string().uuid(),
|
|
15
|
-
}),
|
|
16
|
-
response: Rocket,
|
|
17
|
-
handler: async ({ db, body }) => {
|
|
18
|
-
const rows = await db
|
|
19
|
-
.update(rockets)
|
|
20
|
-
.set({ launched: true })
|
|
21
|
-
.where(eq(rockets.id, body.id))
|
|
22
|
-
.returning();
|
|
23
|
-
const row = rows[0];
|
|
24
|
-
if (!row) {
|
|
25
|
-
throw new Error("Rocket not found");
|
|
26
|
-
}
|
|
27
|
-
return Rocket.parse(row);
|
|
28
|
-
},
|
|
29
|
-
});
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/** GET /api/me — current project user (Robodev Auth required). */
|
|
2
|
-
import { defineApi, z } from "@robodev-ai/sdk";
|
|
3
|
-
|
|
4
|
-
export const get = defineApi({
|
|
5
|
-
auth: "required",
|
|
6
|
-
response: z.object({
|
|
7
|
-
user: z.object({
|
|
8
|
-
id: z.string(),
|
|
9
|
-
email: z.string(),
|
|
10
|
-
name: z.string().nullable().optional(),
|
|
11
|
-
}),
|
|
12
|
-
}),
|
|
13
|
-
handler: async ({ user }) => ({ user }),
|
|
14
|
-
});
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/** GET/POST /api/rockets — list (optional `?destinationId=`) and create rockets. */
|
|
2
|
-
import { rockets } from "../database";
|
|
3
|
-
import { defineApi, eq, z } from "@robodev-ai/sdk";
|
|
4
|
-
|
|
5
|
-
const Rocket = z.object({
|
|
6
|
-
id: z.string(),
|
|
7
|
-
name: z.string(),
|
|
8
|
-
destinationId: z.string(),
|
|
9
|
-
launched: z.boolean(),
|
|
10
|
-
});
|
|
11
|
-
|
|
12
|
-
export const get = defineApi({
|
|
13
|
-
query: z.object({
|
|
14
|
-
destinationId: z.string().optional(),
|
|
15
|
-
}),
|
|
16
|
-
response: z.array(Rocket),
|
|
17
|
-
handler: async ({ db, query }) => {
|
|
18
|
-
const rows = query.destinationId
|
|
19
|
-
? await db.select().from(rockets).where(eq(rockets.destinationId, query.destinationId))
|
|
20
|
-
: await db.select().from(rockets);
|
|
21
|
-
return Rocket.array().parse(rows);
|
|
22
|
-
},
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
export const post = defineApi({
|
|
26
|
-
body: z.object({
|
|
27
|
-
name: z.string().min(1),
|
|
28
|
-
destinationId: z.string().uuid(),
|
|
29
|
-
launched: z.boolean().optional(),
|
|
30
|
-
}),
|
|
31
|
-
response: Rocket,
|
|
32
|
-
handler: async ({ db, body }) => {
|
|
33
|
-
const [row] = await db
|
|
34
|
-
.insert(rockets)
|
|
35
|
-
.values({
|
|
36
|
-
name: body.name,
|
|
37
|
-
destinationId: body.destinationId,
|
|
38
|
-
launched: body.launched ?? false,
|
|
39
|
-
})
|
|
40
|
-
.returning();
|
|
41
|
-
return Rocket.parse(row);
|
|
42
|
-
},
|
|
43
|
-
});
|