mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-10 18:56:53 +00:00
1f8ce773ff
* feat(ui): hide paid features from community-tier dashboard Community installs render only the features they can use. Tier-locked sections, lock badges, upsell cards, and "Upgrade" buttons no longer appear anywhere except the License page in Settings, which is the single discoverable upgrade path. Concretely: - PaidGate and AdmiralGate now render null for non-qualifying tiers instead of upsell cards. - SectionGate (settings) hides tier-locked sections entirely. - Settings sidebar and command palette filter out items the operator cannot reach. - Configuration Status widget on the dashboard drops the Automation section for community and hides any locked rows in remaining sections. - Fleet > Status node cards drop locked summary rows. - Stack action menu, sidebar bulk bar, file upload / download, scan comparison, network topology toggle, node label picker all hide for community instead of showing disabled affordances or "Upgrade" literal text. - Removes tierUpsell, TierLockChip, and useDismissalState (no longer referenced). Backend tier guards remain authoritative; this changes UI discovery only. * test(e2e): assert upload control is absent in community tier The community-clean-ui change removes the "Upgrade to unlock upload" pill from the file explorer. Update the matching e2e assertion to verify the upload control is not rendered, instead of waiting for a pill that no longer exists.
16 lines
610 B
TypeScript
16 lines
610 B
TypeScript
import type { ReactNode } from 'react';
|
|
import { useLicense } from '@/context/LicenseContext';
|
|
|
|
/**
|
|
* Thin wrapper that renders its children only for licensees on the
|
|
* Admiral plan. All other tiers (Community, Skipper) see nothing in
|
|
* this slot. Backend tier guards (`requireAdmiral`) remain the
|
|
* authoritative enforcement; this component only controls UI
|
|
* visibility.
|
|
*/
|
|
export function AdmiralGate({ children }: { children: ReactNode }) {
|
|
const { isPaid, license } = useLicense();
|
|
const isAdmiral = isPaid && license?.variant === 'admiral';
|
|
return isAdmiral ? <>{children}</> : null;
|
|
}
|