da53b6d175
CI/CD Pipeline / Check if frontend-only change (push) Has been cancelled
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 Lint (push) Has been cancelled
CI/CD Pipeline / Frontend Unit Tests (push) Has been cancelled
CI/CD Pipeline / PR Build API Image (push) Has been cancelled
CI/CD Pipeline / PR Build Web Image (push) Has been cancelled
CI/CD Pipeline / PR Build Worker Image (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 / Build Staging Worker 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
refactor: GeneratePage Phase 1 — 抽离常量/类型/UI组件(3036→2682行)
41 lines
948 B
TypeScript
41 lines
948 B
TypeScript
/**
|
||
* 智能剪辑页头组件
|
||
*/
|
||
import React from "react"
|
||
import { ThunderboltOutlined } from "@ant-design/icons"
|
||
|
||
interface GenerateHeaderProps {
|
||
/** 是否来自模板草稿(URL 带 edit_plan_id) */
|
||
fromEditPlan?: boolean
|
||
}
|
||
|
||
const GenerateHeader: React.FC<GenerateHeaderProps> = ({ fromEditPlan }) => {
|
||
return (
|
||
<div className="xx-generate-head">
|
||
<div>
|
||
<h2>
|
||
<ThunderboltOutlined style={{ marginRight: 8 }} />
|
||
智能剪辑
|
||
</h2>
|
||
<p>快速生成短视频,支持多种风格和素材组合</p>
|
||
</div>
|
||
{fromEditPlan && (
|
||
<span
|
||
style={{
|
||
background: "#dbeafe",
|
||
color: "#1d4ed8",
|
||
fontSize: 12,
|
||
padding: "4px 10px",
|
||
borderRadius: 999,
|
||
fontWeight: 600,
|
||
}}
|
||
>
|
||
🎬 来自模板草稿
|
||
</span>
|
||
)}
|
||
</div>
|
||
)
|
||
}
|
||
|
||
export default GenerateHeader
|