2d0d8a2777
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Has been skipped
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 54s
CI/CD Pipeline / Validate - Code Quality (push) Has been cancelled
CI/CD Pipeline / Validate - Type Check (mypy) (push) Has been cancelled
CI/CD Pipeline / Validate - Migration (alembic) (push) Has been cancelled
CI/CD Pipeline / Unit Tests (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Unit Tests (push) Has been cancelled
CI/CD Pipeline / Build Staging API Image (push) Has been cancelled
CI/CD Pipeline / Build Staging Web Image (push) Has been cancelled
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Has been cancelled
CI/CD Pipeline / Staging E2E Tests (push) Has been cancelled
CI/CD Pipeline / Staging API Integration Tests (push) Has been cancelled
CI/CD Pipeline / Build Production API Image (push) Has been cancelled
CI/CD Pipeline / Build Production Web Image (push) Has been cancelled
CI/CD Pipeline / Build Production Worker Image (push) Has been cancelled
CI/CD Pipeline / Deploy Production (push) Has been cancelled
CI/CD Pipeline / Production Browser E2E (push) Has been cancelled
CI/CD Pipeline / ACR Image Cleanup (push) Has been cancelled
CI/CD Pipeline / Canary Release to Production (push) Has been cancelled
CI/CD Pipeline / CI Gate (push) Has been cancelled
后端: - create_asset 函数简化为仅返回 410,删除 46 行死代码 - 移除无用的依赖注入参数(asset_repository 等) 前端: - 删除 createAsset 函数定义(assets.ts) - 删除 createAsset 的 re-export(index.ts) 注: uploadAsset 函数保留(语音克隆 CloneModal 仍在使用)
87 lines
2.8 KiB
TypeScript
87 lines
2.8 KiB
TypeScript
/**
|
|
* 素材 CRUD API
|
|
*/
|
|
import apiClient from "../client"
|
|
import type { AssetItem, AssetMetadata } from "./types"
|
|
|
|
/** 获取素材库下的所有素材 */
|
|
export const getAssets = async (
|
|
libraryId: string,
|
|
options?: {
|
|
status?: string
|
|
page?: number
|
|
page_size?: number
|
|
},
|
|
): Promise<{ items: AssetItem[]; total: number }> => {
|
|
const params: Record<string, string | number> = { library_id: libraryId }
|
|
if (options?.status) params.status = options.status
|
|
if (options?.page) params.page = options.page
|
|
if (options?.page_size) params.page_size = options.page_size
|
|
const response = await apiClient.get("/assets", { params })
|
|
const data = response.data || {}
|
|
const items: AssetItem[] = data.items || []
|
|
const total: number = typeof data.total === "number" ? data.total : items.length
|
|
return { items, total }
|
|
}
|
|
|
|
/** 按类型获取素材(如 voice/video/image),支持可选筛选 */
|
|
export const getAssetsByKind = async (
|
|
kind: string,
|
|
filters?: {
|
|
keyword?: string
|
|
gender?: string
|
|
style?: string
|
|
tag_ids?: string[]
|
|
limit?: number
|
|
page?: number
|
|
page_size?: number
|
|
},
|
|
): Promise<AssetItem[]> => {
|
|
const params: Record<string, string | number> = { kind }
|
|
if (filters?.keyword) params.keyword = filters.keyword
|
|
if (filters?.gender) params.gender = filters.gender
|
|
if (filters?.style) params.style = filters.style
|
|
if (filters?.tag_ids?.length) params.tag_ids = filters.tag_ids.join(",")
|
|
if (filters?.limit) params.limit = filters.limit
|
|
if (filters?.page) params.page = filters.page
|
|
if (filters?.page_size) params.page_size = filters.page_size
|
|
const response = await apiClient.get("/assets", { params })
|
|
return response.data.items || []
|
|
}
|
|
|
|
/**
|
|
* 智能匹配素材(后端 AI 选素材)
|
|
* 调用后端 smart-match 端点,由后端根据素材库内容智能选择素材
|
|
*/
|
|
export const smartMatchAssets = async (libraryId: string): Promise<{ items: AssetItem[] }> => {
|
|
const response = await apiClient.post("/assets/smart-match", {
|
|
library_id: libraryId,
|
|
})
|
|
return response.data
|
|
}
|
|
|
|
/** 更新素材(名称、metadata 等) */
|
|
export const updateAsset = async (
|
|
assetId: string,
|
|
data: { name?: string; metadata?: AssetMetadata },
|
|
): Promise<AssetItem> => {
|
|
const response = await apiClient.put(`/assets/${assetId}`, data)
|
|
return response.data
|
|
}
|
|
|
|
/** 更新素材审核状态 */
|
|
export const updateAssetReviewStatus = async (
|
|
assetId: string,
|
|
reviewStatus: "pending_review" | "approved" | "rejected",
|
|
): Promise<AssetItem> => {
|
|
const response = await apiClient.patch(`/assets/${assetId}/review`, {
|
|
review_status: reviewStatus,
|
|
})
|
|
return response.data
|
|
}
|
|
|
|
/** 删除素材 */
|
|
export const deleteAsset = async (assetId: string): Promise<void> => {
|
|
await apiClient.delete(`/assets/${assetId}`)
|
|
}
|