dify/web/app/education-apply/applied-education-content.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

99 lines
4.0 KiB
TypeScript

'use client'
import type { TenantListItemResponse } from '@dify/contracts/api/console/workspaces/types.gen'
import type { ReactNode } from 'react'
import type { Plan as PlanType } from '@/app/components/billing/type'
import type { ICurrentWorkspace } from '@/models/common'
import { Select, SelectTrigger } from '@langgenius/dify-ui/select'
import { useTranslation } from 'react-i18next'
import { Plan } from '@/app/components/billing/type'
import { WorkplaceSelectorContent } from '@/app/components/header/account-dropdown/workplace-selector'
import { PlanBadge } from '@/app/components/header/plan-badge'
type AppliedEducationContentProps = {
workspaces: TenantListItemResponse[]
currentWorkspace: ICurrentWorkspace
plan: PlanType
action: ReactNode
onSwitchWorkspace: (tenantId: string) => void
}
const workspacePlans = new Set<string>(Object.values(Plan))
function isWorkspacePlan(plan: string | null | undefined): plan is Plan {
return !!plan && workspacePlans.has(plan)
}
const AppliedEducationContent = ({
workspaces,
currentWorkspace,
plan,
action,
onSwitchWorkspace,
}: AppliedEducationContentProps) => {
const { t } = useTranslation()
const currentWorkspaceInList = workspaces.find((workspace) => workspace.current)
const workspacePlan = isWorkspacePlan(currentWorkspaceInList?.plan)
? currentWorkspaceInList.plan
: isWorkspacePlan(plan)
? plan
: Plan.sandbox
const workspaceName = currentWorkspaceInList?.name || currentWorkspace?.name
const workspaceId = currentWorkspaceInList?.id || currentWorkspace?.id
return (
<div className="flex w-full flex-col gap-4">
<div className="rounded-lg border border-effects-highlight bg-background-default-subtle px-3">
<div className="flex items-center gap-2">
<div className="flex size-5 shrink-0 items-center justify-center rounded-full bg-state-success-solid text-text-primary-on-surface">
<span className="i-ri-check-line size-3.5" />
</div>
<div>
<div className="text-text-secondary">
{t(($) => $['applied.step1.description'], { ns: 'education' })}
</div>
</div>
</div>
</div>
<div className="rounded-lg px-3">
<div className="mb-3.5 flex items-center gap-2">
<div className="flex size-5 shrink-0 items-center justify-center rounded-full bg-components-icon-bg-blue-solid system-xs-semibold text-text-primary-on-surface">
2
</div>
<div>
<div className="system-xl-medium text-text-secondary">
{t(($) => $['applied.step2.description'], { ns: 'education' })}
</div>
</div>
</div>
<div className="ml-7">
<Select
value={workspaceId ?? ''}
onValueChange={(value) => {
if (value) onSwitchWorkspace(value)
}}
>
<SelectTrigger className="h-12! w-fit max-w-full min-w-[280px] cursor-pointer justify-between rounded-lg border-[0.5px] border-transparent bg-components-input-bg-normal px-3! py-1.5! hover:bg-state-base-hover">
<span className="flex min-w-0 items-center gap-3">
<span className="flex size-8 shrink-0 items-center justify-center rounded-lg bg-components-icon-bg-blue-solid text-[14px]">
<span className="bg-linear-to-r from-components-avatar-shape-fill-stop-0 to-components-avatar-shape-fill-stop-100 bg-clip-text font-semibold text-shadow-shadow-1 uppercase opacity-90">
{workspaceName?.[0]?.toLocaleUpperCase()}
</span>
</span>
<span className="min-w-0 truncate system-md-semibold text-text-primary">
{workspaceName}
</span>
<PlanBadge plan={workspacePlan} />
</span>
</SelectTrigger>
<WorkplaceSelectorContent workspaces={workspaces} />
</Select>
<div className="mt-3 pr-5">{action}</div>
</div>
</div>
</div>
)
}
export default AppliedEducationContent