mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 19:56:18 -04:00
29 lines
664 B
TypeScript
29 lines
664 B
TypeScript
type Source = 'local' | 'partial' | 'none'
|
|
|
|
interface Props {
|
|
source: Source
|
|
label?: string
|
|
}
|
|
|
|
export function SourceBadge({ source, label }: Props) {
|
|
switch (source) {
|
|
case 'local':
|
|
return <span className="badge badge-local">{label ?? 'Local'}</span>
|
|
case 'partial':
|
|
return <span className="badge badge-partial">{label ?? 'Partial'}</span>
|
|
default:
|
|
return <span className="badge badge-none">{label ?? 'None'}</span>
|
|
}
|
|
}
|
|
|
|
export function weekendStatusLabel(source: Source): string {
|
|
switch (source) {
|
|
case 'local':
|
|
return 'Full'
|
|
case 'partial':
|
|
return 'Partial'
|
|
default:
|
|
return 'Missing'
|
|
}
|
|
}
|