Redesign navigation, home overview, user portrait, and valuation pages with improved functionality and responsive design. Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
143 lines
5.1 KiB
TypeScript
143 lines
5.1 KiB
TypeScript
"use client"
|
||
|
||
import { useState } from "react"
|
||
import { useRouter } from "next/navigation"
|
||
import { ChevronLeft, Search } from "lucide-react"
|
||
import { Button } from "@/components/ui/button"
|
||
import { StepIndicator } from "../../components/step-indicator"
|
||
import { BasicSettings } from "../../components/basic-settings"
|
||
import { DeviceSelectionDialog } from "../../components/device-selection-dialog"
|
||
import { Input } from "@/components/ui/input"
|
||
|
||
export default function EditMomentsSyncPage() {
|
||
const router = useRouter()
|
||
const [currentStep, setCurrentStep] = useState(1)
|
||
const [deviceDialogOpen, setDeviceDialogOpen] = useState(false)
|
||
const [formData, setFormData] = useState({
|
||
taskName: "同步卡若主号",
|
||
startTime: "06:00",
|
||
endTime: "23:59",
|
||
syncCount: 5,
|
||
accountType: "business" as const,
|
||
enabled: true,
|
||
selectedDevices: [] as string[],
|
||
selectedLibraries: [] as string[],
|
||
})
|
||
|
||
const handleUpdateFormData = (data: Partial<typeof formData>) => {
|
||
setFormData((prev) => ({ ...prev, ...data }))
|
||
}
|
||
|
||
const handleNext = () => {
|
||
setCurrentStep((prev) => Math.min(prev + 1, 3))
|
||
}
|
||
|
||
const handlePrev = () => {
|
||
setCurrentStep((prev) => Math.max(prev - 1, 1))
|
||
}
|
||
|
||
const handleComplete = () => {
|
||
console.log("Form submitted:", formData)
|
||
router.push("/workspace/moments-sync")
|
||
}
|
||
|
||
return (
|
||
<div className="min-h-screen bg-[#F8F9FA] pb-20">
|
||
<header className="sticky top-0 z-10 bg-white">
|
||
<div className="flex items-center h-14 px-4">
|
||
<Button variant="ghost" size="icon" onClick={() => router.back()} className="hover:bg-gray-50">
|
||
<ChevronLeft className="h-6 w-6" />
|
||
</Button>
|
||
<h1 className="ml-2 text-lg font-medium">编辑朋友圈同步</h1>
|
||
</div>
|
||
</header>
|
||
|
||
<div className="mt-8">
|
||
<StepIndicator currentStep={currentStep} />
|
||
|
||
<div className="mt-8">
|
||
{currentStep === 1 && (
|
||
<BasicSettings formData={formData} onChange={handleUpdateFormData} onNext={handleNext} />
|
||
)}
|
||
|
||
{currentStep === 2 && (
|
||
<div className="space-y-6 px-6">
|
||
<div className="relative">
|
||
<Search className="absolute left-3 top-4 h-5 w-5 text-gray-400" />
|
||
<Input
|
||
placeholder="选择设备"
|
||
className="h-12 pl-11 rounded-xl border-gray-200 text-base"
|
||
onClick={() => setDeviceDialogOpen(true)}
|
||
readOnly
|
||
/>
|
||
</div>
|
||
|
||
{formData.selectedDevices.length > 0 && (
|
||
<div className="text-base text-gray-500">已选设备:{formData.selectedDevices.length} 个</div>
|
||
)}
|
||
|
||
<div className="flex space-x-4 pt-4">
|
||
<Button variant="outline" onClick={handlePrev} className="flex-1 h-12 rounded-xl text-base">
|
||
上一步
|
||
</Button>
|
||
<Button
|
||
onClick={handleNext}
|
||
className="flex-1 h-12 bg-blue-600 hover:bg-blue-700 rounded-xl text-base shadow-sm"
|
||
>
|
||
下一步
|
||
</Button>
|
||
</div>
|
||
|
||
<DeviceSelectionDialog
|
||
open={deviceDialogOpen}
|
||
onOpenChange={setDeviceDialogOpen}
|
||
selectedDevices={formData.selectedDevices}
|
||
onSelect={(devices) => {
|
||
handleUpdateFormData({ selectedDevices: devices })
|
||
setDeviceDialogOpen(false)
|
||
}}
|
||
/>
|
||
</div>
|
||
)}
|
||
|
||
{currentStep === 3 && (
|
||
<div className="space-y-6 px-6">
|
||
<div className="relative">
|
||
<Search className="absolute left-3 top-4 h-5 w-5 text-gray-400" />
|
||
<Input placeholder="选择内容库" className="h-12 pl-11 rounded-xl border-gray-200 text-base" />
|
||
</div>
|
||
|
||
<div className="flex space-x-4 pt-4">
|
||
<Button variant="outline" onClick={handlePrev} className="flex-1 h-12 rounded-xl text-base">
|
||
上一步
|
||
</Button>
|
||
<Button
|
||
onClick={handleComplete}
|
||
className="flex-1 h-12 bg-blue-600 hover:bg-blue-700 rounded-xl text-base shadow-sm"
|
||
>
|
||
完成
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
|
||
<nav className="fixed bottom-0 left-0 right-0 h-16 bg-white border-t flex items-center justify-around px-6">
|
||
<button className="flex flex-col items-center text-blue-600">
|
||
<span className="text-sm mt-1">首页</span>
|
||
</button>
|
||
<button className="flex flex-col items-center text-gray-400">
|
||
<span className="text-sm mt-1">场景获客</span>
|
||
</button>
|
||
<button className="flex flex-col items-center text-gray-400">
|
||
<span className="text-sm mt-1">工作台</span>
|
||
</button>
|
||
<button className="flex flex-col items-center text-gray-400">
|
||
<span className="text-sm mt-1">我的</span>
|
||
</button>
|
||
</nav>
|
||
</div>
|
||
)
|
||
}
|