1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 07:19:41 +02:00

refactor(app): move react components to react codebase [EE-3179] (#6971)

This commit is contained in:
Chaim Lev-Ari 2022-06-17 19:18:42 +03:00 committed by GitHub
parent 212400c283
commit 18252ab854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
346 changed files with 642 additions and 644 deletions

View file

@ -0,0 +1,10 @@
.group input {
display: none;
}
.group input:checked + label {
color: #fff;
background-color: #286090;
background-image: none;
border-color: #204d74;
}

View file

@ -0,0 +1,31 @@
import { Meta } from '@storybook/react';
import { useState } from 'react';
import { ButtonSelector, Option } from './ButtonSelector';
export default {
component: ButtonSelector,
title: 'Components/ButtonSelector',
} as Meta;
export { TwoOptionsSelector };
function TwoOptionsSelector() {
const options: Option<string>[] = [
{ value: 'sAMAccountName', label: 'username' },
{ value: 'userPrincipalName', label: 'user@domainname' },
];
const [value, setValue] = useState('sAMAccountName');
return (
<ButtonSelector<string>
onChange={handleChange}
value={value}
options={options}
/>
);
function handleChange(value: string) {
setValue(value);
}
}

View file

@ -0,0 +1,57 @@
import clsx from 'clsx';
import { PropsWithChildren, ReactNode } from 'react';
import { ButtonGroup, Size } from '@@/buttons/ButtonGroup';
import styles from './ButtonSelector.module.css';
export interface Option<T> {
value: T;
label?: ReactNode;
}
interface Props<T> {
value: T;
onChange(value: T): void;
options: Option<T>[];
size?: Size;
}
export function ButtonSelector<T extends string | number>({
value,
onChange,
size,
options,
}: Props<T>) {
return (
<ButtonGroup size={size} className={styles.group}>
{options.map((option) => (
<OptionItem
key={option.value}
selected={value === option.value}
onChange={() => onChange(option.value)}
>
{option.label || option.value.toString()}
</OptionItem>
))}
</ButtonGroup>
);
}
interface OptionItemProps {
selected: boolean;
onChange(): void;
}
function OptionItem({
selected,
children,
onChange,
}: PropsWithChildren<OptionItemProps>) {
return (
<label className={clsx('btn btn-primary', { active: selected })}>
{children}
<input type="radio" checked={selected} onChange={onChange} />
</label>
);
}