diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-14 19:25:46 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-14 19:25:46 +0200 | 
| commit | 1d162d7aafb3cfe2c3351b5fd891bbf6d476e9b2 (patch) | |
| tree | c263967fcb9f0fdaa2f665b0471091dfcc62b34e /src/components/organisms/toolbar | |
| parent | 15fd9f4a6ecf947c7648c6b7865b97c40124fde1 (diff) | |
chore: add a Settings component
Diffstat (limited to 'src/components/organisms/toolbar')
| -rw-r--r-- | src/components/organisms/toolbar/settings.module.scss | 10 | ||||
| -rw-r--r-- | src/components/organisms/toolbar/settings.stories.tsx | 76 | ||||
| -rw-r--r-- | src/components/organisms/toolbar/settings.test.tsx | 18 | ||||
| -rw-r--r-- | src/components/organisms/toolbar/settings.tsx | 72 | 
4 files changed, 176 insertions, 0 deletions
| diff --git a/src/components/organisms/toolbar/settings.module.scss b/src/components/organisms/toolbar/settings.module.scss new file mode 100644 index 0000000..08c8cd4 --- /dev/null +++ b/src/components/organisms/toolbar/settings.module.scss @@ -0,0 +1,10 @@ +@use "@styles/abstracts/functions" as fun; +@use "@styles/abstracts/mixins" as mix; + +.modal { +  @include mix.media("screen") { +    @include mix.dimensions("sm") { +      width: 120%; +    } +  } +} diff --git a/src/components/organisms/toolbar/settings.stories.tsx b/src/components/organisms/toolbar/settings.stories.tsx new file mode 100644 index 0000000..f01e772 --- /dev/null +++ b/src/components/organisms/toolbar/settings.stories.tsx @@ -0,0 +1,76 @@ +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import { useState } from 'react'; +import { IntlProvider } from 'react-intl'; +import SettingsComponent from './settings'; + +export default { +  title: 'Organisms/Toolbar', +  component: SettingsComponent, +  argTypes: { +    className: { +      control: { +        type: 'text', +      }, +      description: 'Set additional classnames to the modal wrapper.', +      table: { +        category: 'Styles', +      }, +      type: { +        name: 'string', +        required: false, +      }, +    }, +    isActive: { +      control: { +        type: null, +      }, +      description: 'Define the modal state: either opened or closed.', +      type: { +        name: 'boolean', +        required: true, +      }, +    }, +    setIsActive: { +      control: { +        type: null, +      }, +      description: 'A callback function to update modal state.', +      type: { +        name: 'function', +        required: true, +      }, +    }, +    tooltipClassName: { +      control: { +        type: 'text', +      }, +      description: 'Set additional classnames to the tooltip wrapper.', +      table: { +        category: 'Styles', +      }, +      type: { +        name: 'string', +        required: false, +      }, +    }, +  }, +} as ComponentMeta<typeof SettingsComponent>; + +const Template: ComponentStory<typeof SettingsComponent> = ({ +  isActive, +  setIsActive: _setIsActive, +  ...args +}) => { +  const [isOpen, setIsOpen] = useState<boolean>(isActive); + +  return ( +    <IntlProvider locale="en"> +      <SettingsComponent isActive={isOpen} setIsActive={setIsOpen} {...args} /> +    </IntlProvider> +  ); +}; + +export const Settings = Template.bind({}); +Settings.args = { +  isActive: false, +}; diff --git a/src/components/organisms/toolbar/settings.test.tsx b/src/components/organisms/toolbar/settings.test.tsx new file mode 100644 index 0000000..96a32c9 --- /dev/null +++ b/src/components/organisms/toolbar/settings.test.tsx @@ -0,0 +1,18 @@ +import { render, screen } from '@test-utils'; +import Settings from './settings'; + +describe('Settings', () => { +  it('renders a button to open settings modal', () => { +    render(<Settings isActive={false} setIsActive={() => null} />); +    expect( +      screen.getByRole('checkbox', { name: 'Open settings' }) +    ).toBeInTheDocument(); +  }); + +  it('renders a button to close settings modal', () => { +    render(<Settings isActive={true} setIsActive={() => null} />); +    expect( +      screen.getByRole('checkbox', { name: 'Close settings' }) +    ).toBeInTheDocument(); +  }); +}); diff --git a/src/components/organisms/toolbar/settings.tsx b/src/components/organisms/toolbar/settings.tsx new file mode 100644 index 0000000..88539fb --- /dev/null +++ b/src/components/organisms/toolbar/settings.tsx @@ -0,0 +1,72 @@ +import Checkbox, { CheckboxProps } from '@components/atoms/forms/checkbox'; +import Label from '@components/atoms/forms/label'; +import Cog from '@components/atoms/icons/cog'; +import { VFC } from 'react'; +import { useIntl } from 'react-intl'; +import SettingsModal from '../modals/settings-modal'; +import sharedStyles from './toolbar-items.module.scss'; +import settingsStyles from './settings.module.scss'; + +export type SettingsProps = { +  /** +   * Set additional classnames to the modal wrapper. +   */ +  className?: string; +  /** +   * The button state. +   */ +  isActive: CheckboxProps['value']; +  /** +   * A callback function to handle button state. +   */ +  setIsActive: CheckboxProps['setValue']; +  /** +   * Set additional classnames to the tooltip wrapper. +   */ +  tooltipClassName?: string; +}; + +const Settings: VFC<SettingsProps> = ({ +  className = '', +  isActive, +  setIsActive, +  tooltipClassName = '', +}) => { +  const intl = useIntl(); +  const label = isActive +    ? intl.formatMessage({ +        defaultMessage: 'Close settings', +        id: '+viX9b', +        description: 'Settings: Close label', +      }) +    : intl.formatMessage({ +        defaultMessage: 'Open settings', +        id: 'QCW3cy', +        description: 'Settings: Open label', +      }); + +  return ( +    <div className={`${sharedStyles.item} ${settingsStyles.item}`}> +      <Checkbox +        id="settings-button" +        name="settings-button" +        value={isActive} +        setValue={setIsActive} +        className={`${sharedStyles.checkbox} ${settingsStyles.checkbox}`} +      /> +      <Label +        htmlFor="settings-button" +        aria-label={label} +        className={`${sharedStyles.label} ${settingsStyles.label}`} +      > +        <Cog /> +      </Label> +      <SettingsModal +        className={`${sharedStyles.modal} ${settingsStyles.modal} ${className}`} +        tooltipClassName={tooltipClassName} +      /> +    </div> +  ); +}; + +export default Settings; | 
