Files
accounted/components/ui/segmented-control.tsx
Mattsson f8db38f989 fix(analytics): mask session replays by default, chrome-only unmask (#1639)
* fix(analytics): mask session replays by default, chrome-only unmask

Invert PostHog session-replay masking from visible-by-default with pattern
masking to deny-by-default: every input value is masked wholesale (rrweb
maskAllInputs, no maskInputFn) and every text node is masked unless it sits
under data-ph-unmask chrome or a table column header (th). Chrome tags live
on the shared UI primitives (PageHeader, Label, Button except combobox
triggers, TabsTrigger, Badge, Card/Dialog/Sheet titles, tooltips, help
popovers, empty states, settings labels), and tagged chrome is still
pattern-scrubbed for amounts and person-/organisationsnummer. data-ph-mask
beats data-ph-unmask, so call sites that interpolate user data into chrome
stay masked; a very-thorough audit swept every unmasked primitive and each
found site got a call-site mask. Confirm-dialog wrappers and toasts stay
masked centrally: their copy describes user objects by design. Untagged new
UI over-masks instead of leaking. Privacy policy, RoPA and decision log
updated in the same change.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(analytics): tag detail-section chrome merged from main

The register-detail primitives landed on main after the replay-masking
audit ran: kickers and DefRow labels are static i18n chrome, values stay
masked.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(analytics): close skeptic and review findings on replay masking

Explicit data-ph tags now resolve before the th chrome fallback, so a th
nested inside a data-ph-mask container masks correctly (regression test
added). Seven missed text-leak sites get call-site masks: delete-invoice
and credit-page invoice numbers, IB-correction voucher reference, TIC
orgnr (served unnormalized, so the separator-based scrub cannot be relied
on), articles search-term empty state, dimension segment labels, and
activate-account buttons. The attribute channel is closed with rrweb's
blockClass: inputs whose placeholder carries an effective user value
(salary overrides, correction description, danger-zone confirms, credit
confirm) get ph-no-capture, removing the element from recordings while
the prefill UX stays intact; the pivot-th title attribute is dropped.
Privacy-policy effective date bumped to 2026-08-17.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-08-17 11:32:45 +02:00

73 lines
2.2 KiB
TypeScript

'use client'
import * as React from 'react'
import { cn } from '@/lib/utils'
export interface SegmentedControlOption<T extends string> {
value: T
/** Segment label. Pass a fragment for custom trailing content (e.g. a muted count). */
label: React.ReactNode
/** Renders the standard count chip after the label when > 0. */
count?: number
}
interface SegmentedControlProps<T extends string> {
value: T
onChange: (value: T) => void
options: SegmentedControlOption<T>[]
'aria-label'?: string
className?: string
}
/**
* The toolbar segmented control (view/mode switcher). Pill-in-pill per the
* radius ladder: interactive toolbar controls are pills, and pill nesting is
* concentric by construction. One fixed height (h-8) shared with
* ToolbarSearch and ContextPicker so a toolbar row reads as one line.
*/
export function SegmentedControl<T extends string>({
value,
onChange,
options,
className,
...aria
}: SegmentedControlProps<T>) {
return (
<div
className={cn(
'inline-flex h-8 shrink-0 items-center gap-0.5 rounded-full bg-muted/70 p-[3px]',
className,
)}
role="tablist"
aria-label={aria['aria-label']}
>
{options.map((opt) => (
// data-ph-unmask: segment labels are static i18n chrome in session
// replays; the count chip inside is data and carries data-ph-mask
// (nearest tag wins), matching the nav count bubbles.
<button
key={opt.value}
type="button"
role="tab"
aria-selected={value === opt.value}
onClick={() => onChange(opt.value)}
data-ph-unmask=""
className={cn(
'inline-flex h-full items-center gap-1.5 rounded-full px-3.5 text-[12.5px] transition-colors duration-150',
value === opt.value
? 'border border-border bg-card font-medium text-foreground'
: 'text-muted-foreground hover:text-foreground',
)}
>
{opt.label}
{typeof opt.count === 'number' && opt.count > 0 && (
<span data-ph-mask="" className="rounded-full bg-secondary px-1.5 text-[10px] font-medium tabular-nums">
{opt.count}
</span>
)}
</button>
))}
</div>
)
}