chore: migrate frontend assets to OSS and same-origin APIs

This commit is contained in:
2026-06-04 16:03:49 +08:00
parent 7c6129555b
commit c7c52c1467
55 changed files with 728 additions and 292 deletions
+124
View File
@@ -0,0 +1,124 @@
const OSS_PUBLIC_BASE_URL = "https://stringtest.oss-cn-hangzhou.aliyuncs.com";
function oss(path: string): string {
return `${OSS_PUBLIC_BASE_URL}/${path.replace(/^\/+/, "")}`;
}
function muban(path: string): string {
return oss(`muban/${path.replace(/^\/+/, "")}`);
}
function toolbox(path: string): string {
return oss(`static/toolbox/${path.replace(/^\/+/, "")}`);
}
export const ossAssets = {
brand: {
logo: oss("logo.png"),
},
auth: {
showcaseVideo: oss("test5.mp4"),
},
home: {
backgroundVideo: muban("hero-bg.mp4"),
heroSlides: [muban("hero-1.png"), muban("hero-2.png"), muban("hero-3.png")],
features: {
ecommerce: muban("feature-ecommerce.jpg"),
script: muban("feature-script.jpg"),
token: muban("feature-token.jpg"),
},
},
toolbox: {
imageBefore: toolbox("%E7%89%9B%E4%BB%94.webp"),
imageAfter: toolbox("%E8%A5%BF%E8%A3%85.webp"),
watermarkBefore: toolbox("%E5%8E%BB%E6%B0%B4%E5%8D%B0%E5%89%8D.webp"),
watermarkAfter: toolbox("%E5%8E%BB%E6%B0%B4%E5%8D%B0%E5%90%8E.webp"),
},
community: {
cardImages: [
muban("dianshang1.png"),
muban("dianshang2.png"),
muban("dianshang3.png"),
muban("wechat-7.png"),
muban("wechat-8.png"),
muban("wechat-9.png"),
],
carouselVideos: [oss("test3.mp4"), oss("test4.mp4"), oss("test6.mp4")],
},
workflows: {
caseImages: [
muban("community/workflow-rain-night.jpg"),
muban("community/workflow-character-look.jpg"),
muban("community/workflow-skyline.jpg"),
muban("community/workflow-lab.jpg"),
],
},
ecommerce: {
generated: muban("ecommerce-carousel-generated.png"),
slides: {
slide4: muban("slide-4.png"),
slide5: muban("slide-5.png"),
},
heroSlides: [
muban("ecommerce-hero-carousel/slide-1.webp"),
muban("ecommerce-hero-carousel/slide-2.webp"),
muban("ecommerce-hero-carousel/slide-3.webp"),
muban("ecommerce-hero-carousel/slide-4.webp"),
muban("ecommerce-hero-carousel/slide-5.webp"),
],
templateSlides: [
muban("more-template-carousel/slide-1.jpg"),
muban("more-template-carousel/slide-2.jpg"),
muban("more-template-carousel/slide-3.jpg"),
muban("more-template-carousel/slide-4.png"),
muban("more-template-carousel/slide-5.gif"),
],
templateCases: [
muban("ecommerce/templates/case-1.png"),
muban("ecommerce/templates/case-2.png"),
muban("ecommerce/templates/case-3.png"),
muban("ecommerce/templates/case-4.png"),
muban("ecommerce/templates/case-5.png"),
muban("ecommerce/templates/case-6.png"),
],
productSet: {
main: muban("ecommerce/product-set/main.webp"),
scene: muban("ecommerce/product-set/scene.webp"),
model: muban("ecommerce/product-set/model.webp"),
detail: muban("ecommerce/product-set/detail.webp"),
selling: muban("ecommerce/product-set/selling.webp"),
hosting: muban("ecommerce/product-set/hosting.webp"),
},
tryOn: {
dressA: muban("ecommerce/try-on/dress-a.webp"),
dressB: muban("ecommerce/try-on/dress-b.webp"),
modelWoman: muban("ecommerce/try-on/model-woman.webp"),
modelMan: muban("ecommerce/try-on/model-man.webp"),
modelAsian: muban("ecommerce/try-on/model-asian.webp"),
tryA: muban("ecommerce/try-on/result-a.webp"),
tryB: muban("ecommerce/try-on/result-b.webp"),
jacket: muban("ecommerce/try-on/jacket.webp"),
jacketResultA: muban("ecommerce/try-on/jacket-result-a.webp"),
jacketResultB: muban("ecommerce/try-on/jacket-result-b.webp"),
hat: muban("ecommerce/try-on/hat.webp"),
hatResultA: muban("ecommerce/try-on/hat-result-a.webp"),
hatResultB: muban("ecommerce/try-on/hat-result-b.webp"),
},
detail: {
productA: muban("ecommerce/detail/product-a.webp"),
productB: muban("ecommerce/detail/product-b.webp"),
productC: muban("ecommerce/detail/product-c.webp"),
longPage: muban("ecommerce/detail/long-page.webp"),
gridA: muban("ecommerce/detail/grid-a.webp"),
gridB: muban("ecommerce/detail/grid-b.webp"),
gridC: muban("ecommerce/detail/grid-c.webp"),
gridD: muban("ecommerce/detail/grid-d.webp"),
gridE: muban("ecommerce/detail/grid-e.webp"),
gridF: muban("ecommerce/detail/grid-f.webp"),
},
},
} as const;
export type ProductSetOssAssets = typeof ossAssets.ecommerce.productSet;
export type TryOnOssAssets = typeof ossAssets.ecommerce.tryOn;
export type DetailOssAssets = typeof ossAssets.ecommerce.detail;
+11 -8
View File
@@ -1,4 +1,7 @@
import type { WebCanvasWorkflow, WebCommunityCase } from "../types";
import { ossAssets } from "./ossAssets";
const [rainNightImage, characterLookImage, skylineImage, labImage] = ossAssets.workflows.caseImages;
function createNodes(
title: string,
@@ -69,7 +72,7 @@ export const communityCases: WebCommunityCase[] = [
author: "Dave",
tag: "视频案例",
summary: "从街口推到人物面部,强调雨夜反光与情绪收束。",
imageUrl: "https://picsum.photos/id/1011/900/540",
imageUrl: rainNightImage,
workflow: {
id: "workflow-rain-night",
version: 1,
@@ -83,7 +86,7 @@ export const communityCases: WebCommunityCase[] = [
duration: "6s",
resolution: "720p",
},
nodes: createNodes("雨夜街巷,镜头从水面倒影推进到人物特写", "https://picsum.photos/id/1011/960/540"),
nodes: createNodes("雨夜街巷,镜头从水面倒影推进到人物特写", rainNightImage),
edges: createEdges(),
},
},
@@ -93,7 +96,7 @@ export const communityCases: WebCommunityCase[] = [
author: "SuperXe",
tag: "角色案例",
summary: "把单张角色图扩展成可连续出片的角色工作流。",
imageUrl: "https://picsum.photos/id/1027/900/540",
imageUrl: characterLookImage,
workflow: {
id: "workflow-character-look",
version: 1,
@@ -107,7 +110,7 @@ export const communityCases: WebCommunityCase[] = [
duration: "5s",
resolution: "720p",
},
nodes: createNodes("角色定妆,强调服装、姿态与近景表情", "https://picsum.photos/id/1027/960/540"),
nodes: createNodes("角色定妆,强调服装、姿态与近景表情", characterLookImage),
edges: createEdges(),
},
},
@@ -117,7 +120,7 @@ export const communityCases: WebCommunityCase[] = [
author: "OmniAI",
tag: "风景案例",
summary: "用广角风景做镜头进入,适合转场和开场片头。",
imageUrl: "https://picsum.photos/id/1050/900/540",
imageUrl: skylineImage,
workflow: {
id: "workflow-skyline",
version: 1,
@@ -131,7 +134,7 @@ export const communityCases: WebCommunityCase[] = [
duration: "8s",
resolution: "1080p",
},
nodes: createNodes("风景开场,镜头缓慢推进到天际线", "https://picsum.photos/id/1050/960/540"),
nodes: createNodes("风景开场,镜头缓慢推进到天际线", skylineImage),
edges: createEdges(),
},
},
@@ -141,7 +144,7 @@ export const communityCases: WebCommunityCase[] = [
author: "Studio",
tag: "实验案例",
summary: "更适合拆解推拉摇移和节奏控制的实验模板。",
imageUrl: "https://picsum.photos/id/1056/900/540",
imageUrl: labImage,
workflow: {
id: "workflow-lab",
version: 1,
@@ -155,7 +158,7 @@ export const communityCases: WebCommunityCase[] = [
duration: "6s",
resolution: "720p",
},
nodes: createNodes("镜头实验,分镜更清晰,便于二次调整", "https://picsum.photos/id/1056/960/540"),
nodes: createNodes("镜头实验,分镜更清晰,便于二次调整", labImage),
edges: createEdges(),
},
},