Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Components: improve vertical and RTL support for Divider #36579

Merged
merged 16 commits into from
Dec 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Fixed race conditions causing conditionally displayed `ToolsPanelItem` components to be erroneously deregistered ([#36588](https://github.com/WordPress/gutenberg/pull/36588)).
- Added `__experimentalHideHeader` prop to `Modal` component ([#36831](https://github.com/WordPress/gutenberg/pull/36831)).
- Added experimental `ConfirmDialog` component ([#34153](https://github.com/WordPress/gutenberg/pull/34153)).
- Divider: improve support for vertical orientation and RTL styles, use start/end logical props instead of top/bottom, change border-color to `currentColor` ([#36579](https://github.com/WordPress/gutenberg/pull/36579)).

### Bug Fix

Expand Down
12 changes: 6 additions & 6 deletions packages/components/src/card/test/__snapshots__/index.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ Object {
}

.emotion-10 {
border-color: rgba(0, 0, 0, 0.1);
border-width: 0 0 1px 0;
height: 0;
border: 0;
margin: 0;
border-bottom: 1px solid currentColor;
height: 0;
width: auto;
box-sizing: border-box;
display: block;
Expand Down Expand Up @@ -525,10 +525,10 @@ Object {
}

.emotion-10 {
border-color: rgba(0, 0, 0, 0.1);
border-width: 0 0 1px 0;
height: 0;
border: 0;
margin: 0;
border-bottom: 1px solid currentColor;
height: 0;
width: auto;
box-sizing: border-box;
display: block;
Expand Down
38 changes: 33 additions & 5 deletions packages/components/src/divider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,43 @@ This feature is still experimental. “Experimental” means this is an early im
## Usage

```jsx
import { Divider, FormGroup, ListGroup } from '@wordpress/components/ui';
import {
__experimentalDivider as Divider,
__experimentalText as Text,
__experimentalVStack as VStack,
} from `@wordpress/components`;

function Example() {
return (
<ListGroup>
<FormGroup>...</FormGroup>
<VStack spacing={4}>
<Text>Some text here</Text>
<Divider />
<FormGroup>...</FormGroup>
</ListGroup>
<Text>Some more text here</Text>
</VStack>
);
}
```

## Props

### `margin`: `number`

Adjusts all margins on the inline dimension.

- Required: No

### `marginStart`: `number`

Adjusts the inline-start margin.

- Required: No

### `marginEnd`: `number`

Adjusts the inline-end margin.

- Required: No

### Inherited props

`Divider` also inherits all of the [`Separator` props](https://reakit.io/docs/separator/).
15 changes: 8 additions & 7 deletions packages/components/src/divider/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,18 @@ function Divider(
* @example
* ```js
* import {
* __experimentalDivider as Divider,
* __experimentalText as Text }
* from `@wordpress/components`;
* __experimentalDivider as Divider,
* __experimentalText as Text,
* __experimentalVStack as VStack,
* } from `@wordpress/components`;
*
* function Example() {
* return (
* <ListGroup>
* <FormGroup>...</FormGroup>
* <VStack spacing={4}>
* <Text>Some text here</Text>
* <Divider />
* <FormGroup>...</FormGroup>
* </ListGroup>
* <Text>Some more text here</Text>
* </VStack>
* );
* }
* ```
Expand Down
60 changes: 43 additions & 17 deletions packages/components/src/divider/stories/index.js
Original file line number Diff line number Diff line change
@@ -1,38 +1,64 @@
/**
* External dependencies
*/
import { number } from '@storybook/addon-knobs';
import { css } from '@emotion/react';

/**
* Internal dependencies
*/
import { useCx } from '../../utils';
import { Text } from '../../text';
import { Divider } from '..';

export default {
component: Divider,
title: 'Components (Experimental)/Divider',
parameters: {
knobs: { disabled: false },
argTypes: {
margin: {
control: { type: 'number' },
},
marginStart: {
control: { type: 'number' },
},
marginEnd: {
control: { type: 'number' },
},
},
};

const BlackDivider = ( props ) => (
<Divider { ...props } style={ { borderColor: 'black' } } />
const HorizontalTemplate = ( args ) => (
<div>
<Text>Some text before the divider</Text>
<Divider { ...args } />
<Text>Some text after the divider</Text>
</div>
);

export const _default = () => {
const props = {
margin: number( 'margin', 0 ),
};
// make the border color black to give higher contrast and help it appear in storybook better
return <BlackDivider { ...props } />;
const VerticalTemplate = ( args ) => {
const cx = useCx();
const wrapperClassName = cx( css`
display: flex;
align-items: stretch;
justify-content: start;
` );

return (
<div className={ wrapperClassName }>
<Text>Some text before the divider</Text>
<Divider orientation="vertical" { ...args } />
<Text>Some text after the divider</Text>
</div>
);
};

export const splitMargins = () => {
const props = {
marginTop: number( 'marginTop', 0 ),
marginBottom: number( 'marginBottom', 0 ),
};
export const Horizontal = HorizontalTemplate.bind( {} );
Horizontal.args = {
margin: 2,
marginStart: undefined,
marginEnd: undefined,
};

return <BlackDivider { ...props } />;
export const Vertical = VerticalTemplate.bind( {} );
Vertical.args = {
...Horizontal.args,
};
69 changes: 53 additions & 16 deletions packages/components/src/divider/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,66 @@ import { css } from '@emotion/react';
* Internal dependencies
*/
import { space } from '../ui/utils/space';
import CONFIG from '../utils/config-values';
import type { OwnProps } from './types';
import { rtl } from '../utils';
import type { Props } from './types';

const renderMargin = ( { margin, marginTop, marginBottom }: OwnProps ) => {
if ( typeof margin !== 'undefined' ) {
return css( {
marginBottom: space( margin ),
marginTop: space( margin ),
} );
}
const MARGIN_DIRECTIONS: Record<
NonNullable< Props[ 'orientation' ] >,
Record< 'start' | 'end', string >
> = {
vertical: {
start: 'marginLeft',
end: 'marginRight',
},
horizontal: {
start: 'marginTop',
end: 'marginBottom',
},
};

// Renders the correct margins given the Divider's `orientation` and the writing direction.
// When both the generic `margin` and the specific `marginStart|marginEnd` props are defined,
// the latter will take priority.
const renderMargin = ( {
'aria-orientation': orientation = 'horizontal',
mirka marked this conversation as resolved.
Show resolved Hide resolved
margin,
marginStart,
marginEnd,
}: Props ) =>
css(
rtl( {
[ MARGIN_DIRECTIONS[ orientation ].start ]: space(
marginStart ?? margin
),
[ MARGIN_DIRECTIONS[ orientation ].end ]: space(
marginEnd ?? margin
),
} )()
);

const renderBorder = ( {
'aria-orientation': orientation = 'horizontal',
}: Props ) => {
return css( {
marginTop: space( marginTop ),
marginBottom: space( marginBottom ),
[ orientation === 'vertical'
? 'borderRight'
: 'borderBottom' ]: '1px solid currentColor',
} );
};

export const DividerView = styled.hr< OwnProps >`
border-color: ${ CONFIG.colorDivider };
border-width: 0 0 1px 0;
mirka marked this conversation as resolved.
Show resolved Hide resolved
height: 0;
const renderSize = ( {
'aria-orientation': orientation = 'horizontal',
}: Props ) =>
css( {
height: orientation === 'vertical' ? 'auto' : 0,
width: orientation === 'vertical' ? 0 : 'auto',
} );

export const DividerView = styled.hr< Props >`
border: 0;
margin: 0;
width: auto;

${ renderBorder }
${ renderSize }
${ renderMargin }
`;
22 changes: 11 additions & 11 deletions packages/components/src/divider/test/__snapshots__/index.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

exports[`props should render correctly 1`] = `
.emotion-0 {
border-color: rgba(0, 0, 0, 0.1);
border-width: 0 0 1px 0;
height: 0;
border: 0;
margin: 0;
border-bottom: 1px solid currentColor;
height: 0;
width: auto;
}

Expand All @@ -25,8 +25,8 @@ Snapshot Diff:

@@ -2,10 +2,8 @@
Object {
"border-color": "rgba(0, 0, 0, 0.1)",
"border-width": "0 0 1px 0",
"border": "0",
"border-bottom": "1px solid currentColor",
"height": "0",
"margin": "0",
- "margin-bottom": "calc(4px * 7)",
Expand All @@ -36,15 +36,15 @@ Snapshot Diff:
]
`;

exports[`props should render marginBottom 1`] = `
exports[`props should render marginEnd 1`] = `
Snapshot Diff:
- Received styles
+ Base styles

@@ -2,9 +2,8 @@
Object {
"border-color": "rgba(0, 0, 0, 0.1)",
"border-width": "0 0 1px 0",
"border": "0",
"border-bottom": "1px solid currentColor",
"height": "0",
"margin": "0",
- "margin-bottom": "calc(4px * 5)",
Expand All @@ -53,15 +53,15 @@ Snapshot Diff:
]
`;

exports[`props should render marginTop 1`] = `
exports[`props should render marginStart 1`] = `
Snapshot Diff:
- Received styles
+ Base styles

@@ -2,9 +2,8 @@
Object {
"border-color": "rgba(0, 0, 0, 0.1)",
"border-width": "0 0 1px 0",
"border": "0",
"border-bottom": "1px solid currentColor",
"height": "0",
"margin": "0",
- "margin-top": "calc(4px * 5)",
Expand Down
8 changes: 4 additions & 4 deletions packages/components/src/divider/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ describe( 'props', () => {
expect( base.container.firstChild ).toMatchSnapshot();
} );

test( 'should render marginTop', () => {
const { container } = render( <Divider marginTop={ 5 } /> );
test( 'should render marginStart', () => {
const { container } = render( <Divider marginStart={ 5 } /> );
expect( container.firstChild ).toMatchStyleDiffSnapshot(
base.container.firstChild
);
} );

test( 'should render marginBottom', () => {
const { container } = render( <Divider marginBottom={ 5 } /> );
test( 'should render marginEnd', () => {
const { container } = render( <Divider marginEnd={ 5 } /> );
expect( container.firstChild ).toMatchStyleDiffSnapshot(
base.container.firstChild
);
Expand Down
10 changes: 5 additions & 5 deletions packages/components/src/divider/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ import type { SpaceInput } from '../ui/utils/space';

export interface OwnProps {
/**
* Adjusts all margins.
* Adjusts all margins on the inline dimension.
*/
margin?: SpaceInput;
/**
* Adjusts top margins.
* Adjusts the inline-start margin.
*/
marginTop?: SpaceInput;
marginStart?: SpaceInput;
/**
* Adjusts bottom margins.
* Adjusts the inline-end margin.
*/
marginBottom?: SpaceInput;
marginEnd?: SpaceInput;
}

export interface Props extends Omit< SeparatorProps, 'children' >, OwnProps {}