@tomako/tools-runtime 0.1.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/README.md +12 -0
- package/package.json +629 -0
- package/src/assets/icons/brands/social/bluesky-icon.tsx +9 -0
- package/src/assets/icons/brands/social/facebook-icon.tsx +9 -0
- package/src/assets/icons/brands/social/index.ts +8 -0
- package/src/assets/icons/brands/social/instagram-icon.tsx +9 -0
- package/src/assets/icons/brands/social/linkedin-icon.tsx +9 -0
- package/src/assets/icons/brands/social/threads-icon.tsx +9 -0
- package/src/assets/icons/brands/social/tiktok-icon.tsx +10 -0
- package/src/assets/icons/brands/social/x-icon.tsx +9 -0
- package/src/assets/icons/brands/social/youtube-icon.tsx +9 -0
- package/src/assets/icons/social-profile/facebook-icon.tsx +12 -0
- package/src/assets/icons/social-profile/index.ts +29 -0
- package/src/assets/icons/social-profile/instagram-icon.tsx +18 -0
- package/src/assets/icons/social-profile/linkedin-icon.tsx +12 -0
- package/src/assets/icons/social-profile/tiktok-icon.tsx +12 -0
- package/src/assets/icons/social-profile/x-icon.tsx +13 -0
- package/src/assets/icons/social-profile/youtube-icon.tsx +12 -0
- package/src/components/tools/engine/form-builder.tsx +219 -0
- package/src/components/tools/engine/package-widget-loader.tsx +38 -0
- package/src/components/tools/engine/package-widget-runtime.tsx +409 -0
- package/src/components/tools/engine/package-widget.tsx +77 -0
- package/src/components/tools/engine/result-view.tsx +596 -0
- package/src/components/tools/engine/use-legacy-llm-task.ts +64 -0
- package/src/components/tools/engine/use-tool-task.ts +195 -0
- package/src/components/tools/market-forecast-report.tsx +1150 -0
- package/src/components/tools/registry.ts +13 -0
- package/src/components/tools/workspace/index.ts +39 -0
- package/src/components/tools/workspace/tool-action-bar.tsx +99 -0
- package/src/components/tools/workspace/tool-empty-panel.tsx +32 -0
- package/src/components/tools/workspace/tool-error-panel.tsx +40 -0
- package/src/components/tools/workspace/tool-field.tsx +124 -0
- package/src/components/tools/workspace/tool-file-upload.tsx +112 -0
- package/src/components/tools/workspace/tool-form-section.tsx +21 -0
- package/src/components/tools/workspace/tool-form-shell.tsx +36 -0
- package/src/components/tools/workspace/tool-loading-panel.tsx +269 -0
- package/src/components/tools/workspace/tool-option-row.tsx +97 -0
- package/src/components/tools/workspace/tool-preview-panel.tsx +31 -0
- package/src/components/tools/workspace/tool-result-actions.tsx +67 -0
- package/src/components/tools/workspace/tool-result-file-actions.ts +31 -0
- package/src/components/tools/workspace/tool-result-header.tsx +39 -0
- package/src/components/tools/workspace/tool-status.tsx +13 -0
- package/src/components/tools/workspace/tool-workspace-layout.tsx +226 -0
- package/src/constants/LKS.ts +29 -0
- package/src/constants/related-tools.ts +18 -0
- package/src/constants/social-profile-kit.ts +284 -0
- package/src/constants/tool-assets.ts +7 -0
- package/src/env.d.ts +3 -0
- package/src/features/tools/_templates/standard-tool.container.tsx +90 -0
- package/src/features/tools/app-icon-resizer/app-icon-resizer.container.tsx +11 -0
- package/src/features/tools/app-icon-resizer/app-icon-resizer.spec.ts +15 -0
- package/src/features/tools/app-icon-resizer/widget/app-icon-resizer.tsx +444 -0
- package/src/features/tools/app-icon-resizer/widget/constants.ts +19 -0
- package/src/features/tools/app-icon-resizer/widget/helpers.ts +314 -0
- package/src/features/tools/app-icon-resizer/widget/index.ts +7 -0
- package/src/features/tools/app-icon-resizer/widget/platform-icons.tsx +59 -0
- package/src/features/tools/app-icon-resizer/widget/preview-dialogs.tsx +139 -0
- package/src/features/tools/app-icon-resizer/widget/result-shell.tsx +165 -0
- package/src/features/tools/app-icon-resizer/widget/types.ts +36 -0
- package/src/features/tools/app-store-screenshot-generator/app-store-screenshot-generator.container.tsx +108 -0
- package/src/features/tools/app-store-screenshot-generator/app-store-screenshot-generator.spec.ts +14 -0
- package/src/features/tools/app-store-screenshot-generator/config.ts +3 -0
- package/src/features/tools/app-store-screenshot-generator/widget/app-store-screenshot-generator.tsx +1250 -0
- package/src/features/tools/app-store-screenshot-generator/widget/asset-slots.ts +76 -0
- package/src/features/tools/app-store-screenshot-generator/widget/constants.ts +43 -0
- package/src/features/tools/app-store-screenshot-generator/widget/form-controls.tsx +214 -0
- package/src/features/tools/app-store-screenshot-generator/widget/generation.ts +528 -0
- package/src/features/tools/app-store-screenshot-generator/widget/index.ts +7 -0
- package/src/features/tools/app-store-screenshot-generator/widget/input-media.ts +175 -0
- package/src/features/tools/app-store-screenshot-generator/widget/types.ts +60 -0
- package/src/features/tools/app-store-screenshot-generator/widget/zip.ts +119 -0
- package/src/features/tools/build-in-public-story-generator/build-in-public-story-generator.container.tsx +135 -0
- package/src/features/tools/build-in-public-story-generator/build-in-public-story-generator.spec.ts +15 -0
- package/src/features/tools/build-in-public-story-generator/widget/build-in-public-story-generator.tsx +314 -0
- package/src/features/tools/build-in-public-story-generator/widget/constants.ts +3 -0
- package/src/features/tools/build-in-public-story-generator/widget/helpers.ts +25 -0
- package/src/features/tools/build-in-public-story-generator/widget/index.ts +7 -0
- package/src/features/tools/build-in-public-story-generator/widget/preview-panels.tsx +58 -0
- package/src/features/tools/build-in-public-story-generator/widget/result-shell.tsx +164 -0
- package/src/features/tools/build-in-public-story-generator/widget/types.ts +6 -0
- package/src/features/tools/cold-start-channel-selector/cold-start-channel-selector.container.tsx +30 -0
- package/src/features/tools/cold-start-channel-selector/cold-start-channel-selector.spec.ts +15 -0
- package/src/features/tools/cold-start-channel-selector/widget/cold-start-channel-selector.tsx +417 -0
- package/src/features/tools/cold-start-channel-selector/widget/constants.ts +46 -0
- package/src/features/tools/cold-start-channel-selector/widget/form-controls.tsx +41 -0
- package/src/features/tools/cold-start-channel-selector/widget/helpers.ts +75 -0
- package/src/features/tools/cold-start-channel-selector/widget/index.ts +7 -0
- package/src/features/tools/cold-start-channel-selector/widget/preview-panels.tsx +250 -0
- package/src/features/tools/cold-start-channel-selector/widget/result-shell.tsx +199 -0
- package/src/features/tools/cold-start-channel-selector/widget/types.ts +21 -0
- package/src/features/tools/commercial-bp-generator/commercial-bp-generator.container.tsx +102 -0
- package/src/features/tools/commercial-bp-generator/commercial-bp-generator.spec.ts +14 -0
- package/src/features/tools/commercial-bp-generator/widget/commercial-bp-generator.tsx +676 -0
- package/src/features/tools/commercial-bp-generator/widget/constants.ts +32 -0
- package/src/features/tools/commercial-bp-generator/widget/helpers.ts +147 -0
- package/src/features/tools/commercial-bp-generator/widget/index.ts +7 -0
- package/src/features/tools/commercial-bp-generator/widget/result-shell.tsx +271 -0
- package/src/features/tools/commercial-bp-generator/widget/style-option.tsx +54 -0
- package/src/features/tools/commercial-bp-generator/widget/types.ts +33 -0
- package/src/features/tools/community-feedback-inbox/community-feedback-inbox.container.tsx +126 -0
- package/src/features/tools/community-feedback-inbox/community-feedback-inbox.spec.ts +15 -0
- package/src/features/tools/community-feedback-inbox/widget/community-feedback-inbox.tsx +271 -0
- package/src/features/tools/community-feedback-inbox/widget/constants.ts +3 -0
- package/src/features/tools/community-feedback-inbox/widget/helpers.ts +28 -0
- package/src/features/tools/community-feedback-inbox/widget/index.ts +7 -0
- package/src/features/tools/community-feedback-inbox/widget/preview-panels.tsx +92 -0
- package/src/features/tools/community-feedback-inbox/widget/result-shell.tsx +266 -0
- package/src/features/tools/community-feedback-inbox/widget/types.ts +6 -0
- package/src/features/tools/community-pain-point-extractor/community-pain-point-extractor.container.tsx +124 -0
- package/src/features/tools/community-pain-point-extractor/community-pain-point-extractor.spec.ts +15 -0
- package/src/features/tools/community-pain-point-extractor/widget/community-pain-point-extractor.tsx +404 -0
- package/src/features/tools/community-pain-point-extractor/widget/constants.ts +41 -0
- package/src/features/tools/community-pain-point-extractor/widget/helpers.ts +76 -0
- package/src/features/tools/community-pain-point-extractor/widget/index.ts +8 -0
- package/src/features/tools/community-pain-point-extractor/widget/progress-panels.tsx +251 -0
- package/src/features/tools/community-pain-point-extractor/widget/result-shell.tsx +478 -0
- package/src/features/tools/community-pain-point-extractor/widget/types.ts +33 -0
- package/src/features/tools/community-post-risk-checker/community-post-risk-checker.package.ts +792 -0
- package/src/features/tools/competitor-analysis/competitor-analysis.container.tsx +136 -0
- package/src/features/tools/competitor-analysis/competitor-analysis.spec.ts +15 -0
- package/src/features/tools/competitor-analysis/widget/competitor-analysis.tsx +241 -0
- package/src/features/tools/competitor-analysis/widget/constants.ts +9 -0
- package/src/features/tools/competitor-analysis/widget/index.ts +7 -0
- package/src/features/tools/competitor-analysis/widget/preview-panels.tsx +60 -0
- package/src/features/tools/competitor-analysis/widget/result-shell.tsx +418 -0
- package/src/features/tools/competitor-analysis/widget/types.ts +13 -0
- package/src/features/tools/disclaimer-generator/disclaimer-generator.package.ts +339 -0
- package/src/features/tools/email-template-generator/email-template-generator.container.tsx +224 -0
- package/src/features/tools/email-template-generator/email-template-generator.spec.ts +14 -0
- package/src/features/tools/email-template-generator/widget/email-template-generator.tsx +358 -0
- package/src/features/tools/email-template-generator/widget/helpers.ts +39 -0
- package/src/features/tools/email-template-generator/widget/index.ts +7 -0
- package/src/features/tools/email-template-generator/widget/preview-panel.tsx +311 -0
- package/src/features/tools/email-template-generator/widget/result-text-block.tsx +7 -0
- package/src/features/tools/email-template-generator/widget/types.ts +24 -0
- package/src/features/tools/gtm-readiness-checklist/gtm-readiness-checklist.container.tsx +75 -0
- package/src/features/tools/gtm-readiness-checklist/gtm-readiness-checklist.spec.ts +15 -0
- package/src/features/tools/gtm-readiness-checklist/widget/gtm-readiness-checklist.tsx +122 -0
- package/src/features/tools/gtm-readiness-checklist/widget/index.ts +7 -0
- package/src/features/tools/investor-matching-planner/investor-matching-planner.package.ts +869 -0
- package/src/features/tools/koko-codex-assistant/koko-codex-assistant.container.tsx +151 -0
- package/src/features/tools/koko-codex-assistant/koko-codex-assistant.spec.ts +14 -0
- package/src/features/tools/koko-codex-assistant/widget/index.ts +7 -0
- package/src/features/tools/koko-codex-assistant/widget/koko-codex-assistant-download.tsx +192 -0
- package/src/features/tools/logo-generator/logo-generator.container.tsx +112 -0
- package/src/features/tools/logo-generator/logo-generator.spec.ts +15 -0
- package/src/features/tools/logo-generator/widget/index.ts +7 -0
- package/src/features/tools/logo-generator/widget/logo-generator.tsx +1244 -0
- package/src/features/tools/market-forecast-report/market-forecast-report.container.tsx +73 -0
- package/src/features/tools/market-forecast-report/market-forecast-report.spec.ts +15 -0
- package/src/features/tools/million-user-growth-test/million-user-growth-test.container.tsx +123 -0
- package/src/features/tools/million-user-growth-test/million-user-growth-test.spec.ts +14 -0
- package/src/features/tools/million-user-growth-test/widget/index.ts +7 -0
- package/src/features/tools/million-user-growth-test/widget/million-user-growth-test.tsx +433 -0
- package/src/features/tools/module-loader.ts +107 -0
- package/src/features/tools/og-image-generator/og-image-generator.container.tsx +86 -0
- package/src/features/tools/og-image-generator/og-image-generator.spec.ts +14 -0
- package/src/features/tools/og-image-generator/widget/constants.ts +38 -0
- package/src/features/tools/og-image-generator/widget/form-fields.tsx +240 -0
- package/src/features/tools/og-image-generator/widget/index.ts +7 -0
- package/src/features/tools/og-image-generator/widget/og-image-generator.tsx +742 -0
- package/src/features/tools/og-image-generator/widget/preview-panel.tsx +305 -0
- package/src/features/tools/og-image-generator/widget/types.ts +1 -0
- package/src/features/tools/package/direct-models.ts +20 -0
- package/src/features/tools/package/form.ts +38 -0
- package/src/features/tools/package/l10n.ts +22 -0
- package/src/features/tools/package/package-container.tsx +285 -0
- package/src/features/tools/package/package-loaders.ts +22 -0
- package/src/features/tools/package/package-registry.ts +36 -0
- package/src/features/tools/package/result-markdown.ts +142 -0
- package/src/features/tools/package/schema.ts +379 -0
- package/src/features/tools/package/to-tool-module.ts +20 -0
- package/src/features/tools/package/to-tool-spec.ts +52 -0
- package/src/features/tools/package/types.ts +381 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-generator.container.tsx +175 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-generator.spec.ts +14 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-library-data.ts +476 -0
- package/src/features/tools/pitch-deck-generator/pitch-deck-library.tsx +159 -0
- package/src/features/tools/pitch-deck-generator/widget/ceremony-line.tsx +27 -0
- package/src/features/tools/pitch-deck-generator/widget/constants.ts +27 -0
- package/src/features/tools/pitch-deck-generator/widget/index.ts +7 -0
- package/src/features/tools/pitch-deck-generator/widget/pitch-deck-generator.tsx +763 -0
- package/src/features/tools/pitch-deck-generator/widget/result-helpers.ts +102 -0
- package/src/features/tools/pitch-deck-generator/widget/result-shell.tsx +263 -0
- package/src/features/tools/pitch-deck-generator/widget/slide-frame.tsx +106 -0
- package/src/features/tools/pitch-deck-generator/widget/slide-lightbox.tsx +149 -0
- package/src/features/tools/pitch-deck-generator/widget/style-option.tsx +54 -0
- package/src/features/tools/pitch-deck-generator/widget/types.ts +44 -0
- package/src/features/tools/product-agreement-generator/product-agreement-generator.container.tsx +137 -0
- package/src/features/tools/product-agreement-generator/product-agreement-generator.spec.ts +14 -0
- package/src/features/tools/product-agreement-generator/widget/constants.ts +27 -0
- package/src/features/tools/product-agreement-generator/widget/form-controls.tsx +218 -0
- package/src/features/tools/product-agreement-generator/widget/helpers.ts +68 -0
- package/src/features/tools/product-agreement-generator/widget/index.ts +7 -0
- package/src/features/tools/product-agreement-generator/widget/product-agreement-generator.tsx +671 -0
- package/src/features/tools/product-agreement-generator/widget/result-shell.tsx +473 -0
- package/src/features/tools/product-agreement-generator/widget/types.ts +89 -0
- package/src/features/tools/product-hunt-launch-planner/product-hunt-launch-planner.container.tsx +122 -0
- package/src/features/tools/product-hunt-launch-planner/product-hunt-launch-planner.spec.ts +15 -0
- package/src/features/tools/product-hunt-launch-planner/widget/constants.ts +5 -0
- package/src/features/tools/product-hunt-launch-planner/widget/helpers.ts +44 -0
- package/src/features/tools/product-hunt-launch-planner/widget/index.ts +7 -0
- package/src/features/tools/product-hunt-launch-planner/widget/preview-panel.tsx +143 -0
- package/src/features/tools/product-hunt-launch-planner/widget/product-hunt-launch-planner.tsx +504 -0
- package/src/features/tools/product-hunt-launch-planner/widget/result-shell.tsx +176 -0
- package/src/features/tools/product-hunt-launch-planner/widget/types.ts +20 -0
- package/src/features/tools/product-name-generator/product-name-generator.container.tsx +14 -0
- package/src/features/tools/product-name-generator/product-name-generator.spec.ts +15 -0
- package/src/features/tools/product-name-generator/widget/candidate-card.tsx +273 -0
- package/src/features/tools/product-name-generator/widget/constants.ts +21 -0
- package/src/features/tools/product-name-generator/widget/form-controls.tsx +136 -0
- package/src/features/tools/product-name-generator/widget/helpers.ts +41 -0
- package/src/features/tools/product-name-generator/widget/index.ts +7 -0
- package/src/features/tools/product-name-generator/widget/product-name-generator.tsx +776 -0
- package/src/features/tools/product-name-generator/widget/types.ts +36 -0
- package/src/features/tools/product-positioning-analyzer/product-positioning-analyzer.package.ts +801 -0
- package/src/features/tools/product-poster-generator/product-poster-generator.container.tsx +14 -0
- package/src/features/tools/product-poster-generator/product-poster-generator.spec.ts +15 -0
- package/src/features/tools/product-poster-generator/widget/constants.ts +125 -0
- package/src/features/tools/product-poster-generator/widget/form-controls.tsx +204 -0
- package/src/features/tools/product-poster-generator/widget/helpers.ts +155 -0
- package/src/features/tools/product-poster-generator/widget/index.ts +7 -0
- package/src/features/tools/product-poster-generator/widget/product-poster-generator.tsx +663 -0
- package/src/features/tools/product-poster-generator/widget/result-shell.tsx +12 -0
- package/src/features/tools/product-poster-generator/widget/types.ts +83 -0
- package/src/features/tools/product-ui-generator/product-ui-generator.container.tsx +116 -0
- package/src/features/tools/product-ui-generator/product-ui-generator.spec.ts +14 -0
- package/src/features/tools/product-ui-generator/widget/constants.ts +18 -0
- package/src/features/tools/product-ui-generator/widget/helpers.ts +11 -0
- package/src/features/tools/product-ui-generator/widget/index.ts +7 -0
- package/src/features/tools/product-ui-generator/widget/preview-panels.tsx +73 -0
- package/src/features/tools/product-ui-generator/widget/product-ui-generator.tsx +304 -0
- package/src/features/tools/product-ui-generator/widget/result-shell.tsx +118 -0
- package/src/features/tools/product-ui-generator/widget/types.ts +9 -0
- package/src/features/tools/reddit-pain-point-finder/reddit-pain-point-finder.container.tsx +113 -0
- package/src/features/tools/reddit-pain-point-finder/reddit-pain-point-finder.spec.ts +15 -0
- package/src/features/tools/reddit-pain-point-finder/widget/constants.ts +5 -0
- package/src/features/tools/reddit-pain-point-finder/widget/index.ts +7 -0
- package/src/features/tools/reddit-pain-point-finder/widget/preview-panels.tsx +73 -0
- package/src/features/tools/reddit-pain-point-finder/widget/reddit-pain-point-finder.tsx +281 -0
- package/src/features/tools/reddit-pain-point-finder/widget/result-shell.tsx +203 -0
- package/src/features/tools/reddit-pain-point-finder/widget/types.ts +15 -0
- package/src/features/tools/registry.ts +288 -0
- package/src/features/tools/runtime-registry.ts +186 -0
- package/src/features/tools/shared/create-guide-stack-container.tsx +176 -0
- package/src/features/tools/shared/create-standard-landing-container.tsx +163 -0
- package/src/features/tools/shared/tool-content-sections.tsx +659 -0
- package/src/features/tools/shared/tool-cta.tsx +66 -0
- package/src/features/tools/shared/tool-draft-view.tsx +53 -0
- package/src/features/tools/shared/tool-guide-section.tsx +191 -0
- package/src/features/tools/shared/tool-handoff.tsx +38 -0
- package/src/features/tools/shared/tool-mcp-badge.tsx +23 -0
- package/src/features/tools/shared/tool-message-translator.ts +37 -0
- package/src/features/tools/shared/tool-page-shell.tsx +348 -0
- package/src/features/tools/shared/tool-standard-generation-steps.tsx +52 -0
- package/src/features/tools/shared/tool-standard-landing-sections.tsx +447 -0
- package/src/features/tools/shared/tool-ui-registry.ts +237 -0
- package/src/features/tools/shared/tool-widget-slot.tsx +29 -0
- package/src/features/tools/slogan-generator/slogan-generator.package.ts +641 -0
- package/src/features/tools/social-listening-research-report/social-listening-research-report.container.tsx +124 -0
- package/src/features/tools/social-listening-research-report/social-listening-research-report.spec.ts +15 -0
- package/src/features/tools/social-listening-research-report/widget/constants.ts +4 -0
- package/src/features/tools/social-listening-research-report/widget/index.ts +7 -0
- package/src/features/tools/social-listening-research-report/widget/preview-panels.tsx +73 -0
- package/src/features/tools/social-listening-research-report/widget/result-shell.tsx +216 -0
- package/src/features/tools/social-listening-research-report/widget/social-listening-research-report.tsx +303 -0
- package/src/features/tools/social-listening-research-report/widget/types.ts +15 -0
- package/src/features/tools/social-platform-asset-adapter/social-platform-asset-adapter.container.tsx +123 -0
- package/src/features/tools/social-platform-asset-adapter/social-platform-asset-adapter.spec.ts +15 -0
- package/src/features/tools/social-platform-asset-adapter/widget/constants.ts +43 -0
- package/src/features/tools/social-platform-asset-adapter/widget/helpers.ts +249 -0
- package/src/features/tools/social-platform-asset-adapter/widget/index.ts +7 -0
- package/src/features/tools/social-platform-asset-adapter/widget/result-shell.tsx +350 -0
- package/src/features/tools/social-platform-asset-adapter/widget/section-heading.tsx +18 -0
- package/src/features/tools/social-platform-asset-adapter/widget/social-platform-asset-adapter.tsx +641 -0
- package/src/features/tools/social-platform-asset-adapter/widget/types.ts +40 -0
- package/src/features/tools/social-profile-kit/social-profile-kit.container.tsx +177 -0
- package/src/features/tools/social-profile-kit/social-profile-kit.spec.ts +15 -0
- package/src/features/tools/social-profile-kit/widget/context-editor.tsx +171 -0
- package/src/features/tools/social-profile-kit/widget/generation-runtime.ts +281 -0
- package/src/features/tools/social-profile-kit/widget/index.ts +7 -0
- package/src/features/tools/social-profile-kit/widget/input-panel.tsx +294 -0
- package/src/features/tools/social-profile-kit/widget/platform-dock.tsx +115 -0
- package/src/features/tools/social-profile-kit/widget/profile-canvas.tsx +318 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/bluesky-preview.tsx +188 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/facebook-preview.tsx +168 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/index.ts +1 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/instagram-preview.tsx +278 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/linkedin-preview.tsx +358 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/profile-preview.tsx +348 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/shared.tsx +391 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/threads-preview.tsx +148 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/tiktok-preview.tsx +319 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/x-preview.tsx +341 -0
- package/src/features/tools/social-profile-kit/widget/profile-preview/youtube-preview.tsx +297 -0
- package/src/features/tools/social-profile-kit/widget/social-profile-kit-generator.tsx +1059 -0
- package/src/features/tools/social-profile-kit/widget/types.ts +104 -0
- package/src/features/tools/spec-registry.ts +158 -0
- package/src/features/tools/startup-idea-research/startup-idea-research.container.tsx +111 -0
- package/src/features/tools/startup-idea-research/startup-idea-research.spec.ts +15 -0
- package/src/features/tools/startup-idea-research/widget/constants.ts +11 -0
- package/src/features/tools/startup-idea-research/widget/index.ts +7 -0
- package/src/features/tools/startup-idea-research/widget/preview-panels.tsx +67 -0
- package/src/features/tools/startup-idea-research/widget/result-shell.tsx +323 -0
- package/src/features/tools/startup-idea-research/widget/startup-idea-research.tsx +272 -0
- package/src/features/tools/startup-idea-research/widget/types.ts +21 -0
- package/src/features/tools/tarot-reading/tarot-reading.container.tsx +412 -0
- package/src/features/tools/tarot-reading/tarot-reading.spec.ts +15 -0
- package/src/features/tools/tarot-reading/widget/cards.tsx +152 -0
- package/src/features/tools/tarot-reading/widget/constants.ts +69 -0
- package/src/features/tools/tarot-reading/widget/deck-view.tsx +86 -0
- package/src/features/tools/tarot-reading/widget/deck.ts +86 -0
- package/src/features/tools/tarot-reading/widget/index.ts +7 -0
- package/src/features/tools/tarot-reading/widget/landing-view.tsx +209 -0
- package/src/features/tools/tarot-reading/widget/reading-copy.tsx +138 -0
- package/src/features/tools/tarot-reading/widget/reading-view.tsx +189 -0
- package/src/features/tools/tarot-reading/widget/reveal-view.tsx +50 -0
- package/src/features/tools/tarot-reading/widget/ritual-view.tsx +276 -0
- package/src/features/tools/tarot-reading/widget/tarot-reading.tsx +262 -0
- package/src/features/tools/tarot-reading/widget/types.ts +22 -0
- package/src/features/tools/twitter-gif-downloader/twitter-gif-downloader.container.tsx +114 -0
- package/src/features/tools/twitter-gif-downloader/twitter-gif-downloader.spec.ts +14 -0
- package/src/features/tools/twitter-gif-downloader/widget/index.ts +7 -0
- package/src/features/tools/twitter-gif-downloader/widget/twitter-gif-downloader.tsx +351 -0
- package/src/features/tools/types.ts +68 -0
- package/src/features/tools/user-interview-guide-generator/user-interview-guide-generator.package.ts +774 -0
- package/src/features/tools/user-interview-insight-report-generator/user-interview-insight-report-generator.container.tsx +23 -0
- package/src/features/tools/user-interview-insight-report-generator/user-interview-insight-report-generator.spec.ts +14 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/constants.ts +8 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/helpers.ts +4 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/index.ts +7 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/preview-panels.tsx +55 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/result-shell.tsx +122 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/types.ts +16 -0
- package/src/features/tools/user-interview-insight-report-generator/widget/user-interview-insight-report-generator.tsx +293 -0
- package/src/features/tools/user-interview-record-generator/user-interview-record-generator.container.tsx +18 -0
- package/src/features/tools/user-interview-record-generator/user-interview-record-generator.spec.ts +14 -0
- package/src/features/tools/user-interview-record-generator/widget/constants.ts +9 -0
- package/src/features/tools/user-interview-record-generator/widget/helpers.ts +4 -0
- package/src/features/tools/user-interview-record-generator/widget/index.ts +7 -0
- package/src/features/tools/user-interview-record-generator/widget/preview-panels.tsx +48 -0
- package/src/features/tools/user-interview-record-generator/widget/result-shell.tsx +128 -0
- package/src/features/tools/user-interview-record-generator/widget/types.ts +16 -0
- package/src/features/tools/user-interview-record-generator/widget/user-interview-record-generator.tsx +305 -0
- package/src/features/tools/utm-builder/utm-builder.package.ts +846 -0
- package/src/features/tools/widget-registry.ts +73 -0
- package/src/generated/mcp-tools-registry.json +17 -0
- package/src/host/client-proxy.test.ts +33 -0
- package/src/host/client.ts +678 -0
- package/src/host/server.ts +119 -0
- package/src/i18n/client.ts +11 -0
- package/src/i18n/locale-fallback.ts +38 -0
- package/src/i18n/locale.ts +18 -0
- package/src/i18n/messages/en/page/tools.ts +124 -0
- package/src/i18n/messages/en/tools/app-icon-resizer.ts +244 -0
- package/src/i18n/messages/en/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/en/tools/build-in-public-story-generator.ts +229 -0
- package/src/i18n/messages/en/tools/cold-start-channel-selector.ts +423 -0
- package/src/i18n/messages/en/tools/commercial-bp-generator.ts +304 -0
- package/src/i18n/messages/en/tools/community-feedback-inbox.ts +218 -0
- package/src/i18n/messages/en/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/en/tools/community-post-risk-checker.ts +209 -0
- package/src/i18n/messages/en/tools/competitor-analysis.ts +197 -0
- package/src/i18n/messages/en/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/en/tools/engine.ts +69 -0
- package/src/i18n/messages/en/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/en/tools/index.ts +73 -0
- package/src/i18n/messages/en/tools/koko-codex-assistant.ts +171 -0
- package/src/i18n/messages/en/tools/logo-generator.ts +173 -0
- package/src/i18n/messages/en/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/en/tools/million-user-growth-test.ts +386 -0
- package/src/i18n/messages/en/tools/og-image-generator.ts +172 -0
- package/src/i18n/messages/en/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/en/tools/product-agreement-generator.ts +411 -0
- package/src/i18n/messages/en/tools/product-hunt-launch-planner.ts +272 -0
- package/src/i18n/messages/en/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/en/tools/product-poster-generator.ts +294 -0
- package/src/i18n/messages/en/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/en/tools/reddit-pain-point-finder.ts +163 -0
- package/src/i18n/messages/en/tools/shared.ts +24 -0
- package/src/i18n/messages/en/tools/social-listening-research-report.ts +185 -0
- package/src/i18n/messages/en/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/en/tools/social-platform-asset-adapter.ts +287 -0
- package/src/i18n/messages/en/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/en/tools/startup-idea-research.ts +170 -0
- package/src/i18n/messages/en/tools/tarot-reading.ts +230 -0
- package/src/i18n/messages/en/tools/twitter-gif-downloader.ts +145 -0
- package/src/i18n/messages/en/tools/user-interview-insight-report-generator.ts +242 -0
- package/src/i18n/messages/en/tools/user-interview-record-generator.ts +244 -0
- package/src/i18n/messages/en/tools-ui.ts +704 -0
- package/src/i18n/messages/zh/page/tools.ts +124 -0
- package/src/i18n/messages/zh/tools/app-icon-resizer.ts +242 -0
- package/src/i18n/messages/zh/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/zh/tools/build-in-public-story-generator.ts +230 -0
- package/src/i18n/messages/zh/tools/cold-start-channel-selector.ts +422 -0
- package/src/i18n/messages/zh/tools/commercial-bp-generator.ts +302 -0
- package/src/i18n/messages/zh/tools/community-feedback-inbox.ts +217 -0
- package/src/i18n/messages/zh/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/zh/tools/community-post-risk-checker.ts +200 -0
- package/src/i18n/messages/zh/tools/competitor-analysis.ts +192 -0
- package/src/i18n/messages/zh/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/zh/tools/engine.ts +68 -0
- package/src/i18n/messages/zh/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/zh/tools/index.ts +73 -0
- package/src/i18n/messages/zh/tools/koko-codex-assistant.ts +170 -0
- package/src/i18n/messages/zh/tools/logo-generator.ts +172 -0
- package/src/i18n/messages/zh/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/zh/tools/million-user-growth-test.ts +385 -0
- package/src/i18n/messages/zh/tools/og-image-generator.ts +173 -0
- package/src/i18n/messages/zh/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/zh/tools/product-agreement-generator.ts +401 -0
- package/src/i18n/messages/zh/tools/product-hunt-launch-planner.ts +267 -0
- package/src/i18n/messages/zh/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/zh/tools/product-poster-generator.ts +282 -0
- package/src/i18n/messages/zh/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/zh/tools/reddit-pain-point-finder.ts +162 -0
- package/src/i18n/messages/zh/tools/shared.ts +24 -0
- package/src/i18n/messages/zh/tools/social-listening-research-report.ts +181 -0
- package/src/i18n/messages/zh/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/zh/tools/social-platform-asset-adapter.ts +284 -0
- package/src/i18n/messages/zh/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/zh/tools/startup-idea-research.ts +165 -0
- package/src/i18n/messages/zh/tools/tarot-reading.ts +228 -0
- package/src/i18n/messages/zh/tools/twitter-gif-downloader.ts +138 -0
- package/src/i18n/messages/zh/tools/user-interview-insight-report-generator.ts +224 -0
- package/src/i18n/messages/zh/tools/user-interview-record-generator.ts +226 -0
- package/src/i18n/messages/zh/tools-ui.ts +684 -0
- package/src/i18n/messages/zh-tw/page/tools.ts +115 -0
- package/src/i18n/messages/zh-tw/tools/app-icon-resizer.ts +242 -0
- package/src/i18n/messages/zh-tw/tools/app-store-screenshot-generator.ts +145 -0
- package/src/i18n/messages/zh-tw/tools/build-in-public-story-generator.ts +230 -0
- package/src/i18n/messages/zh-tw/tools/cold-start-channel-selector.ts +440 -0
- package/src/i18n/messages/zh-tw/tools/commercial-bp-generator.ts +302 -0
- package/src/i18n/messages/zh-tw/tools/community-feedback-inbox.ts +217 -0
- package/src/i18n/messages/zh-tw/tools/community-pain-point-extractor.ts +230 -0
- package/src/i18n/messages/zh-tw/tools/community-post-risk-checker.ts +200 -0
- package/src/i18n/messages/zh-tw/tools/competitor-analysis.ts +192 -0
- package/src/i18n/messages/zh-tw/tools/email-template-generator.ts +302 -0
- package/src/i18n/messages/zh-tw/tools/engine.ts +68 -0
- package/src/i18n/messages/zh-tw/tools/gtm-readiness-checklist.ts +166 -0
- package/src/i18n/messages/zh-tw/tools/index.ts +73 -0
- package/src/i18n/messages/zh-tw/tools/koko-codex-assistant.ts +170 -0
- package/src/i18n/messages/zh-tw/tools/logo-generator.ts +71 -0
- package/src/i18n/messages/zh-tw/tools/market-forecast-report.ts +228 -0
- package/src/i18n/messages/zh-tw/tools/million-user-growth-test.ts +385 -0
- package/src/i18n/messages/zh-tw/tools/og-image-generator.ts +173 -0
- package/src/i18n/messages/zh-tw/tools/pitch-deck-generator.ts +358 -0
- package/src/i18n/messages/zh-tw/tools/product-agreement-generator.ts +401 -0
- package/src/i18n/messages/zh-tw/tools/product-hunt-launch-planner.ts +267 -0
- package/src/i18n/messages/zh-tw/tools/product-name-generator.ts +383 -0
- package/src/i18n/messages/zh-tw/tools/product-poster-generator.ts +282 -0
- package/src/i18n/messages/zh-tw/tools/product-ui-generator.ts +234 -0
- package/src/i18n/messages/zh-tw/tools/reddit-pain-point-finder.ts +162 -0
- package/src/i18n/messages/zh-tw/tools/shared.ts +24 -0
- package/src/i18n/messages/zh-tw/tools/social-listening-research-report.ts +181 -0
- package/src/i18n/messages/zh-tw/tools/social-media-profile-generator.ts +22 -0
- package/src/i18n/messages/zh-tw/tools/social-platform-asset-adapter.ts +284 -0
- package/src/i18n/messages/zh-tw/tools/social-profile-kit.ts +150 -0
- package/src/i18n/messages/zh-tw/tools/startup-idea-research.ts +165 -0
- package/src/i18n/messages/zh-tw/tools/tarot-reading.ts +228 -0
- package/src/i18n/messages/zh-tw/tools/twitter-gif-downloader.ts +138 -0
- package/src/i18n/messages/zh-tw/tools/user-interview-insight-report-generator.ts +224 -0
- package/src/i18n/messages/zh-tw/tools/user-interview-record-generator.ts +226 -0
- package/src/i18n/messages/zh-tw/tools-ui.ts +525 -0
- package/src/index.ts +15 -0
- package/src/lib/activity-task-handoff.ts +404 -0
- package/src/lib/api/errors.ts +39 -0
- package/src/lib/app-origin.ts +30 -0
- package/src/lib/fact-claim-contract.ts +68 -0
- package/src/lib/fake-delay.ts +3 -0
- package/src/lib/file/download.ts +10 -0
- package/src/lib/routing/locale-paths.ts +27 -0
- package/src/lib/seo-meta.ts +3 -0
- package/src/lib/tools/app-icon-resizer-schema.ts +191 -0
- package/src/lib/tools/app-store-screenshot-generator-schema.ts +185 -0
- package/src/lib/tools/build-in-public-story-generator-schema.ts +67 -0
- package/src/lib/tools/build-in-public-story-generator.format.ts +507 -0
- package/src/lib/tools/cold-start-channel-selector-schema.ts +147 -0
- package/src/lib/tools/commercial-bp-generator-schema.ts +222 -0
- package/src/lib/tools/community-feedback-inbox-schema.ts +125 -0
- package/src/lib/tools/community-feedback-inbox.format.ts +764 -0
- package/src/lib/tools/community-pain-point-extractor-schema.ts +166 -0
- package/src/lib/tools/community-post-risk-checker-schema.ts +99 -0
- package/src/lib/tools/community-post-risk-checker.format.ts +557 -0
- package/src/lib/tools/competitor-analysis-schema.ts +144 -0
- package/src/lib/tools/draft-preview-access.ts +3 -0
- package/src/lib/tools/draft-store.ts +69 -0
- package/src/lib/tools/email-template-generator-schema.ts +124 -0
- package/src/lib/tools/gtm-checklist-copy.ts +57 -0
- package/src/lib/tools/gtm-checklist-structure.ts +37 -0
- package/src/lib/tools/image-download.ts +68 -0
- package/src/lib/tools/input-quality.ts +97 -0
- package/src/lib/tools/logo-generator-schema.ts +224 -0
- package/src/lib/tools/market-forecast-report-schema.ts +299 -0
- package/src/lib/tools/mcp-registry.ts +16 -0
- package/src/lib/tools/mcp-types.ts +18 -0
- package/src/lib/tools/million-user-growth-test-schema.ts +49 -0
- package/src/lib/tools/million-user-growth-test.ts +181 -0
- package/src/lib/tools/og-image-generator-render.ts +448 -0
- package/src/lib/tools/og-image-generator-schema.ts +140 -0
- package/src/lib/tools/ops-catalog.ts +102 -0
- package/src/lib/tools/pitch-deck-generator-schema.ts +182 -0
- package/src/lib/tools/pitch-deck-package.ts +0 -0
- package/src/lib/tools/product-agreement-generator-schema.ts +168 -0
- package/src/lib/tools/product-hunt-launch-planner-schema.ts +136 -0
- package/src/lib/tools/product-hunt-launch-planner.format.ts +72 -0
- package/src/lib/tools/product-name-generator-schema.ts +563 -0
- package/src/lib/tools/product-poster-generator-schema.ts +215 -0
- package/src/lib/tools/product-ui-generator-schema.ts +157 -0
- package/src/lib/tools/reddit-pain-point-finder-schema.ts +88 -0
- package/src/lib/tools/resolve-tool-locale-copy.ts +75 -0
- package/src/lib/tools/slug.ts +60 -0
- package/src/lib/tools/social-listening-research-report-schema.ts +105 -0
- package/src/lib/tools/social-platform-asset-adapter-schema.ts +152 -0
- package/src/lib/tools/social-profile-kit.constants.ts +12 -0
- package/src/lib/tools/social-profile-kit.generation.ts +257 -0
- package/src/lib/tools/social-profile-kit.input.ts +290 -0
- package/src/lib/tools/social-profile-kit.manual.ts +481 -0
- package/src/lib/tools/social-profile-kit.package.ts +220 -0
- package/src/lib/tools/social-profile-kit.schema.ts +328 -0
- package/src/lib/tools/startup-idea-research-schema.ts +107 -0
- package/src/lib/tools/tarot-imagery.ts +89 -0
- package/src/lib/tools/tarot-reading.ts +1044 -0
- package/src/lib/tools/tool-message-keys.ts +18 -0
- package/src/lib/tools/types.ts +32 -0
- package/src/lib/tools/user-interview.format.ts +147 -0
- package/src/lib/tools/user-interview.generation.ts +670 -0
- package/src/lib/tools/user-interview.schema.ts +192 -0
- package/src/lib/zip.ts +106 -0
- package/src/services/tools/handlers/gtm-readiness-checklist.ts +71 -0
- package/src/services/tools/handlers/types.ts +7 -0
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
import type { CSSProperties } from "react";
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
buildOgImageFileName,
|
|
5
|
+
getOgImageMimeType,
|
|
6
|
+
OG_IMAGE_PRESET_META,
|
|
7
|
+
parseOgImageTags,
|
|
8
|
+
type OgImageGeneratorInput,
|
|
9
|
+
type OgImageGridColor,
|
|
10
|
+
} from "../../lib/tools/og-image-generator-schema";
|
|
11
|
+
|
|
12
|
+
export type GeneratedOgImage = {
|
|
13
|
+
url: string;
|
|
14
|
+
blob: Blob;
|
|
15
|
+
fileName: string;
|
|
16
|
+
width: number;
|
|
17
|
+
height: number;
|
|
18
|
+
format: OgImageGeneratorInput["format"];
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const GRID_COLOR_MAP: Record<OgImageGridColor, string> = {
|
|
22
|
+
black: "#111111",
|
|
23
|
+
white: "#FFFFFF",
|
|
24
|
+
gray: "#8A8A8A",
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export function previewBackground(input: OgImageGeneratorInput): string {
|
|
28
|
+
if (input.backgroundMode === "solid") return input.backgroundColor;
|
|
29
|
+
if (input.template === "minimal") return `linear-gradient(135deg, ${input.templateBackgroundColor} 0%, #FFFFFF 100%)`;
|
|
30
|
+
if (input.template === "split") {
|
|
31
|
+
return `linear-gradient(105deg, ${input.primaryColor} 0%, ${input.backgroundColor} 66%, ${input.accentColor} 66%)`;
|
|
32
|
+
}
|
|
33
|
+
return `linear-gradient(135deg, ${input.primaryColor} 0%, ${input.backgroundColor} 58%, ${input.accentColor} 100%)`;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export function previewGridStyle(input: OgImageGeneratorInput): CSSProperties | undefined {
|
|
37
|
+
if (input.gridPattern === "none" || input.gridOpacity <= 0) return undefined;
|
|
38
|
+
const color = GRID_COLOR_MAP[input.gridColor];
|
|
39
|
+
const alpha = input.gridOpacity;
|
|
40
|
+
const rgba = hexToRgba(color, alpha);
|
|
41
|
+
if (input.gridPattern === "dots") {
|
|
42
|
+
return {
|
|
43
|
+
backgroundImage: `radial-gradient(${rgba} 1px, transparent 1px)`,
|
|
44
|
+
backgroundSize: "5% 8%",
|
|
45
|
+
filter: input.gridBlurRadius > 0 ? `blur(${input.gridBlurRadius / 10}px)` : undefined,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
if (input.gridPattern === "graph") {
|
|
49
|
+
return {
|
|
50
|
+
backgroundImage: `linear-gradient(${rgba} 1px, transparent 1px), linear-gradient(90deg, ${rgba} 1px, transparent 1px), linear-gradient(${hexToRgba(color, alpha * 1.4)} 2px, transparent 2px), linear-gradient(90deg, ${hexToRgba(color, alpha * 1.4)} 2px, transparent 2px)`,
|
|
51
|
+
backgroundSize: "5% 8%, 5% 8%, 20% 32%, 20% 32%",
|
|
52
|
+
filter: input.gridBlurRadius > 0 ? `blur(${input.gridBlurRadius / 10}px)` : undefined,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
backgroundImage: `linear-gradient(${rgba} 1px, transparent 1px), linear-gradient(90deg, ${rgba} 1px, transparent 1px)`,
|
|
57
|
+
backgroundSize: "5% 8%",
|
|
58
|
+
filter: input.gridBlurRadius > 0 ? `blur(${input.gridBlurRadius / 10}px)` : undefined,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export async function renderOgImage(input: OgImageGeneratorInput): Promise<GeneratedOgImage> {
|
|
63
|
+
const meta = OG_IMAGE_PRESET_META[input.preset];
|
|
64
|
+
const canvas = document.createElement("canvas");
|
|
65
|
+
canvas.width = meta.width;
|
|
66
|
+
canvas.height = meta.height;
|
|
67
|
+
const ctx = canvas.getContext("2d");
|
|
68
|
+
if (!ctx) throw new Error("Canvas unavailable");
|
|
69
|
+
|
|
70
|
+
await drawImage(ctx, input, meta.width, meta.height);
|
|
71
|
+
|
|
72
|
+
const blob = await new Promise<Blob>((resolve, reject) => {
|
|
73
|
+
canvas.toBlob(
|
|
74
|
+
(value) => {
|
|
75
|
+
if (value) resolve(value);
|
|
76
|
+
else reject(new Error("Canvas export failed"));
|
|
77
|
+
},
|
|
78
|
+
getOgImageMimeType(input.format),
|
|
79
|
+
input.format === "png" ? undefined : 0.92,
|
|
80
|
+
);
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
return {
|
|
84
|
+
url: URL.createObjectURL(blob),
|
|
85
|
+
blob,
|
|
86
|
+
fileName: buildOgImageFileName(input),
|
|
87
|
+
width: meta.width,
|
|
88
|
+
height: meta.height,
|
|
89
|
+
format: input.format,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
async function drawImage(
|
|
94
|
+
ctx: CanvasRenderingContext2D,
|
|
95
|
+
input: OgImageGeneratorInput,
|
|
96
|
+
width: number,
|
|
97
|
+
height: number,
|
|
98
|
+
) {
|
|
99
|
+
drawBackground(ctx, input, width, height);
|
|
100
|
+
drawGridOverlay(ctx, input, width, height);
|
|
101
|
+
drawNoise(ctx, input, width, height);
|
|
102
|
+
|
|
103
|
+
if (input.template === "split") {
|
|
104
|
+
ctx.fillStyle = input.accentColor;
|
|
105
|
+
ctx.fillRect(width * 0.66, 0, width * 0.34, height);
|
|
106
|
+
} else if (input.template === "quote") {
|
|
107
|
+
ctx.globalAlpha = 0.22;
|
|
108
|
+
ctx.fillStyle = "#FFFFFF";
|
|
109
|
+
ctx.font = `700 ${Math.round(width / 4)}px Georgia, serif`;
|
|
110
|
+
ctx.fillText("\"", width * 0.72, height * 0.48);
|
|
111
|
+
ctx.globalAlpha = 1;
|
|
112
|
+
} else if (!input.decorImageDataUrl) {
|
|
113
|
+
drawShape(
|
|
114
|
+
ctx,
|
|
115
|
+
width * 0.72,
|
|
116
|
+
height * 0.18,
|
|
117
|
+
width * 0.24,
|
|
118
|
+
height * 0.38,
|
|
119
|
+
input.template === "minimal" ? input.accentColor : "rgba(255,255,255,0.22)",
|
|
120
|
+
input.template === "editorial" ? -0.12 : 0.12,
|
|
121
|
+
);
|
|
122
|
+
drawCircle(
|
|
123
|
+
ctx,
|
|
124
|
+
width * 0.82,
|
|
125
|
+
height * 0.72,
|
|
126
|
+
Math.min(width, height) * 0.08,
|
|
127
|
+
input.template === "minimal" ? input.primaryColor : input.accentColor,
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
await drawDecorImage(ctx, input, width, height);
|
|
132
|
+
|
|
133
|
+
const logoSize = Math.round(height * 0.078);
|
|
134
|
+
await drawLogo(ctx, input, width * 0.08, height * 0.09, logoSize);
|
|
135
|
+
drawTagPills(ctx, input, parseOgImageTags(input.tags), width * 0.08 + logoSize + width * 0.018, height * 0.105, width * 0.56, height);
|
|
136
|
+
|
|
137
|
+
const titleSize = Math.round(input.titleTypography.fontSize * (width / 1200));
|
|
138
|
+
const titleLineHeight = Math.round(titleSize * 1.12);
|
|
139
|
+
ctx.fillStyle = input.titleTypography.color;
|
|
140
|
+
ctx.font = `${input.titleTypography.fontWeight} ${titleSize}px ${fontStack(input.titleTypography.fontFamily)}`;
|
|
141
|
+
drawWrappedText(
|
|
142
|
+
ctx,
|
|
143
|
+
input.title,
|
|
144
|
+
width * 0.08,
|
|
145
|
+
height * 0.42,
|
|
146
|
+
width * 0.66,
|
|
147
|
+
titleLineHeight,
|
|
148
|
+
input.preset === "xHeader" ? 2 : 3,
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
if (input.subtitle) {
|
|
152
|
+
ctx.globalAlpha = input.template === "minimal" ? 0.72 : 0.84;
|
|
153
|
+
ctx.fillStyle = input.template === "minimal" ? "#444444" : "rgba(255,255,255,0.82)";
|
|
154
|
+
ctx.font = `500 ${Math.round(width / 42)}px ${fontStack("Inter")}`;
|
|
155
|
+
drawWrappedText(ctx, input.subtitle, width * 0.08, height * 0.69, width * 0.56, Math.round(width / 30), 2);
|
|
156
|
+
ctx.globalAlpha = 1;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
ctx.fillStyle = input.template === "minimal" ? "#555555" : "rgba(255,255,255,0.68)";
|
|
160
|
+
ctx.font = `700 ${Math.round(width / 70)}px ${fontStack("Inter")}`;
|
|
161
|
+
ctx.textAlign = "right";
|
|
162
|
+
ctx.fillText(`${width} x ${height}`, width * 0.92, height * 0.14);
|
|
163
|
+
ctx.textAlign = "left";
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
function drawBackground(ctx: CanvasRenderingContext2D, input: OgImageGeneratorInput, width: number, height: number) {
|
|
167
|
+
if (input.backgroundMode === "solid") {
|
|
168
|
+
ctx.fillStyle = input.backgroundColor;
|
|
169
|
+
ctx.fillRect(0, 0, width, height);
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
const bg = ctx.createLinearGradient(0, 0, width, height);
|
|
174
|
+
if (input.template === "minimal") {
|
|
175
|
+
bg.addColorStop(0, input.templateBackgroundColor);
|
|
176
|
+
bg.addColorStop(1, "#FFFFFF");
|
|
177
|
+
} else if (input.template === "split") {
|
|
178
|
+
bg.addColorStop(0, input.primaryColor);
|
|
179
|
+
bg.addColorStop(1, input.backgroundColor);
|
|
180
|
+
} else {
|
|
181
|
+
bg.addColorStop(0, input.primaryColor);
|
|
182
|
+
bg.addColorStop(0.58, input.backgroundColor);
|
|
183
|
+
bg.addColorStop(1, input.accentColor);
|
|
184
|
+
}
|
|
185
|
+
ctx.fillStyle = bg;
|
|
186
|
+
ctx.fillRect(0, 0, width, height);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
function drawGridOverlay(ctx: CanvasRenderingContext2D, input: OgImageGeneratorInput, width: number, height: number) {
|
|
190
|
+
if (input.gridPattern === "none" || input.gridOpacity <= 0) return;
|
|
191
|
+
|
|
192
|
+
const overlay = document.createElement("canvas");
|
|
193
|
+
overlay.width = width;
|
|
194
|
+
overlay.height = height;
|
|
195
|
+
const overlayCtx = overlay.getContext("2d");
|
|
196
|
+
if (!overlayCtx) return;
|
|
197
|
+
|
|
198
|
+
const color = GRID_COLOR_MAP[input.gridColor];
|
|
199
|
+
overlayCtx.strokeStyle = color;
|
|
200
|
+
overlayCtx.fillStyle = color;
|
|
201
|
+
overlayCtx.globalAlpha = input.gridOpacity;
|
|
202
|
+
overlayCtx.lineWidth = Math.max(1, width / 1200);
|
|
203
|
+
|
|
204
|
+
if (input.gridPattern === "dots") {
|
|
205
|
+
const stepX = width / 20;
|
|
206
|
+
const stepY = height / 12;
|
|
207
|
+
const radius = Math.max(1.5, width / 800);
|
|
208
|
+
for (let x = stepX; x < width; x += stepX) {
|
|
209
|
+
for (let y = stepY; y < height; y += stepY) {
|
|
210
|
+
overlayCtx.beginPath();
|
|
211
|
+
overlayCtx.arc(x, y, radius, 0, Math.PI * 2);
|
|
212
|
+
overlayCtx.fill();
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
} else {
|
|
216
|
+
const stepX = width / 20;
|
|
217
|
+
const stepY = height / 12;
|
|
218
|
+
for (let x = stepX; x < width; x += stepX) {
|
|
219
|
+
overlayCtx.beginPath();
|
|
220
|
+
overlayCtx.moveTo(x, 0);
|
|
221
|
+
overlayCtx.lineTo(x, height);
|
|
222
|
+
overlayCtx.stroke();
|
|
223
|
+
}
|
|
224
|
+
for (let y = stepY; y < height; y += stepY) {
|
|
225
|
+
overlayCtx.beginPath();
|
|
226
|
+
overlayCtx.moveTo(0, y);
|
|
227
|
+
overlayCtx.lineTo(width, y);
|
|
228
|
+
overlayCtx.stroke();
|
|
229
|
+
}
|
|
230
|
+
if (input.gridPattern === "graph") {
|
|
231
|
+
overlayCtx.globalAlpha = Math.min(1, input.gridOpacity * 1.35);
|
|
232
|
+
overlayCtx.lineWidth = Math.max(2, width / 600);
|
|
233
|
+
for (let x = stepX * 4; x < width; x += stepX * 4) {
|
|
234
|
+
overlayCtx.beginPath();
|
|
235
|
+
overlayCtx.moveTo(x, 0);
|
|
236
|
+
overlayCtx.lineTo(x, height);
|
|
237
|
+
overlayCtx.stroke();
|
|
238
|
+
}
|
|
239
|
+
for (let y = stepY * 4; y < height; y += stepY * 4) {
|
|
240
|
+
overlayCtx.beginPath();
|
|
241
|
+
overlayCtx.moveTo(0, y);
|
|
242
|
+
overlayCtx.lineTo(width, y);
|
|
243
|
+
overlayCtx.stroke();
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
const blurPx = (input.gridBlurRadius / 100) * Math.min(width, height) * 0.04;
|
|
249
|
+
ctx.save();
|
|
250
|
+
if (blurPx > 0) ctx.filter = `blur(${blurPx}px)`;
|
|
251
|
+
ctx.drawImage(overlay, 0, 0);
|
|
252
|
+
ctx.restore();
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
function drawNoise(ctx: CanvasRenderingContext2D, input: OgImageGeneratorInput, width: number, height: number) {
|
|
256
|
+
if (input.noise <= 0) return;
|
|
257
|
+
const pixels = Math.floor(width * height * input.noise * 0.08);
|
|
258
|
+
ctx.save();
|
|
259
|
+
for (let index = 0; index < pixels; index += 1) {
|
|
260
|
+
const x = Math.random() * width;
|
|
261
|
+
const y = Math.random() * height;
|
|
262
|
+
const tone = Math.random() > 0.5 ? 255 : 0;
|
|
263
|
+
ctx.globalAlpha = input.noise * 0.35;
|
|
264
|
+
ctx.fillStyle = `rgb(${tone}, ${tone}, ${tone})`;
|
|
265
|
+
ctx.fillRect(x, y, 1.2, 1.2);
|
|
266
|
+
}
|
|
267
|
+
ctx.restore();
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
async function drawDecorImage(ctx: CanvasRenderingContext2D, input: OgImageGeneratorInput, width: number, height: number) {
|
|
271
|
+
if (!input.decorImageDataUrl) return;
|
|
272
|
+
try {
|
|
273
|
+
const image = await loadImage(input.decorImageDataUrl);
|
|
274
|
+
const maxWidth = width * 0.28;
|
|
275
|
+
const maxHeight = height * 0.34;
|
|
276
|
+
const fit = fitInside(image.width, image.height, maxWidth, maxHeight);
|
|
277
|
+
const x = width * 0.68;
|
|
278
|
+
const y = height * 0.58;
|
|
279
|
+
ctx.save();
|
|
280
|
+
ctx.shadowColor = "rgba(0,0,0,0.22)";
|
|
281
|
+
ctx.shadowBlur = Math.max(12, width / 80);
|
|
282
|
+
ctx.drawImage(image, x, y, fit.width, fit.height);
|
|
283
|
+
ctx.restore();
|
|
284
|
+
} catch {
|
|
285
|
+
// Ignore broken decor uploads in export.
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
async function drawLogo(ctx: CanvasRenderingContext2D, input: OgImageGeneratorInput, x: number, y: number, size: number) {
|
|
290
|
+
ctx.save();
|
|
291
|
+
ctx.fillStyle = "rgba(255,255,255,0.92)";
|
|
292
|
+
roundRect(ctx, x, y, size, size, Math.round(size * 0.22));
|
|
293
|
+
ctx.fill();
|
|
294
|
+
|
|
295
|
+
if (input.logoDataUrl) {
|
|
296
|
+
try {
|
|
297
|
+
const image = await loadImage(input.logoDataUrl);
|
|
298
|
+
const fit = fitInside(image.width, image.height, size * 0.72, size * 0.72);
|
|
299
|
+
ctx.drawImage(image, x + (size - fit.width) / 2, y + (size - fit.height) / 2, fit.width, fit.height);
|
|
300
|
+
ctx.restore();
|
|
301
|
+
return;
|
|
302
|
+
} catch {
|
|
303
|
+
// Fall back to text mark below.
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
ctx.fillStyle = "#111111";
|
|
308
|
+
ctx.font = `800 ${Math.round(size * 0.44)}px ${fontStack("Inter")}`;
|
|
309
|
+
ctx.textAlign = "center";
|
|
310
|
+
ctx.textBaseline = "middle";
|
|
311
|
+
ctx.fillText((input.logoText || input.brand || "T").slice(0, 2), x + size / 2, y + size / 2);
|
|
312
|
+
ctx.textAlign = "left";
|
|
313
|
+
ctx.textBaseline = "alphabetic";
|
|
314
|
+
ctx.restore();
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
function drawTagPills(
|
|
318
|
+
ctx: CanvasRenderingContext2D,
|
|
319
|
+
input: OgImageGeneratorInput,
|
|
320
|
+
tags: string[],
|
|
321
|
+
x: number,
|
|
322
|
+
y: number,
|
|
323
|
+
maxWidth: number,
|
|
324
|
+
height: number,
|
|
325
|
+
) {
|
|
326
|
+
if (!tags.length) return;
|
|
327
|
+
const fontSize = Math.round(input.tagTypography.fontSize * (height / 630));
|
|
328
|
+
ctx.save();
|
|
329
|
+
ctx.font = `${input.tagTypography.fontWeight} ${fontSize}px ${fontStack(input.tagTypography.fontFamily)}`;
|
|
330
|
+
ctx.textBaseline = "middle";
|
|
331
|
+
let cursor = x;
|
|
332
|
+
for (const tag of tags.slice(0, 3)) {
|
|
333
|
+
const pillWidth = Math.min(ctx.measureText(tag).width + height * 0.055, maxWidth);
|
|
334
|
+
if (cursor + pillWidth > x + maxWidth) break;
|
|
335
|
+
ctx.fillStyle = "rgba(255,255,255,0.88)";
|
|
336
|
+
ctx.strokeStyle = input.tagTypography.color;
|
|
337
|
+
ctx.lineWidth = Math.max(2, height / 240);
|
|
338
|
+
roundRect(ctx, cursor, y, pillWidth, height * 0.052, height * 0.026);
|
|
339
|
+
ctx.fill();
|
|
340
|
+
ctx.stroke();
|
|
341
|
+
ctx.fillStyle = input.tagTypography.color;
|
|
342
|
+
ctx.fillText(tag, cursor + height * 0.024, y + height * 0.026);
|
|
343
|
+
cursor += pillWidth + height * 0.012;
|
|
344
|
+
}
|
|
345
|
+
ctx.restore();
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
function drawWrappedText(
|
|
349
|
+
ctx: CanvasRenderingContext2D,
|
|
350
|
+
text: string,
|
|
351
|
+
x: number,
|
|
352
|
+
y: number,
|
|
353
|
+
maxWidth: number,
|
|
354
|
+
lineHeight: number,
|
|
355
|
+
maxLines: number,
|
|
356
|
+
) {
|
|
357
|
+
const words = text.split(/\s+/).filter(Boolean);
|
|
358
|
+
const lines: string[] = [];
|
|
359
|
+
let line = "";
|
|
360
|
+
|
|
361
|
+
for (const word of words) {
|
|
362
|
+
const candidate = line ? `${line} ${word}` : word;
|
|
363
|
+
if (ctx.measureText(candidate).width > maxWidth && line) {
|
|
364
|
+
lines.push(line);
|
|
365
|
+
line = word;
|
|
366
|
+
} else {
|
|
367
|
+
line = candidate;
|
|
368
|
+
}
|
|
369
|
+
if (lines.length === maxLines) break;
|
|
370
|
+
}
|
|
371
|
+
if (line && lines.length < maxLines) lines.push(line);
|
|
372
|
+
|
|
373
|
+
lines.forEach((item, index) => ctx.fillText(item, x, y + index * lineHeight));
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
function drawShape(
|
|
377
|
+
ctx: CanvasRenderingContext2D,
|
|
378
|
+
x: number,
|
|
379
|
+
y: number,
|
|
380
|
+
width: number,
|
|
381
|
+
height: number,
|
|
382
|
+
color: string,
|
|
383
|
+
rotate: number,
|
|
384
|
+
) {
|
|
385
|
+
ctx.save();
|
|
386
|
+
ctx.translate(x + width / 2, y + height / 2);
|
|
387
|
+
ctx.rotate(rotate);
|
|
388
|
+
ctx.fillStyle = color;
|
|
389
|
+
roundRect(ctx, -width / 2, -height / 2, width, height, Math.min(width, height) * 0.12);
|
|
390
|
+
ctx.fill();
|
|
391
|
+
ctx.restore();
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
function drawCircle(ctx: CanvasRenderingContext2D, x: number, y: number, radius: number, color: string) {
|
|
395
|
+
ctx.fillStyle = color;
|
|
396
|
+
ctx.beginPath();
|
|
397
|
+
ctx.arc(x, y, radius, 0, Math.PI * 2);
|
|
398
|
+
ctx.fill();
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
function roundRect(ctx: CanvasRenderingContext2D, x: number, y: number, width: number, height: number, radius: number) {
|
|
402
|
+
ctx.beginPath();
|
|
403
|
+
ctx.moveTo(x + radius, y);
|
|
404
|
+
ctx.lineTo(x + width - radius, y);
|
|
405
|
+
ctx.quadraticCurveTo(x + width, y, x + width, y + radius);
|
|
406
|
+
ctx.lineTo(x + width, y + height - radius);
|
|
407
|
+
ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height);
|
|
408
|
+
ctx.lineTo(x + radius, y + height);
|
|
409
|
+
ctx.quadraticCurveTo(x, y + height, x, y + height - radius);
|
|
410
|
+
ctx.lineTo(x, y + radius);
|
|
411
|
+
ctx.quadraticCurveTo(x, y, x + radius, y);
|
|
412
|
+
ctx.closePath();
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
function fitInside(sourceWidth: number, sourceHeight: number, maxWidth: number, maxHeight: number) {
|
|
416
|
+
const ratio = Math.min(maxWidth / sourceWidth, maxHeight / sourceHeight);
|
|
417
|
+
return {
|
|
418
|
+
width: sourceWidth * ratio,
|
|
419
|
+
height: sourceHeight * ratio,
|
|
420
|
+
};
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
function loadImage(src: string): Promise<HTMLImageElement> {
|
|
424
|
+
return new Promise((resolve, reject) => {
|
|
425
|
+
const image = new Image();
|
|
426
|
+
image.onload = () => resolve(image);
|
|
427
|
+
image.onerror = () => reject(new Error("Image load failed"));
|
|
428
|
+
image.src = src;
|
|
429
|
+
});
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
function fontStack(family: OgImageGeneratorInput["tagTypography"]["fontFamily"]): string {
|
|
433
|
+
if (family === "Georgia") return "Georgia, serif";
|
|
434
|
+
if (family === "Helvetica") return "Helvetica, Arial, sans-serif";
|
|
435
|
+
if (family === "Arial") return "Arial, sans-serif";
|
|
436
|
+
return "Inter, Arial, sans-serif";
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
function hexToRgba(hex: string, alpha: number): string {
|
|
440
|
+
const normalized = hex.replace("#", "");
|
|
441
|
+
const value = normalized.length === 3
|
|
442
|
+
? normalized.split("").map((char) => char + char).join("")
|
|
443
|
+
: normalized;
|
|
444
|
+
const red = Number.parseInt(value.slice(0, 2), 16);
|
|
445
|
+
const green = Number.parseInt(value.slice(2, 4), 16);
|
|
446
|
+
const blue = Number.parseInt(value.slice(4, 6), 16);
|
|
447
|
+
return `rgba(${red}, ${green}, ${blue}, ${alpha})`;
|
|
448
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
export const ogImageFormats = ["png", "jpeg", "webp"] as const;
|
|
4
|
+
export const ogImagePresets = ["openGraph", "xHeader", "blogFeatured"] as const;
|
|
5
|
+
export const ogImageTemplates = ["launch", "editorial", "minimal", "bold", "split", "quote"] as const;
|
|
6
|
+
export const ogImageFontFamilies = ["Inter", "Georgia", "Arial", "Helvetica"] as const;
|
|
7
|
+
export const ogImageFontWeights = ["400", "500", "600", "700", "800"] as const;
|
|
8
|
+
export const ogImageGridPatterns = ["none", "grid", "graph", "dots"] as const;
|
|
9
|
+
export const ogImageGridColors = ["black", "white", "gray"] as const;
|
|
10
|
+
export const ogImageBackgroundModes = ["gradient", "solid"] as const;
|
|
11
|
+
|
|
12
|
+
export type OgImageFormat = (typeof ogImageFormats)[number];
|
|
13
|
+
export type OgImagePreset = (typeof ogImagePresets)[number];
|
|
14
|
+
export type OgImageTemplate = (typeof ogImageTemplates)[number];
|
|
15
|
+
export type OgImageFontFamily = (typeof ogImageFontFamilies)[number];
|
|
16
|
+
export type OgImageFontWeight = (typeof ogImageFontWeights)[number];
|
|
17
|
+
export type OgImageGridPattern = (typeof ogImageGridPatterns)[number];
|
|
18
|
+
export type OgImageGridColor = (typeof ogImageGridColors)[number];
|
|
19
|
+
export type OgImageBackgroundMode = (typeof ogImageBackgroundModes)[number];
|
|
20
|
+
|
|
21
|
+
export const OG_IMAGE_PRESET_META: Record<
|
|
22
|
+
OgImagePreset,
|
|
23
|
+
{ width: number; height: number; filename: string }
|
|
24
|
+
> = {
|
|
25
|
+
openGraph: { width: 1200, height: 630, filename: "open-graph-image" },
|
|
26
|
+
xHeader: { width: 1500, height: 500, filename: "x-header-image" },
|
|
27
|
+
blogFeatured: { width: 1600, height: 900, filename: "blog-featured-image" },
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export const ogImageTypographySchema = z.object({
|
|
31
|
+
fontFamily: z.enum(ogImageFontFamilies),
|
|
32
|
+
fontWeight: z.enum(ogImageFontWeights),
|
|
33
|
+
fontSize: z.number().min(10).max(120),
|
|
34
|
+
color: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
export type OgImageTypography = z.infer<typeof ogImageTypographySchema>;
|
|
38
|
+
|
|
39
|
+
export const DEFAULT_TAG_TYPOGRAPHY: OgImageTypography = {
|
|
40
|
+
fontFamily: "Inter",
|
|
41
|
+
fontWeight: "800",
|
|
42
|
+
fontSize: 18,
|
|
43
|
+
color: "#111111",
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export const DEFAULT_TITLE_TYPOGRAPHY: OgImageTypography = {
|
|
47
|
+
fontFamily: "Inter",
|
|
48
|
+
fontWeight: "700",
|
|
49
|
+
fontSize: 56,
|
|
50
|
+
color: "#FFFFFF",
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export const ogImageGeneratorInputSchema = z.object({
|
|
54
|
+
sourceUrl: z.string().trim().url().optional().or(z.literal("")),
|
|
55
|
+
brief: z.string().trim().max(420).optional(),
|
|
56
|
+
preset: z.enum(ogImagePresets),
|
|
57
|
+
template: z.enum(ogImageTemplates),
|
|
58
|
+
format: z.enum(ogImageFormats),
|
|
59
|
+
title: z.string().trim().min(4).max(90),
|
|
60
|
+
subtitle: z.string().trim().max(150).optional(),
|
|
61
|
+
brand: z.string().trim().max(32).optional(),
|
|
62
|
+
tags: z.string().trim().max(96).optional(),
|
|
63
|
+
logoText: z.string().trim().max(12).optional(),
|
|
64
|
+
logoName: z.string().trim().max(80).optional(),
|
|
65
|
+
logoDataUrl: z.string().regex(/^data:image\//).max(1_200_000).optional(),
|
|
66
|
+
decorImageName: z.string().trim().max(80).optional(),
|
|
67
|
+
decorImageDataUrl: z.string().regex(/^data:image\//).max(1_200_000).optional(),
|
|
68
|
+
primaryColor: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
69
|
+
accentColor: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
70
|
+
templateBackgroundColor: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
71
|
+
tagTypography: ogImageTypographySchema,
|
|
72
|
+
titleTypography: ogImageTypographySchema,
|
|
73
|
+
backgroundMode: z.enum(ogImageBackgroundModes),
|
|
74
|
+
backgroundColor: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
75
|
+
gridPattern: z.enum(ogImageGridPatterns),
|
|
76
|
+
gridColor: z.enum(ogImageGridColors),
|
|
77
|
+
gridOpacity: z.number().min(0).max(1),
|
|
78
|
+
gridBlurRadius: z.number().min(0).max(100),
|
|
79
|
+
noise: z.number().min(0).max(1),
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
export type OgImageGeneratorInput = z.infer<typeof ogImageGeneratorInputSchema>;
|
|
83
|
+
|
|
84
|
+
export const ogImageMetadataSchema = z.object({
|
|
85
|
+
url: z.string().url(),
|
|
86
|
+
finalUrl: z.string().url().optional(),
|
|
87
|
+
title: z.string().optional(),
|
|
88
|
+
description: z.string().optional(),
|
|
89
|
+
siteName: z.string().optional(),
|
|
90
|
+
image: z.string().url().optional(),
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
export type OgImageMetadata = z.infer<typeof ogImageMetadataSchema>;
|
|
94
|
+
|
|
95
|
+
export const ogImageAgentSuggestionSchema = z.object({
|
|
96
|
+
id: z.string().min(1),
|
|
97
|
+
title: z.string().trim().min(4).max(90),
|
|
98
|
+
subtitle: z.string().trim().max(150).optional(),
|
|
99
|
+
brand: z.string().trim().max(32).optional(),
|
|
100
|
+
tags: z.string().trim().max(96).optional(),
|
|
101
|
+
logoText: z.string().trim().max(12).optional(),
|
|
102
|
+
template: z.enum(ogImageTemplates),
|
|
103
|
+
primaryColor: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
104
|
+
accentColor: z.string().regex(/^#[0-9A-Fa-f]{6}$/),
|
|
105
|
+
rationale: z.string().trim().max(220),
|
|
106
|
+
safeAreaNote: z.string().trim().max(180).optional(),
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
export const ogImageAgentResultSchema = z.object({
|
|
110
|
+
promptId: z.string().optional(),
|
|
111
|
+
promptVersion: z.string().optional(),
|
|
112
|
+
summary: z.string().trim().max(360),
|
|
113
|
+
suggestions: z.array(ogImageAgentSuggestionSchema).min(1).max(6),
|
|
114
|
+
metadata: ogImageMetadataSchema.optional(),
|
|
115
|
+
usageNotes: z.array(z.string().trim().min(1).max(220)).default([]),
|
|
116
|
+
limitations: z.array(z.string().trim().min(1).max(220)).default([]),
|
|
117
|
+
generatedAt: z.string().optional(),
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
export type OgImageAgentSuggestion = z.infer<typeof ogImageAgentSuggestionSchema>;
|
|
121
|
+
export type OgImageAgentResult = z.infer<typeof ogImageAgentResultSchema>;
|
|
122
|
+
|
|
123
|
+
export function getOgImageMimeType(format: OgImageFormat): string {
|
|
124
|
+
if (format === "jpeg") return "image/jpeg";
|
|
125
|
+
if (format === "webp") return "image/webp";
|
|
126
|
+
return "image/png";
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export function buildOgImageFileName(input: Pick<OgImageGeneratorInput, "preset" | "format">): string {
|
|
130
|
+
const extension = input.format === "jpeg" ? "jpg" : input.format;
|
|
131
|
+
return `${OG_IMAGE_PRESET_META[input.preset].filename}.${extension}`;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export function parseOgImageTags(value?: string): string[] {
|
|
135
|
+
return (value ?? "")
|
|
136
|
+
.split(/[,\n]/)
|
|
137
|
+
.map((item) => item.trim())
|
|
138
|
+
.filter(Boolean)
|
|
139
|
+
.slice(0, 5);
|
|
140
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { unstable_cache } from "next/cache";
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
getToolSpec,
|
|
5
|
+
listToolSpecs,
|
|
6
|
+
} from "../../features/tools/spec-registry";
|
|
7
|
+
import type { ToolSpec, ToolStatus } from "../../features/tools/types";
|
|
8
|
+
import type { AppLocale } from "../../i18n/locale";
|
|
9
|
+
|
|
10
|
+
import { fetchToolOpsCatalog as fetchToolOpsCatalogFromPortal } from "../../host/server";
|
|
11
|
+
import type { ToolOpsRecord } from "../../host/server";
|
|
12
|
+
import { resolveToolLocaleCopy } from "../../lib/tools/resolve-tool-locale-copy";
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Portal catalog is the only publish-status source.
|
|
16
|
+
* Build phase returns [] so `pnpm build` never depends on Portal (fail closed at runtime).
|
|
17
|
+
*/
|
|
18
|
+
export async function fetchToolOpsCatalog(): Promise<ToolOpsRecord[]> {
|
|
19
|
+
if (process.env.NEXT_PHASE === "phase-production-build") {
|
|
20
|
+
return [];
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
try {
|
|
24
|
+
return await unstable_cache(
|
|
25
|
+
async () => fetchToolOpsCatalogFromPortal(),
|
|
26
|
+
["tools-ops-catalog-v3"],
|
|
27
|
+
{ tags: ["tools-catalog"], revalidate: 60 },
|
|
28
|
+
)();
|
|
29
|
+
} catch (error) {
|
|
30
|
+
console.warn("[tool-ops] portal catalog fetch failed; fail closed", error);
|
|
31
|
+
return [];
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export function getOpsRow(
|
|
36
|
+
catalog: ToolOpsRecord[],
|
|
37
|
+
slug: string,
|
|
38
|
+
): ToolOpsRecord | undefined {
|
|
39
|
+
return catalog.find((row) => row.slug === slug);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** No catalog row → draft (not visible in production). Never reads frontend spec. */
|
|
43
|
+
export function getEffectiveStatus(
|
|
44
|
+
slug: string,
|
|
45
|
+
catalog: ToolOpsRecord[],
|
|
46
|
+
): ToolStatus {
|
|
47
|
+
return getOpsRow(catalog, slug)?.status ?? "draft";
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export async function getEffectiveStatusForSlug(slug: string): Promise<ToolStatus> {
|
|
51
|
+
if (!getToolSpec(slug)) {
|
|
52
|
+
return "draft";
|
|
53
|
+
}
|
|
54
|
+
const catalog = await fetchToolOpsCatalog();
|
|
55
|
+
return getEffectiveStatus(slug, catalog);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export async function listIndexedToolSpecs(): Promise<ToolSpec[]> {
|
|
59
|
+
const catalog = await fetchToolOpsCatalog();
|
|
60
|
+
if (catalog.length === 0) {
|
|
61
|
+
return [];
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
const specsBySlug = new Map(listToolSpecs().map((spec) => [spec.slug, spec]));
|
|
65
|
+
|
|
66
|
+
return catalog
|
|
67
|
+
.filter((row) => row.status === "published" && row.showOnIndex)
|
|
68
|
+
.sort(
|
|
69
|
+
(left, right) =>
|
|
70
|
+
left.indexSort - right.indexSort ||
|
|
71
|
+
left.slug.localeCompare(right.slug),
|
|
72
|
+
)
|
|
73
|
+
.flatMap((row) => {
|
|
74
|
+
const spec = specsBySlug.get(row.slug);
|
|
75
|
+
return spec ? [spec] : [];
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export function isToolFeaturedOnIndex(
|
|
80
|
+
spec: ToolSpec,
|
|
81
|
+
catalog: ToolOpsRecord[],
|
|
82
|
+
): boolean {
|
|
83
|
+
const row = getOpsRow(catalog, spec.slug);
|
|
84
|
+
if (row) {
|
|
85
|
+
return row.featured;
|
|
86
|
+
}
|
|
87
|
+
return Boolean(spec.seo.featured);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export function getEffectiveCategory(
|
|
91
|
+
spec: ToolSpec,
|
|
92
|
+
locale: AppLocale,
|
|
93
|
+
catalog: ToolOpsRecord[],
|
|
94
|
+
): string {
|
|
95
|
+
const row = getOpsRow(catalog, spec.slug);
|
|
96
|
+
const localized =
|
|
97
|
+
locale === "zh" ? row?.categoryZh?.trim() : row?.categoryEn?.trim();
|
|
98
|
+
if (localized) {
|
|
99
|
+
return localized;
|
|
100
|
+
}
|
|
101
|
+
return resolveToolLocaleCopy(spec, locale).category;
|
|
102
|
+
}
|