@tscircuit/fake-snippets 0.0.1
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/.github/CODEOWNERS +1 -0
- package/.github/workflows/bun-formatcheck.yml +26 -0
- package/.github/workflows/bun-test.yml +28 -0
- package/.github/workflows/bun-typecheck.yml +26 -0
- package/.github/workflows/bundle-size-analysis.yml +79 -0
- package/.github/workflows/playwright-test.yml +37 -0
- package/.github/workflows/stale.yml +40 -0
- package/.github/workflows/update-snapshots.yml +49 -0
- package/CONTRIBUTING.md +59 -0
- package/LICENSE +21 -0
- package/README.md +113 -0
- package/biome.json +60 -0
- package/bun-tests/fake-snippets-api/fixtures/get-circuit-json.ts +148 -0
- package/bun-tests/fake-snippets-api/fixtures/get-test-server.ts +96 -0
- package/bun-tests/fake-snippets-api/fixtures/start-server.ts +44 -0
- package/bun-tests/fake-snippets-api/routes/accounts/get_account_balance.test.ts +18 -0
- package/bun-tests/fake-snippets-api/routes/health.test.ts +9 -0
- package/bun-tests/fake-snippets-api/routes/order_files/get.test.ts +48 -0
- package/bun-tests/fake-snippets-api/routes/order_files/upload.test.ts +77 -0
- package/bun-tests/fake-snippets-api/routes/orders/create.test.ts +19 -0
- package/bun-tests/fake-snippets-api/routes/orders/get.test.ts +38 -0
- package/bun-tests/fake-snippets-api/routes/orders/list.test.ts +30 -0
- package/bun-tests/fake-snippets-api/routes/orders/update.test.ts +46 -0
- package/bun-tests/fake-snippets-api/routes/snippets/add_star.test.ts +114 -0
- package/bun-tests/fake-snippets-api/routes/snippets/create.test.ts +28 -0
- package/bun-tests/fake-snippets-api/routes/snippets/delete.test.ts +106 -0
- package/bun-tests/fake-snippets-api/routes/snippets/download.test.ts +90 -0
- package/bun-tests/fake-snippets-api/routes/snippets/generate_from_jlcpcb.test.ts +25 -0
- package/bun-tests/fake-snippets-api/routes/snippets/get_image.test.ts +113 -0
- package/bun-tests/fake-snippets-api/routes/snippets/images.test.ts +112 -0
- package/bun-tests/fake-snippets-api/routes/snippets/list.test.ts +62 -0
- package/bun-tests/fake-snippets-api/routes/snippets/list_newest.test.ts +48 -0
- package/bun-tests/fake-snippets-api/routes/snippets/list_trending.test.ts +69 -0
- package/bun-tests/fake-snippets-api/routes/snippets/remove_star.test.ts +110 -0
- package/bun-tests/fake-snippets-api/routes/snippets/search.test.ts +75 -0
- package/bun-tests/fake-snippets-api/routes/snippets/star-count.test.ts +44 -0
- package/bun-tests/fake-snippets-api/routes/snippets/update.test.ts +116 -0
- package/bun-tests/parts-engine.test.ts +18 -0
- package/bun.lockb +0 -0
- package/bunfig.toml +2 -0
- package/components.json +20 -0
- package/dist/assets/editor_example_1-1000w.webp +0 -0
- package/dist/assets/editor_example_1-1200w.webp +0 -0
- package/dist/assets/editor_example_1-1600w.webp +0 -0
- package/dist/assets/editor_example_1-2000w.webp +0 -0
- package/dist/assets/editor_example_1-400w.webp +0 -0
- package/dist/assets/editor_example_1-600w.webp +0 -0
- package/dist/assets/editor_example_1-800w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-1000w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-1200w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-1600w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-2000w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-400w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-600w.webp +0 -0
- package/dist/assets/editor_example_1_more_square-800w.webp +0 -0
- package/dist/assets/editor_example_2-1000w.webp +0 -0
- package/dist/assets/editor_example_2-1200w.webp +0 -0
- package/dist/assets/editor_example_2-1600w.webp +0 -0
- package/dist/assets/editor_example_2-2000w.webp +0 -0
- package/dist/assets/editor_example_2-400w.webp +0 -0
- package/dist/assets/editor_example_2-600w.webp +0 -0
- package/dist/assets/editor_example_2-800w.webp +0 -0
- package/dist/assets/example_schematic-1000w.webp +0 -0
- package/dist/assets/example_schematic-1200w.webp +0 -0
- package/dist/assets/example_schematic-1600w.webp +0 -0
- package/dist/assets/example_schematic-2000w.webp +0 -0
- package/dist/assets/example_schematic-400w.webp +0 -0
- package/dist/assets/example_schematic-600w.webp +0 -0
- package/dist/assets/example_schematic-800w.webp +0 -0
- package/dist/bundle.js +3270 -0
- package/dist/robots.txt +9 -0
- package/dist/sitemap.xml +118 -0
- package/docs/CIRCUIT_JSON_SOURCE_COMPONENT_OVERVIEW.md +151 -0
- package/fake-snippets-api/README.md +6 -0
- package/fake-snippets-api/biome.json +47 -0
- package/fake-snippets-api/bun.lockb +0 -0
- package/fake-snippets-api/lib/db/autoload-dev-snippets.ts +84 -0
- package/fake-snippets-api/lib/db/autoload-snippets.json +24 -0
- package/fake-snippets-api/lib/db/db-client.ts +343 -0
- package/fake-snippets-api/lib/db/schema.ts +112 -0
- package/fake-snippets-api/lib/db/seed.ts +1608 -0
- package/fake-snippets-api/lib/middleware/with-ctx-error.ts +26 -0
- package/fake-snippets-api/lib/middleware/with-db.ts +15 -0
- package/fake-snippets-api/lib/middleware/with-error-handling.ts +24 -0
- package/fake-snippets-api/lib/middleware/with-optional-session-auth.ts +34 -0
- package/fake-snippets-api/lib/middleware/with-request-logging.ts +54 -0
- package/fake-snippets-api/lib/middleware/with-session-auth.ts +39 -0
- package/fake-snippets-api/lib/middleware/with-winter-spec.ts +24 -0
- package/fake-snippets-api/next-env.d.ts +5 -0
- package/fake-snippets-api/routes/api/accounts/get.ts +21 -0
- package/fake-snippets-api/routes/api/accounts/get_account_balance.ts +22 -0
- package/fake-snippets-api/routes/api/accounts/update.ts +32 -0
- package/fake-snippets-api/routes/api/ai/[...anyroute].ts +31 -0
- package/fake-snippets-api/routes/api/ai.ts +2 -0
- package/fake-snippets-api/routes/api/aistream/[...anyroute].ts +65 -0
- package/fake-snippets-api/routes/api/health.ts +9 -0
- package/fake-snippets-api/routes/api/internal/sessions/create_without_auth.ts +63 -0
- package/fake-snippets-api/routes/api/order_files/get.ts +28 -0
- package/fake-snippets-api/routes/api/order_files/upload.ts +43 -0
- package/fake-snippets-api/routes/api/orders/create.ts +41 -0
- package/fake-snippets-api/routes/api/orders/get.ts +28 -0
- package/fake-snippets-api/routes/api/orders/list.ts +15 -0
- package/fake-snippets-api/routes/api/orders/update.ts +50 -0
- package/fake-snippets-api/routes/api/snippets/add_star.ts +42 -0
- package/fake-snippets-api/routes/api/snippets/create.ts +55 -0
- package/fake-snippets-api/routes/api/snippets/delete.ts +41 -0
- package/fake-snippets-api/routes/api/snippets/download.ts +148 -0
- package/fake-snippets-api/routes/api/snippets/generate_from_jlcpcb.ts +55 -0
- package/fake-snippets-api/routes/api/snippets/get.ts +50 -0
- package/fake-snippets-api/routes/api/snippets/get_image.ts +65 -0
- package/fake-snippets-api/routes/api/snippets/images/[author]/[snippet_name]/[typeFormat].ts +74 -0
- package/fake-snippets-api/routes/api/snippets/list.ts +28 -0
- package/fake-snippets-api/routes/api/snippets/list_newest.ts +13 -0
- package/fake-snippets-api/routes/api/snippets/list_trending.ts +21 -0
- package/fake-snippets-api/routes/api/snippets/remove_star.ts +42 -0
- package/fake-snippets-api/routes/api/snippets/search.ts +18 -0
- package/fake-snippets-api/routes/api/snippets/update.ts +86 -0
- package/favicon.ico +0 -0
- package/index.html +23 -0
- package/landing.html +23 -0
- package/package.json +164 -0
- package/playwright-tests/ai-page.spec.ts +19 -0
- package/playwright-tests/cmd-click.spec.ts +43 -0
- package/playwright-tests/dashboard-page.spec.ts +10 -0
- package/playwright-tests/editor-page.spec.ts +15 -0
- package/playwright-tests/files-dialog.spec.ts +19 -0
- package/playwright-tests/footprint-dialog/footprint-dialog.spec.ts +27 -0
- package/playwright-tests/footprint-dialog/footprint-insertion.spec.ts +38 -0
- package/playwright-tests/footprint-dialog/footprint-preview.spec.ts +34 -0
- package/playwright-tests/footprint-dialog/footprint-selection.spec.ts +29 -0
- package/playwright-tests/handle-manual-edits.spec.ts +55 -0
- package/playwright-tests/home-page.spec.ts +10 -0
- package/playwright-tests/images.spec.ts +17 -0
- package/playwright-tests/manual-edits.spec.ts +89 -0
- package/playwright-tests/preview-page.spec.ts +14 -0
- package/playwright-tests/quickstart-page.spec.ts +10 -0
- package/playwright-tests/search-links.spec.ts +21 -0
- package/playwright-tests/search.spec.ts +27 -0
- package/playwright-tests/snapshots/ai-page.spec.ts-AI-Page-lg.png +0 -0
- package/playwright-tests/snapshots/ai-page.spec.ts-AI-Page-md.png +0 -0
- package/playwright-tests/snapshots/ai-page.spec.ts-AI-Page-xs.png +0 -0
- package/playwright-tests/snapshots/cmd-click.spec.ts-underlined-imports.png +0 -0
- package/playwright-tests/snapshots/dashboard-page.spec.ts-Dashboard-page-lg.png +0 -0
- package/playwright-tests/snapshots/dashboard-page.spec.ts-Dashboard-page-md.png +0 -0
- package/playwright-tests/snapshots/dashboard-page.spec.ts-Dashboard-page-xs.png +0 -0
- package/playwright-tests/snapshots/editor-page.spec.ts-editor-with-snippet.png +0 -0
- package/playwright-tests/snapshots/error-fallback.spec.ts-error-fallback-lg.png +0 -0
- package/playwright-tests/snapshots/error-fallback.spec.ts-error-fallback-md.png +0 -0
- package/playwright-tests/snapshots/error-fallback.spec.ts-error-fallback-xs.png +0 -0
- package/playwright-tests/snapshots/files-dialog.spec.ts-view-snippet-files.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-dialog.spec.ts-footprint-preview-lg.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-dialog.spec.ts-footprint-preview-md.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-dialog.spec.ts-footprint-preview-xs.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-insertion.spec.ts-footprint-insertion-lg.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-insertion.spec.ts-footprint-insertion-md.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-insertion.spec.ts-footprint-insertion-xs.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-preview.spec.ts-footprint-preview-lg.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-preview.spec.ts-footprint-preview-md.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-preview.spec.ts-footprint-preview-xs.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-selection.spec.ts-footprint-preview-lg.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-selection.spec.ts-footprint-preview-md.png +0 -0
- package/playwright-tests/snapshots/footprint-dialog/footprint-selection.spec.ts-footprint-preview-xs.png +0 -0
- package/playwright-tests/snapshots/handle-manual-edits.spec.ts-handle-manual-edits.png +0 -0
- package/playwright-tests/snapshots/home-page.spec.ts-Home-page-lg.png +0 -0
- package/playwright-tests/snapshots/home-page.spec.ts-Home-page-md.png +0 -0
- package/playwright-tests/snapshots/home-page.spec.ts-Home-page-xs.png +0 -0
- package/playwright-tests/snapshots/images.spec.ts-pcb-image.png +0 -0
- package/playwright-tests/snapshots/images.spec.ts-schematic-image.png +0 -0
- package/playwright-tests/snapshots/manual-edits.spec.ts-editor-manual-edits.png +0 -0
- package/playwright-tests/snapshots/manual-edits.spec.ts-manual-edits-view.png +0 -0
- package/playwright-tests/snapshots/preview-page.spec.ts-preview-snippet-pcb.png +0 -0
- package/playwright-tests/snapshots/preview-page.spec.ts-preview-snippet-schematic.png +0 -0
- package/playwright-tests/snapshots/quickstart-page.spec.ts-Quickstart-Pagelg.png +0 -0
- package/playwright-tests/snapshots/quickstart-page.spec.ts-Quickstart-Pagemd.png +0 -0
- package/playwright-tests/snapshots/quickstart-page.spec.ts-Quickstart-Pagexs.png +0 -0
- package/playwright-tests/snapshots/search-links.spec.ts-search-links.png +0 -0
- package/playwright-tests/snapshots/search.spec.ts-search-lg.png +0 -0
- package/playwright-tests/snapshots/search.spec.ts-search-md.png +0 -0
- package/playwright-tests/snapshots/search.spec.ts-search-xs.png +0 -0
- package/playwright-tests/snapshots/star.spec.ts-remove-star-button.png +0 -0
- package/playwright-tests/snapshots/star.spec.ts-star-button.png +0 -0
- package/playwright-tests/snapshots/update-description.spec.ts-update-description.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-after-lg.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-after-md.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-after-xs.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-before-lg.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-before-md.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-before-xs.png +0 -0
- package/playwright-tests/snapshots/view-snippet.spec.ts-view-snippet-files.png +0 -0
- package/playwright-tests/star.spec.ts +40 -0
- package/playwright-tests/update-description.spec.ts +18 -0
- package/playwright-tests/view-snippet.spec.ts +35 -0
- package/playwright-tests/viewports.ts +5 -0
- package/playwright.config.ts +27 -0
- package/postcss.config.js +6 -0
- package/public/robots.txt +9 -0
- package/renovate.json +24 -0
- package/scripts/generate-image-sizes.ts +58 -0
- package/scripts/generate-sitemap.ts +103 -0
- package/scripts/generate_bundle_stats.js +192 -0
- package/scripts/snapshot.ts +35 -0
- package/src/App.tsx +113 -0
- package/src/ContextProviders.tsx +9 -0
- package/src/assets/originals/editor_example_1.webp +0 -0
- package/src/assets/originals/editor_example_1_more_square.webp +0 -0
- package/src/assets/originals/editor_example_2.webp +0 -0
- package/src/assets/originals/example_schematic.webp +0 -0
- package/src/components/AiChatInterface.tsx +221 -0
- package/src/components/AiChatMessage.tsx +86 -0
- package/src/components/Analytics.tsx +30 -0
- package/src/components/BomTable.tsx +69 -0
- package/src/components/ChatInput.tsx +53 -0
- package/src/components/CircuitToSvgWithMouseControl.tsx +78 -0
- package/src/components/CmdKMenu.tsx +301 -0
- package/src/components/CodeAndPreview.tsx +258 -0
- package/src/components/CodeEditor.tsx +460 -0
- package/src/components/CodeEditorHeader.tsx +160 -0
- package/src/components/CreateNewSnippetWithAiHero.tsx +77 -0
- package/src/components/DownloadButtonAndMenu.tsx +212 -0
- package/src/components/EditorNav.tsx +428 -0
- package/src/components/ErrorFallback.tsx +25 -0
- package/src/components/ErrorTabContent.tsx +122 -0
- package/src/components/FAQ.tsx +113 -0
- package/src/components/Footer.tsx +134 -0
- package/src/components/Footer2.tsx +100 -0
- package/src/components/FootprintDialog.tsx +342 -0
- package/src/components/Header.tsx +187 -0
- package/src/components/Header2.tsx +135 -0
- package/src/components/HeaderDropdown.tsx +83 -0
- package/src/components/HeaderLogin.tsx +94 -0
- package/src/components/JLCPCBImportDialog.tsx +155 -0
- package/src/components/LandingHero.tsx +175 -0
- package/src/components/LatestSnippets.tsx +39 -0
- package/src/components/OptimizedImage.tsx +96 -0
- package/src/components/OrderPreviewContent.tsx +61 -0
- package/src/components/ParametersEditor.tsx +140 -0
- package/src/components/PcbViewerWithContainerHeight.tsx +47 -0
- package/src/components/PrefetchPageLink.tsx +45 -0
- package/src/components/PreviewContent.tsx +375 -0
- package/src/components/PreviewEmptyState.tsx +16 -0
- package/src/components/RunButton.tsx +27 -0
- package/src/components/SearchComponent.tsx +163 -0
- package/src/components/ShippingInformationForm.tsx +423 -0
- package/src/components/SnippetLink.tsx +37 -0
- package/src/components/StaticPreviewContent.tsx +89 -0
- package/src/components/StaticViewSnippetHeader.tsx +70 -0
- package/src/components/StaticViewSnippetSidebar.tsx +100 -0
- package/src/components/TableViewer/CircuitJsonTableViewer.tsx +316 -0
- package/src/components/TableViewer/ClickableText.tsx +21 -0
- package/src/components/TableViewer/HeaderCell.tsx +27 -0
- package/src/components/TableViewer/Modal.tsx +39 -0
- package/src/components/TrendingSnippetCarousel.tsx +77 -0
- package/src/components/TypeBadge.tsx +31 -0
- package/src/components/ViewSnippetHeader.tsx +144 -0
- package/src/components/ViewSnippetSidebar.tsx +162 -0
- package/src/components/dialogs/confirm-delete-snippet-dialog.tsx +80 -0
- package/src/components/dialogs/create-order-dialog.tsx +146 -0
- package/src/components/dialogs/create-use-dialog.tsx +34 -0
- package/src/components/dialogs/edit-description-dialog.tsx +96 -0
- package/src/components/dialogs/files-dialog.tsx +70 -0
- package/src/components/dialogs/import-snippet-dialog.tsx +84 -0
- package/src/components/dialogs/rename-snippet-dialog.tsx +81 -0
- package/src/components/dialogs/view-ts-files-dialog.tsx +89 -0
- package/src/components/ui/accordion.tsx +55 -0
- package/src/components/ui/alert-dialog.tsx +139 -0
- package/src/components/ui/alert.tsx +59 -0
- package/src/components/ui/aspect-ratio.tsx +5 -0
- package/src/components/ui/avatar.tsx +48 -0
- package/src/components/ui/badge.tsx +36 -0
- package/src/components/ui/breadcrumb.tsx +118 -0
- package/src/components/ui/button.tsx +58 -0
- package/src/components/ui/calendar.tsx +73 -0
- package/src/components/ui/card.tsx +76 -0
- package/src/components/ui/carousel.tsx +260 -0
- package/src/components/ui/chart.tsx +363 -0
- package/src/components/ui/checkbox.tsx +28 -0
- package/src/components/ui/collapsible.tsx +9 -0
- package/src/components/ui/combobox.tsx +178 -0
- package/src/components/ui/command.tsx +151 -0
- package/src/components/ui/context-menu.tsx +202 -0
- package/src/components/ui/dialog.tsx +120 -0
- package/src/components/ui/drawer.tsx +116 -0
- package/src/components/ui/dropdown-menu.tsx +203 -0
- package/src/components/ui/form.tsx +182 -0
- package/src/components/ui/hover-card.tsx +27 -0
- package/src/components/ui/input-otp.tsx +69 -0
- package/src/components/ui/input.tsx +25 -0
- package/src/components/ui/label.tsx +24 -0
- package/src/components/ui/menubar.tsx +238 -0
- package/src/components/ui/navigation-menu.tsx +129 -0
- package/src/components/ui/pagination.tsx +121 -0
- package/src/components/ui/popover.tsx +31 -0
- package/src/components/ui/progress.tsx +26 -0
- package/src/components/ui/radio-group.tsx +42 -0
- package/src/components/ui/resizable.tsx +43 -0
- package/src/components/ui/scroll-area.tsx +46 -0
- package/src/components/ui/searchable-select.tsx +94 -0
- package/src/components/ui/select.tsx +162 -0
- package/src/components/ui/separator.tsx +29 -0
- package/src/components/ui/sheet.tsx +141 -0
- package/src/components/ui/skeleton.tsx +18 -0
- package/src/components/ui/slider.tsx +26 -0
- package/src/components/ui/sonner.tsx +30 -0
- package/src/components/ui/switch.tsx +27 -0
- package/src/components/ui/table.tsx +120 -0
- package/src/components/ui/tabs.tsx +53 -0
- package/src/components/ui/textarea.tsx +24 -0
- package/src/components/ui/toast.tsx +128 -0
- package/src/components/ui/toaster.tsx +33 -0
- package/src/components/ui/toggle-group.tsx +59 -0
- package/src/components/ui/toggle.tsx +43 -0
- package/src/components/ui/tooltip.tsx +28 -0
- package/src/entry-server.tsx +12 -0
- package/src/hooks/use-account-balance.ts +24 -0
- package/src/hooks/use-ai-api.ts +35 -0
- package/src/hooks/use-axios.ts +20 -0
- package/src/hooks/use-code-completion-ai-api.ts +11 -0
- package/src/hooks/use-compiled-tsx.ts +37 -0
- package/src/hooks/use-copy-to-clipboard.ts +26 -0
- package/src/hooks/use-create-snippet-mutation.ts +62 -0
- package/src/hooks/use-current-snippet-id.ts +75 -0
- package/src/hooks/use-current-snippet.ts +24 -0
- package/src/hooks/use-global-store.ts +33 -0
- package/src/hooks/use-is-using-fake-api.ts +3 -0
- package/src/hooks/use-run-tsx/construct-circuit.tsx +64 -0
- package/src/hooks/use-run-tsx/eval-compiled-js.ts +9 -0
- package/src/hooks/use-run-tsx/index.tsx +251 -0
- package/src/hooks/use-save-snippet.ts +66 -0
- package/src/hooks/use-sign-in.ts +22 -0
- package/src/hooks/use-snippet-by-name.ts +25 -0
- package/src/hooks/use-snippet.ts +23 -0
- package/src/hooks/use-snippets-base-api-url.ts +3 -0
- package/src/hooks/use-toast.tsx +208 -0
- package/src/hooks/use-typecheck.ts +54 -0
- package/src/hooks/use-url-params.ts +31 -0
- package/src/hooks/use-warn-user-on-page-change.ts +23 -0
- package/src/hooks/useForkSnippetMutation.ts +52 -0
- package/src/index.css +21 -0
- package/src/lib/__tests__/constants.test.ts +66 -0
- package/src/lib/base64ToBytes.ts +5 -0
- package/src/lib/bytesToBase64.ts +4 -0
- package/src/lib/codemirror/basic-setup.ts +51 -0
- package/src/lib/constants.ts +12 -0
- package/src/lib/decodeUrlHashToText.ts +15 -0
- package/src/lib/defaultCodeForBlankCode.tsx +7 -0
- package/src/lib/download-fns/createBlobURL.ts +4 -0
- package/src/lib/download-fns/download-assembly-svg.ts +12 -0
- package/src/lib/download-fns/download-circuit-json-fn.ts +12 -0
- package/src/lib/download-fns/download-dsn-file-fn.ts +12 -0
- package/src/lib/download-fns/download-fabrication-files.ts +233 -0
- package/src/lib/download-fns/download-gltf.ts +49 -0
- package/src/lib/download-fns/download-kicad-files.ts +27 -0
- package/src/lib/download-fns/download-readable-netlist.ts +12 -0
- package/src/lib/download-fns/download-schematic-svg.ts +12 -0
- package/src/lib/download-fns/download-simple-route-json.ts +17 -0
- package/src/lib/encodeTextToUrlHash.ts +17 -0
- package/src/lib/get-snippet-template.ts +26 -0
- package/src/lib/handleManualEditsImport.tsx +65 -0
- package/src/lib/jlc-parts-engine.ts +69 -0
- package/src/lib/templates/blank-3d-model-template.ts +12 -0
- package/src/lib/templates/blank-circuit-board-template.ts +24 -0
- package/src/lib/templates/blank-footprint-template.ts +29 -0
- package/src/lib/templates/blank-package-template.ts +22 -0
- package/src/lib/templates/blinking-led-board-template.ts +63 -0
- package/src/lib/templates/manual-edits-template.ts +5 -0
- package/src/lib/templates/usb-c-led-flashlight-template.ts +22 -0
- package/src/lib/utils/checkIfManualEditsImported.ts +6 -0
- package/src/lib/utils/getSyntaxError.ts +13 -0
- package/src/lib/utils/index.ts +6 -0
- package/src/lib/utils/load-prettier.ts +18 -0
- package/src/lib/utils/parseFootprintParams.ts +52 -0
- package/src/lib/utils/parseJsonOrNull.ts +8 -0
- package/src/lib/utils/pcbManualEditEventHandler.ts +156 -0
- package/src/main.tsx +10 -0
- package/src/pages/ai.tsx +92 -0
- package/src/pages/authorize.tsx +54 -0
- package/src/pages/dashboard.tsx +165 -0
- package/src/pages/dev-login.tsx +68 -0
- package/src/pages/editor.tsx +28 -0
- package/src/pages/landing.tsx +236 -0
- package/src/pages/my-orders.tsx +54 -0
- package/src/pages/newest.tsx +16 -0
- package/src/pages/preview.tsx +70 -0
- package/src/pages/quickstart.tsx +198 -0
- package/src/pages/search.tsx +26 -0
- package/src/pages/settings.tsx +25 -0
- package/src/pages/user-profile.tsx +97 -0
- package/src/pages/view-order.tsx +123 -0
- package/src/pages/view-snippet.tsx +149 -0
- package/src/prettier.ts +9 -0
- package/src/vite-env.d.ts +1 -0
- package/tailwind.config.js +47 -0
- package/tsconfig.json +30 -0
- package/vercel.json +50 -0
- package/vite.config.ts +146 -0
- package/winterspec.config.ts +6 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Middleware } from "winterspec/middleware"
|
|
2
|
+
|
|
3
|
+
export type CtxErrorFn = (
|
|
4
|
+
status: number,
|
|
5
|
+
error_payload: {
|
|
6
|
+
error_code: string
|
|
7
|
+
message: string
|
|
8
|
+
},
|
|
9
|
+
) => Response
|
|
10
|
+
|
|
11
|
+
export const withCtxError: Middleware<
|
|
12
|
+
{},
|
|
13
|
+
{
|
|
14
|
+
error: CtxErrorFn
|
|
15
|
+
}
|
|
16
|
+
> = async (req, ctx, next) => {
|
|
17
|
+
ctx.error = (status, error_payload) => {
|
|
18
|
+
return new Response(JSON.stringify({ error: error_payload }), {
|
|
19
|
+
status,
|
|
20
|
+
headers: {
|
|
21
|
+
"Content-Type": "application/json",
|
|
22
|
+
},
|
|
23
|
+
})
|
|
24
|
+
}
|
|
25
|
+
return next(req, ctx)
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DbClient } from "fake-snippets-api/lib/db/db-client"
|
|
2
|
+
import { createDatabase } from "fake-snippets-api/lib/db/db-client"
|
|
3
|
+
import type { Middleware } from "winterspec"
|
|
4
|
+
|
|
5
|
+
export const withDb: Middleware<
|
|
6
|
+
{},
|
|
7
|
+
{
|
|
8
|
+
db: DbClient
|
|
9
|
+
}
|
|
10
|
+
> = async (req, ctx, next) => {
|
|
11
|
+
if (!ctx.db) {
|
|
12
|
+
ctx.db = createDatabase()
|
|
13
|
+
}
|
|
14
|
+
return next(req, ctx)
|
|
15
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Middleware } from "winterspec/middleware"
|
|
2
|
+
import kleur from "kleur"
|
|
3
|
+
|
|
4
|
+
export const withErrorHandling: Middleware<{}, {}> = async (req, ctx, next) => {
|
|
5
|
+
try {
|
|
6
|
+
return await next(req, ctx)
|
|
7
|
+
} catch (error: any) {
|
|
8
|
+
console.error(kleur.red("Intercepted error:"), error)
|
|
9
|
+
// If error is a Response, return it
|
|
10
|
+
if (error instanceof Response) {
|
|
11
|
+
return error
|
|
12
|
+
}
|
|
13
|
+
return (ctx as any).json(
|
|
14
|
+
{
|
|
15
|
+
ok: false,
|
|
16
|
+
error: {
|
|
17
|
+
message: error?.message,
|
|
18
|
+
error_code: error?.error_code ?? "internal_server_error",
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
{ status: error?.status || 500 },
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { Middleware } from "winterspec/middleware"
|
|
2
|
+
import { CtxErrorFn } from "./with-ctx-error"
|
|
3
|
+
|
|
4
|
+
export const withOptionalSessionAuth: Middleware<
|
|
5
|
+
{
|
|
6
|
+
error: CtxErrorFn
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
auth?: {
|
|
10
|
+
type: "session"
|
|
11
|
+
account_id: string
|
|
12
|
+
personal_org_id: string
|
|
13
|
+
github_username: string
|
|
14
|
+
session_id: string
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{}
|
|
18
|
+
> = async (req, ctx, next) => {
|
|
19
|
+
if (req.method === "OPTIONS") return next(req, ctx)
|
|
20
|
+
|
|
21
|
+
const token = req.headers.get("authorization")?.split("Bearer ")?.[1]
|
|
22
|
+
|
|
23
|
+
if (token) {
|
|
24
|
+
ctx.auth = {
|
|
25
|
+
type: "session",
|
|
26
|
+
account_id: "account-1234",
|
|
27
|
+
personal_org_id: "org-1234",
|
|
28
|
+
github_username: "testuser",
|
|
29
|
+
session_id: "session-1234",
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
return next(req, ctx)
|
|
34
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Middleware } from "winterspec/middleware"
|
|
2
|
+
import kleur from "kleur"
|
|
3
|
+
|
|
4
|
+
// ENABLE COLORS ALWAYS
|
|
5
|
+
kleur.enabled = true
|
|
6
|
+
|
|
7
|
+
const colorStatus = (status: number) => {
|
|
8
|
+
if (status >= 500) {
|
|
9
|
+
return kleur.red(status.toString())
|
|
10
|
+
}
|
|
11
|
+
if (status >= 400) {
|
|
12
|
+
return kleur.yellow(status.toString())
|
|
13
|
+
}
|
|
14
|
+
return kleur.green(status.toString())
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface Logger {
|
|
18
|
+
error: (...args: any[]) => void
|
|
19
|
+
info: (...args: any[]) => void
|
|
20
|
+
warn: (...args: any[]) => void
|
|
21
|
+
debug: (...args: any[]) => void
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const withRequestLogging: Middleware<
|
|
25
|
+
{},
|
|
26
|
+
{
|
|
27
|
+
logger: Logger
|
|
28
|
+
}
|
|
29
|
+
> = async (req, ctx, next) => {
|
|
30
|
+
if (!ctx.logger) {
|
|
31
|
+
ctx.logger = {
|
|
32
|
+
error: (...args: any[]) => console.error(...args),
|
|
33
|
+
info: (...args: any[]) => console.log(...args),
|
|
34
|
+
warn: (...args: any[]) => console.warn(...args),
|
|
35
|
+
debug: (...args: any[]) => console.log(...args),
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
try {
|
|
39
|
+
ctx.logger.info(kleur.blue(`> ${req.method} ${req.url}`))
|
|
40
|
+
const response = await next(req, ctx)
|
|
41
|
+
try {
|
|
42
|
+
const responseBody = await response.clone().text()
|
|
43
|
+
ctx.logger.info(
|
|
44
|
+
`< ${colorStatus(response.status)} ${kleur.gray(responseBody.slice(0, 40).replace(/(\r\n|\n|\r)/gm, ""))}`,
|
|
45
|
+
)
|
|
46
|
+
} catch (e) {
|
|
47
|
+
ctx.logger.info(`< ${colorStatus(response.status)}`)
|
|
48
|
+
}
|
|
49
|
+
return response
|
|
50
|
+
} catch (e: any) {
|
|
51
|
+
ctx.logger.info(kleur.red(`< ERROR ${e.toString().slice(0, 50)}...`))
|
|
52
|
+
throw e
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { Middleware } from "winterspec/middleware"
|
|
2
|
+
import { CtxErrorFn } from "./with-ctx-error"
|
|
3
|
+
|
|
4
|
+
export const withSessionAuth: Middleware<
|
|
5
|
+
{
|
|
6
|
+
error: CtxErrorFn
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
auth: {
|
|
10
|
+
type: "session"
|
|
11
|
+
account_id: string
|
|
12
|
+
personal_org_id: string
|
|
13
|
+
github_username: string
|
|
14
|
+
session_id: string
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{}
|
|
18
|
+
> = async (req, ctx, next) => {
|
|
19
|
+
if (req.method === "OPTIONS") return next(req, ctx)
|
|
20
|
+
|
|
21
|
+
const token = req.headers.get("authorization")?.split("Bearer ")?.[1]
|
|
22
|
+
|
|
23
|
+
if (!token) {
|
|
24
|
+
return ctx.error(401, {
|
|
25
|
+
error_code: "no_token",
|
|
26
|
+
message: "No token provided",
|
|
27
|
+
})
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
ctx.auth = {
|
|
31
|
+
type: "session",
|
|
32
|
+
account_id: "account-1234",
|
|
33
|
+
personal_org_id: "org-1234",
|
|
34
|
+
github_username: "testuser",
|
|
35
|
+
session_id: "session-1234",
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return next(req, ctx)
|
|
39
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { createWithWinterSpec } from "winterspec"
|
|
2
|
+
import { withDb } from "./with-db"
|
|
3
|
+
import { createWithDefaultExceptionHandling } from "winterspec/middleware"
|
|
4
|
+
import { withCtxError } from "./with-ctx-error"
|
|
5
|
+
import { withSessionAuth } from "./with-session-auth"
|
|
6
|
+
import { withOptionalSessionAuth } from "./with-optional-session-auth"
|
|
7
|
+
import { withErrorHandling } from "./with-error-handling"
|
|
8
|
+
import { withRequestLogging } from "./with-request-logging"
|
|
9
|
+
|
|
10
|
+
export const withRouteSpec = createWithWinterSpec({
|
|
11
|
+
apiName: "tscircuit Snippets API",
|
|
12
|
+
productionServerUrl: "https://snippets.tscircuit.com/api",
|
|
13
|
+
beforeAuthMiddleware: [withRequestLogging, withErrorHandling, withCtxError],
|
|
14
|
+
authMiddleware: {
|
|
15
|
+
session: withSessionAuth,
|
|
16
|
+
optional_session: withOptionalSessionAuth,
|
|
17
|
+
},
|
|
18
|
+
afterAuthMiddleware: [
|
|
19
|
+
withDb,
|
|
20
|
+
createWithDefaultExceptionHandling({
|
|
21
|
+
includeStackTraceInResponse: true,
|
|
22
|
+
}),
|
|
23
|
+
],
|
|
24
|
+
})
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import { accountSchema } from "fake-snippets-api/lib/db/schema"
|
|
4
|
+
|
|
5
|
+
export default withRouteSpec({
|
|
6
|
+
methods: ["GET"],
|
|
7
|
+
auth: "session",
|
|
8
|
+
jsonResponse: z.object({
|
|
9
|
+
account: accountSchema,
|
|
10
|
+
}),
|
|
11
|
+
})(async (req, ctx) => {
|
|
12
|
+
const account = ctx.db.getAccount(ctx.auth.account_id)
|
|
13
|
+
if (!account) {
|
|
14
|
+
return ctx.error(404, {
|
|
15
|
+
error_code: "account_not_found",
|
|
16
|
+
message: "Account not found",
|
|
17
|
+
})
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return ctx.json({ account })
|
|
21
|
+
})
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
|
|
4
|
+
export default withRouteSpec({
|
|
5
|
+
methods: ["GET"],
|
|
6
|
+
auth: "session",
|
|
7
|
+
jsonResponse: z.object({
|
|
8
|
+
account_balance: z.object({
|
|
9
|
+
monthly_ai_budget_used_usd: z.number(),
|
|
10
|
+
}),
|
|
11
|
+
}),
|
|
12
|
+
})(async (req, ctx) => {
|
|
13
|
+
// For this example, we'll return a mock balance
|
|
14
|
+
// In a real implementation, you would fetch this from a database or external service
|
|
15
|
+
const mockBalance = {
|
|
16
|
+
monthly_ai_budget_used_usd: 2.5,
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return ctx.json({
|
|
20
|
+
account_balance: mockBalance,
|
|
21
|
+
})
|
|
22
|
+
})
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import {
|
|
4
|
+
accountSchema,
|
|
5
|
+
shippingInfoSchema,
|
|
6
|
+
} from "fake-snippets-api/lib/db/schema"
|
|
7
|
+
|
|
8
|
+
export default withRouteSpec({
|
|
9
|
+
methods: ["POST"],
|
|
10
|
+
auth: "session",
|
|
11
|
+
jsonBody: z.object({
|
|
12
|
+
shippingInfo: shippingInfoSchema,
|
|
13
|
+
}),
|
|
14
|
+
jsonResponse: z.object({
|
|
15
|
+
account: accountSchema,
|
|
16
|
+
}),
|
|
17
|
+
})(async (req, ctx) => {
|
|
18
|
+
const { shippingInfo } = req.jsonBody
|
|
19
|
+
|
|
20
|
+
const updatedAccount = ctx.db.updateAccount(ctx.auth.account_id, {
|
|
21
|
+
shippingInfo,
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
if (!updatedAccount) {
|
|
25
|
+
return ctx.error(404, {
|
|
26
|
+
error_code: "account_not_found",
|
|
27
|
+
message: "Account not found",
|
|
28
|
+
})
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return ctx.json({ account: updatedAccount })
|
|
32
|
+
})
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Forward request to anthropic
|
|
3
|
+
*/
|
|
4
|
+
export default async (req: Request) => {
|
|
5
|
+
const url = new URL(req.url)
|
|
6
|
+
const anthropicApiKey = process.env.ANTHROPIC_API_KEY
|
|
7
|
+
|
|
8
|
+
if (!anthropicApiKey) {
|
|
9
|
+
return new Response("Anthropic API key is not set", { status: 500 })
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const anthropicUrl =
|
|
13
|
+
"https://api.anthropic.com" + url.pathname.replace(/^\/api\/ai/, "")
|
|
14
|
+
|
|
15
|
+
const headers = new Headers(req.headers)
|
|
16
|
+
headers.set("x-api-key", `${anthropicApiKey}`)
|
|
17
|
+
|
|
18
|
+
console.log("sending request to anthropic")
|
|
19
|
+
const response = await fetch(anthropicUrl, {
|
|
20
|
+
method: req.method,
|
|
21
|
+
headers: headers,
|
|
22
|
+
body: req.body,
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
duplex: "half",
|
|
25
|
+
}).then((r) => r.json())
|
|
26
|
+
|
|
27
|
+
return new Response(JSON.stringify(response), {
|
|
28
|
+
status: 200,
|
|
29
|
+
headers: { "Content-Type": "application/json" },
|
|
30
|
+
})
|
|
31
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ReadableStream } from "stream/web"
|
|
2
|
+
|
|
3
|
+
export default async (req: Request) => {
|
|
4
|
+
const url = new URL(req.url)
|
|
5
|
+
const anthropicApiKey = process.env.ANTHROPIC_API_KEY
|
|
6
|
+
|
|
7
|
+
if (!anthropicApiKey) {
|
|
8
|
+
return new Response("Anthropic API key is not set", { status: 500 })
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const anthropicUrl =
|
|
12
|
+
"https://api.anthropic.com" + url.pathname.replace(/^\/api\/ai/, "")
|
|
13
|
+
|
|
14
|
+
const headers = new Headers(req.headers)
|
|
15
|
+
headers.set("x-api-key", `${anthropicApiKey}`)
|
|
16
|
+
headers.set("Accept", "text/event-stream")
|
|
17
|
+
headers.set("Cache-Control", "no-cache")
|
|
18
|
+
headers.set("Connection", "keep-alive")
|
|
19
|
+
|
|
20
|
+
console.log("sending request to anthropic")
|
|
21
|
+
const response = await fetch(anthropicUrl, {
|
|
22
|
+
method: req.method,
|
|
23
|
+
headers: headers,
|
|
24
|
+
body: req.body,
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
duplex: "half",
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
// Check if the response is successful
|
|
30
|
+
if (!response.ok) {
|
|
31
|
+
return new Response(
|
|
32
|
+
`Anthropic API returned an error: ${response.status} ${response.statusText}`,
|
|
33
|
+
{
|
|
34
|
+
status: response.status,
|
|
35
|
+
},
|
|
36
|
+
)
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Create a ReadableStream to process the response
|
|
40
|
+
const stream = new ReadableStream({
|
|
41
|
+
async start(controller) {
|
|
42
|
+
const reader = response.body!.getReader()
|
|
43
|
+
|
|
44
|
+
try {
|
|
45
|
+
while (true) {
|
|
46
|
+
const { done, value } = await reader.read()
|
|
47
|
+
if (done) break
|
|
48
|
+
controller.enqueue(value)
|
|
49
|
+
}
|
|
50
|
+
} finally {
|
|
51
|
+
reader.releaseLock()
|
|
52
|
+
controller.close()
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
})
|
|
56
|
+
|
|
57
|
+
// Return a streaming response
|
|
58
|
+
return new Response(stream as any, {
|
|
59
|
+
headers: {
|
|
60
|
+
"Content-Type": "text/event-stream",
|
|
61
|
+
"Cache-Control": "no-cache",
|
|
62
|
+
Connection: "keep-alive",
|
|
63
|
+
},
|
|
64
|
+
})
|
|
65
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
|
|
4
|
+
export default withRouteSpec({
|
|
5
|
+
methods: ["GET"],
|
|
6
|
+
jsonResponse: z.object({ ok: z.boolean() }),
|
|
7
|
+
})(async (req: any, ctx: any) => {
|
|
8
|
+
return ctx.json({ ok: true })
|
|
9
|
+
})
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import ms from "ms"
|
|
4
|
+
import { SignJWT } from "jose"
|
|
5
|
+
|
|
6
|
+
export default withRouteSpec({
|
|
7
|
+
methods: ["POST"],
|
|
8
|
+
auth: "none",
|
|
9
|
+
jsonBody: z
|
|
10
|
+
.object({
|
|
11
|
+
account_id: z.string(),
|
|
12
|
+
})
|
|
13
|
+
.or(
|
|
14
|
+
z.object({
|
|
15
|
+
github_username: z.string(),
|
|
16
|
+
}),
|
|
17
|
+
),
|
|
18
|
+
jsonResponse: z.object({
|
|
19
|
+
session: z.object({
|
|
20
|
+
session_id: z.string(),
|
|
21
|
+
account_id: z.string(),
|
|
22
|
+
expires_at: z.string(),
|
|
23
|
+
is_cli_session: z.boolean(),
|
|
24
|
+
token: z.string(),
|
|
25
|
+
}),
|
|
26
|
+
}),
|
|
27
|
+
})(async (req, ctx) => {
|
|
28
|
+
let account
|
|
29
|
+
if ("account_id" in req.jsonBody) {
|
|
30
|
+
account = ctx.db.getAccount(req.jsonBody.account_id)
|
|
31
|
+
} else {
|
|
32
|
+
account = ctx.db.getAccount(req.jsonBody.github_username)
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
if (!account) {
|
|
36
|
+
return ctx.error(404, {
|
|
37
|
+
error_code: "account_not_found",
|
|
38
|
+
message: "Account not found",
|
|
39
|
+
})
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const new_session = ctx.db.createSession({
|
|
43
|
+
expires_at: new Date(Date.now() + ms("60 day")).toISOString(),
|
|
44
|
+
account_id: account.account_id,
|
|
45
|
+
is_cli_session: false,
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
const token = await new SignJWT({
|
|
49
|
+
account_id: account.account_id,
|
|
50
|
+
session_id: new_session.session_id,
|
|
51
|
+
github_username: account.github_username,
|
|
52
|
+
})
|
|
53
|
+
.setProtectedHeader({ alg: "HS256" })
|
|
54
|
+
.setExpirationTime(new Date(Date.now() + ms("60 day")).toISOString())
|
|
55
|
+
.sign(new TextEncoder().encode(process.env.JWT_SECRET || ""))
|
|
56
|
+
|
|
57
|
+
return ctx.json({
|
|
58
|
+
session: {
|
|
59
|
+
...new_session,
|
|
60
|
+
token,
|
|
61
|
+
},
|
|
62
|
+
})
|
|
63
|
+
})
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import { orderFileSchema } from "fake-snippets-api/lib/db/schema"
|
|
4
|
+
|
|
5
|
+
export default withRouteSpec({
|
|
6
|
+
methods: ["GET"],
|
|
7
|
+
auth: "session",
|
|
8
|
+
queryParams: z.object({
|
|
9
|
+
order_file_id: z.string(),
|
|
10
|
+
}),
|
|
11
|
+
jsonResponse: z.object({
|
|
12
|
+
order_file: orderFileSchema,
|
|
13
|
+
}),
|
|
14
|
+
})(async (req, ctx) => {
|
|
15
|
+
const { order_file_id } = req.query
|
|
16
|
+
|
|
17
|
+
const orderFile = ctx.db.getOrderFileById(order_file_id)
|
|
18
|
+
if (!orderFile) {
|
|
19
|
+
return ctx.error(404, {
|
|
20
|
+
error_code: "order_file_not_found",
|
|
21
|
+
message: "Order file not found",
|
|
22
|
+
})
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return ctx.json({
|
|
26
|
+
order_file: orderFile,
|
|
27
|
+
})
|
|
28
|
+
})
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import { orderFileSchema } from "fake-snippets-api/lib/db/schema"
|
|
4
|
+
|
|
5
|
+
export default withRouteSpec({
|
|
6
|
+
methods: ["POST"],
|
|
7
|
+
auth: "session",
|
|
8
|
+
jsonBody: z.object({
|
|
9
|
+
order_id: z.string(),
|
|
10
|
+
content_base64: z.string(),
|
|
11
|
+
is_gerbers_zip: z.boolean().optional(),
|
|
12
|
+
for_provider: z.string().optional(),
|
|
13
|
+
}),
|
|
14
|
+
jsonResponse: z.object({
|
|
15
|
+
order_file: orderFileSchema,
|
|
16
|
+
}),
|
|
17
|
+
})(async (req, ctx) => {
|
|
18
|
+
const { order_id, content_base64, is_gerbers_zip, for_provider } =
|
|
19
|
+
req.jsonBody
|
|
20
|
+
|
|
21
|
+
const order = ctx.db.getOrderById(order_id)
|
|
22
|
+
if (!order) {
|
|
23
|
+
return ctx.error(404, {
|
|
24
|
+
error_code: "order_not_found",
|
|
25
|
+
message: "Order not found",
|
|
26
|
+
})
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const newOrderFile = {
|
|
30
|
+
order_id,
|
|
31
|
+
is_gerbers_zip: is_gerbers_zip || false,
|
|
32
|
+
file_content: Buffer.from(content_base64, "base64"),
|
|
33
|
+
content_type: "base64",
|
|
34
|
+
for_provider: for_provider || null,
|
|
35
|
+
uploaded_at: new Date().toISOString(),
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const orderFile = ctx.db.addOrderFile(newOrderFile)
|
|
39
|
+
|
|
40
|
+
return ctx.json({
|
|
41
|
+
order_file: orderFile,
|
|
42
|
+
})
|
|
43
|
+
})
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import { orderSchema } from "fake-snippets-api/lib/db/schema"
|
|
4
|
+
|
|
5
|
+
export default withRouteSpec({
|
|
6
|
+
methods: ["POST"],
|
|
7
|
+
auth: "session",
|
|
8
|
+
jsonBody: z.object({
|
|
9
|
+
circuit_json: z.array(z.record(z.any())),
|
|
10
|
+
}),
|
|
11
|
+
jsonResponse: z.object({
|
|
12
|
+
order: orderSchema,
|
|
13
|
+
}),
|
|
14
|
+
})(async (req, ctx) => {
|
|
15
|
+
const { circuit_json } = req.jsonBody
|
|
16
|
+
|
|
17
|
+
const newOrder = {
|
|
18
|
+
account_id: ctx.auth.account_id,
|
|
19
|
+
is_draft: true,
|
|
20
|
+
is_pending_validation_by_fab: false,
|
|
21
|
+
is_pending_review_by_fab: false,
|
|
22
|
+
is_validated_by_fab: false,
|
|
23
|
+
is_approved_by_fab_review: false,
|
|
24
|
+
is_approved_by_orderer: false,
|
|
25
|
+
is_in_production: false,
|
|
26
|
+
is_shipped: false,
|
|
27
|
+
is_cancelled: false,
|
|
28
|
+
should_be_blank_pcb: false,
|
|
29
|
+
should_include_stencil: false,
|
|
30
|
+
jlcpcb_order_params: {},
|
|
31
|
+
circuit_json,
|
|
32
|
+
created_at: new Date().toISOString(),
|
|
33
|
+
updated_at: new Date().toISOString(),
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const order = ctx.db.addOrder(newOrder)
|
|
37
|
+
|
|
38
|
+
return ctx.json({
|
|
39
|
+
order,
|
|
40
|
+
})
|
|
41
|
+
})
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import { orderSchema } from "fake-snippets-api/lib/db/schema"
|
|
4
|
+
|
|
5
|
+
export default withRouteSpec({
|
|
6
|
+
methods: ["GET"],
|
|
7
|
+
auth: "session",
|
|
8
|
+
queryParams: z.object({
|
|
9
|
+
order_id: z.string(),
|
|
10
|
+
}),
|
|
11
|
+
jsonResponse: z.object({
|
|
12
|
+
order: orderSchema,
|
|
13
|
+
}),
|
|
14
|
+
})(async (req, ctx) => {
|
|
15
|
+
const { order_id } = req.query
|
|
16
|
+
|
|
17
|
+
const order = ctx.db.getOrderById(order_id)
|
|
18
|
+
if (!order) {
|
|
19
|
+
return ctx.error(404, {
|
|
20
|
+
error_code: "order_not_found",
|
|
21
|
+
message: "Order not found",
|
|
22
|
+
})
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return ctx.json({
|
|
26
|
+
order,
|
|
27
|
+
})
|
|
28
|
+
})
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { withRouteSpec } from "fake-snippets-api/lib/middleware/with-winter-spec"
|
|
2
|
+
import { z } from "zod"
|
|
3
|
+
import { orderSchema } from "fake-snippets-api/lib/db/schema"
|
|
4
|
+
|
|
5
|
+
export default withRouteSpec({
|
|
6
|
+
methods: ["GET"],
|
|
7
|
+
auth: "session",
|
|
8
|
+
jsonResponse: z.object({
|
|
9
|
+
orders: z.array(orderSchema),
|
|
10
|
+
}),
|
|
11
|
+
})(async (req, ctx) => {
|
|
12
|
+
return ctx.json({
|
|
13
|
+
orders: ctx.db.orders.filter((o) => o.account_id === ctx.auth.account_id),
|
|
14
|
+
})
|
|
15
|
+
})
|