4578b65965
CI/CD Pipeline / Check if frontend-only change (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 Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 2m30s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 2m37s
CI/CD Pipeline / Frontend Lint (push) Successful in 3m3s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 3m18s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 3m18s
CI/CD Pipeline / Frontend Unit Tests (push) Failing after 3m17s
CI/CD Pipeline / Validate - Code Quality (push) Failing after 3m33s
CI/CD Pipeline / Integration Tests (push) Successful in 2m22s
CI/CD Pipeline / Build Staging API Image (push) Successful in 6m19s
CI/CD Pipeline / Unit Tests (push) Failing after 6m57s
CI/CD Pipeline / CI Gate (push) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m31s
CI/CD Pipeline / ACR Image Cleanup (push) Failing after 16s
CI/CD Pipeline / Staging E2E Tests (push) Successful in 1m46s
CI/CD Pipeline / Staging API Integration Tests (push) Successful in 3m59s
CI/CD Pipeline / Canary Release to Production (push) Has been skipped
Co-authored-by: xiaoxia <dev@xiaoxiajianji.com> Co-committed-by: xiaoxia <dev@xiaoxiajianji.com>
75 lines
1.9 KiB
TypeScript
75 lines
1.9 KiB
TypeScript
import React from "react"
|
|
import { Input, Select } from "@/components/ui"
|
|
import { TYPE_OPTIONS } from "./constants"
|
|
import { QUALITY_OPTIONS } from "@/api/template-editor"
|
|
import type { ViewMode } from "./types"
|
|
|
|
interface SelectorToolbarProps {
|
|
searchText: string
|
|
filterType: string
|
|
filterQuality: string
|
|
viewMode: ViewMode
|
|
showQualityFilter: boolean
|
|
onSearchChange: (value: string) => void
|
|
onTypeChange: (value: string) => void
|
|
onQualityChange: (value: string) => void
|
|
onViewModeChange: (mode: ViewMode) => void
|
|
}
|
|
|
|
const SelectorToolbar: React.FC<SelectorToolbarProps> = ({
|
|
searchText,
|
|
filterType,
|
|
filterQuality,
|
|
viewMode,
|
|
showQualityFilter,
|
|
onSearchChange,
|
|
onTypeChange,
|
|
onQualityChange,
|
|
onViewModeChange,
|
|
}) => {
|
|
return (
|
|
<div className="as-toolbar">
|
|
<div className="as-toolbar-left">
|
|
<div className="as-search">
|
|
<Input
|
|
placeholder="搜索素材..."
|
|
value={searchText}
|
|
onChange={(e) => onSearchChange(e.target.value)}
|
|
prefix="🔍"
|
|
/>
|
|
</div>
|
|
<Select
|
|
value={filterType}
|
|
onChange={(v: string) => onTypeChange(v)}
|
|
options={TYPE_OPTIONS}
|
|
/>
|
|
{showQualityFilter && (
|
|
<Select
|
|
value={filterQuality}
|
|
onChange={(v: string) => onQualityChange(v)}
|
|
options={QUALITY_OPTIONS}
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="as-toolbar-right">
|
|
<button
|
|
className={`as-view-btn${viewMode === "grid" ? " active" : ""}`}
|
|
onClick={() => onViewModeChange("grid")}
|
|
title="网格视图"
|
|
>
|
|
⊞
|
|
</button>
|
|
<button
|
|
className={`as-view-btn${viewMode === "list" ? " active" : ""}`}
|
|
onClick={() => onViewModeChange("list")}
|
|
title="列表视图"
|
|
>
|
|
☰
|
|
</button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SelectorToolbar
|