Skip to content

Commit

Permalink
feat(plasma-b2c): Replace Radiobox from plasma-new-hope and update …
Browse files Browse the repository at this point in the history
…snapshots
  • Loading branch information
neretin-trike committed Sep 28, 2023
1 parent 1a41dbc commit 29c97dd
Show file tree
Hide file tree
Showing 10 changed files with 134 additions and 11 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 21 additions & 5 deletions packages/plasma-b2c/api/plasma-b2c.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,7 @@ import { PriceProps } from '@salutejs/plasma-hope';
import { Progress } from '@salutejs/plasma-hope';
import { ProgressProps } from '@salutejs/plasma-hope';
import { PropsType } from '@salutejs/plasma-new-hope/types/engines/types';
import { Radiobox } from '@salutejs/plasma-hope';
import { RadioboxProps } from '@salutejs/plasma-hope';
import { RadioGroup } from '@salutejs/plasma-hope';
import { RadioGroup } from '@salutejs/plasma-new-hope/styled-components';
import { radiuses } from '@salutejs/plasma-core';
import { Ratio } from '@salutejs/plasma-hope';
import { default as React_2 } from 'react';
Expand Down Expand Up @@ -665,9 +663,27 @@ export { Progress }

export { ProgressProps }

export { Radiobox }
// @public
export const Radiobox: FunctionComponent<PropsType< {
size: {
s: string;
m: string;
};
view: {
accent: string;
};
disabled: {
true: string;
};
focused: {
true: string;
};
}> & Filter<InputHTMLAttributes<HTMLInputElement>, "size"> & Pick<BaseboxProps, "size" | "view" | "id" | "focused" | "label" | "description" | "singleLine"> & RefAttributes<HTMLInputElement>>;

export { RadioboxProps }
// Warning: (ae-forgotten-export) The symbol "RadioboxComponent" needs to be exported by the entry point index.d.ts
//
// @public (undocumented)
export type RadioboxProps = typeof RadioboxComponent;

export { RadioGroup }

Expand Down
75 changes: 75 additions & 0 deletions packages/plasma-b2c/src/components/Radiobox/Radiobox.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
import { css } from '@salutejs/plasma-new-hope/styled-components';

export const config = {
defaults: {
view: 'accent',
size: 'm',
focused: 'true',
},
variations: {
/**
* Размер контрола.
*/
size: {
s: css`
--plasma-radiobox-trigger-size: 1rem;
--plasma-radiobox-trigger-border-radius 1.125rem;
--plasma-radiobox-ellipse-size 0.5rem;
--plasma-radiobox-content-top-offset: 0.1rem;
--plasma-radiobox-content-left-offset 0.5rem;
--plasma-radiobox-label-font-family: var(--plasma-typo-footnote1-font-family);
--plasma-radiobox-label-font-size: var(--plasma-typo-footnote1-font-size);
--plasma-radiobox-label-font-style: var(--plasma-typo-footnote1-font-style);
--plasma-radiobox-label-font-weight: var(--plasma-typo-footnote1-font-weight);
--plasma-radiobox-label-letter-spacing: var(--plasma-typo-footnote1-letter-spacing);
--plasma-radiobox-label-line-height: var(--plasma-typo-footnote1-line-height);
--plasma-radiobox-description-font-family: var(--plasma-typo-caption-font-family);
--plasma-radiobox-description-font-size: var(--plasma-typo-caption-font-size);
--plasma-radiobox-description-font-style: var(--plasma-typo-caption-font-style);
--plasma-radiobox-description-font-weight: var(--plasma-typo-caption-font-weight);
--plasma-radiobox-description-letter-spacing: var(--plasma-typo-caption-letter-spacing);
--plasma-radiobox-description-line-height: var(--plasma-typo-caption-line-height);
`,
m: css`
--plasma-radiobox-trigger-size: 1.375rem;
--plasma-radiobox-trigger-border-radius 1.125rem;
--plasma-radiobox-ellipse-size 0.625rem;
--plasma-radiobox-content-top-offset: 0.25rem;
--plasma-radiobox-content-left-offset 0.6875rem;
--plasma-radiobox-label-font-family: var(--plasma-typo-body1-font-family);
--plasma-radiobox-label-font-size: var(--plasma-typo-body1-font-size);
--plasma-radiobox-label-font-style: var(--plasma-typo-body1-font-style);
--plasma-radiobox-label-font-weight: var(--plasma-typo-body1-font-weight);
--plasma-radiobox-label-letter-spacing: var(--plasma-typo-body1-letter-spacing);
--plasma-radiobox-label-line-height: var(--plasma-typo-body1-line-height);
--plasma-radiobox-description-font-family: var(--plasma-typo-footnote1-font-family);
--plasma-radiobox-description-font-size: var(--plasma-typo-footnote1-font-size);
--plasma-radiobox-description-font-style: var(--plasma-typo-footnote1-font-style);
--plasma-radiobox-description-font-weight: var(--plasma-typo-footnote1-font-weight);
--plasma-radiobox-description-letter-spacing: var(--plasma-typo-footnote1-letter-spacing);
--plasma-radiobox-description-line-height: var(--plasma-typo-footnote1-line-height);
`,
},
/**
* Вид контрола.
*/
view: {
accent: css`
--plasma-radiobox-fill-color: var(--plasma-colors-accent);
--plasma-radiobox-ellipse-color: var(--plasma-colors-white);
--plasma-radiobox-description-color: var(--plasma-colors-secondary);
--plasma-radiobox-trigger-border-color: var(--plasma-colors-secondary);
`,
},
disabled: {
true: css`
--plasma-radiobox-disabled-opacity: 0.4;
`,
},
focused: {
true: css`
--plasma-radiobox-focus-color: var(--plasma-colors-accent);
`,
},
},
};
23 changes: 20 additions & 3 deletions packages/plasma-b2c/src/components/Radiobox/Radiobox.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { Story, Meta } from '@storybook/react';
import { ComponentStory, Meta } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { InSpacingDecorator } from '@salutejs/plasma-sb-utils';

Expand Down Expand Up @@ -37,7 +37,7 @@ const items = [
{ langName, value: 'elixir', label: 'Elixir', disabled: true },
];

export const Live = () => {
export const Live = (props) => {
const [value, setValue] = React.useState('c');

return items.map((item) => (
Expand All @@ -57,11 +57,28 @@ export const Live = () => {
}}
onFocus={onFocus}
onBlur={onBlur}
{...props}
/>
));
};

export const Default: Story<RadioboxProps> = ({ name, label, description, disabled, singleLine, size }) => {
Live.argTypes = {
size: {
options: sizes,
control: {
type: 'inline-radio',
},
},
};

Live.args = {
size: 'm',
view: 'accent',
singleLine: false,
focused: true,
};

export const Default: ComponentStory<RadioboxProps> = ({ name, label, description, disabled, singleLine, size }) => {
const value = 0;
const [checked, setChecked] = React.useState(true);

Expand Down
15 changes: 15 additions & 0 deletions packages/plasma-b2c/src/components/Radiobox/Radiobox.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { radioboxConfig, component, mergeConfig } from '@salutejs/plasma-new-hope/styled-components';

import { config } from './Radiobox.config';

const mergedConfig = mergeConfig(radioboxConfig, config);
const RadioboxComponent = component(mergedConfig);

export type RadioboxProps = typeof RadioboxComponent;

/**
* Переключатель, или *радиокнопка*.
*/
export const Radiobox = RadioboxComponent;

export { RadioGroup } from '@salutejs/plasma-new-hope/styled-components';
4 changes: 2 additions & 2 deletions packages/plasma-b2c/src/components/Radiobox/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { Radiobox, RadioGroup } from '@salutejs/plasma-hope';
export type { RadioboxProps } from '@salutejs/plasma-hope';
export { Radiobox, RadioGroup } from './Radiobox';
export type { RadioboxProps } from './Radiobox';
2 changes: 1 addition & 1 deletion website/plasma-web-docs/docs/components/Radiobox.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PropsTable, Description, StorybookLink } from '@site/src/components';

# Radiobox
<Description name="Radiobox" />
<PropsTable name="Radiobox" />
<PropsTable name="Radiobox" exclude={['css', 'focused']} />
<StorybookLink name="Radiobox" />

## Использование
Expand Down

0 comments on commit 29c97dd

Please sign in to comment.