initial commit

This commit is contained in:
Hampus Kraft
2026-01-01 20:42:59 +00:00
commit 2f557eda8c
9029 changed files with 1490197 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
/*
* Copyright (C) 2026 Fluxer Contributors
*
* This file is part of Fluxer.
*
* Fluxer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Fluxer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
*/
import {clsx} from 'clsx';
import {motion} from 'framer-motion';
import styles from './SegmentedTabs.module.css';
export type SegmentedTab<T extends string = string> = {
id: T;
label: string;
};
type SegmentedTabsProps<T extends string = string> = {
tabs: Array<SegmentedTab<T>>;
selectedTab: T;
onTabChange: (tab: T) => void;
ariaLabel?: string;
className?: string;
};
export function SegmentedTabs<T extends string = string>({
tabs,
selectedTab,
onTabChange,
ariaLabel,
className,
}: SegmentedTabsProps<T>) {
const selectedIndex = tabs.findIndex((tab) => tab.id === selectedTab);
return (
<div className={clsx(styles.container, className)}>
<div className={styles.tabList} role="tablist" aria-label={ariaLabel}>
{tabs.map((tab) => (
<button
key={tab.id}
type="button"
role="tab"
aria-selected={selectedTab === tab.id}
onClick={() => onTabChange(tab.id)}
className={clsx(styles.tab, selectedTab === tab.id ? styles.tabActive : styles.tabInactive)}
>
{tab.label}
</button>
))}
<motion.div
className={styles.tabBackground}
layout
transition={{
type: 'spring',
stiffness: 500,
damping: 35,
}}
style={{
width: `calc((100% - 6px) / ${tabs.length})`,
left: `calc(3px + (100% - 6px) * ${selectedIndex} / ${tabs.length})`,
}}
/>
</div>
</div>
);
}