@codecademy/styleguide 79.0.1-alpha.2b3284.0 → 79.0.1-alpha.4aeb6d.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.storybook/components/Elements/DocsContainer.tsx +4 -0
- package/.storybook/components/Elements/Markdown.tsx +0 -1
- package/.storybook/preview.ts +14 -0
- package/.storybook/theming/GamutThemeProvider.tsx +7 -1
- package/CHANGELOG.md +1 -1
- package/package.json +2 -2
- package/src/lib/Foundations/System/About.mdx +1 -1
- package/src/lib/Foundations/System/Props/About.mdx +81 -0
- package/src/lib/Foundations/System/Props/Background.mdx +30 -0
- package/src/lib/Foundations/System/Props/Border.mdx +53 -0
- package/src/lib/Foundations/System/Props/Border.stories.tsx +138 -0
- package/src/lib/Foundations/System/Props/Color.mdx +42 -0
- package/src/lib/Foundations/System/Props/Color.stories.tsx +47 -0
- package/src/lib/Foundations/System/Props/Flex.mdx +28 -0
- package/src/lib/Foundations/System/Props/Grid.mdx +31 -0
- package/src/lib/Foundations/System/Props/Layout.mdx +34 -0
- package/src/lib/Foundations/System/Props/List.mdx +38 -0
- package/src/lib/Foundations/System/Props/Positioning.mdx +29 -0
- package/src/lib/Foundations/System/Props/Shadow.mdx +31 -0
- package/src/lib/Foundations/System/Props/Space.mdx +44 -0
- package/src/lib/Foundations/System/Props/Space.stories.tsx +48 -0
- package/src/lib/Foundations/System/Props/Typography.mdx +28 -0
- package/src/lib/Foundations/System/ResponsiveProperties/ResponsiveProperties.mdx +3 -3
- package/src/lib/Foundations/System/ResponsiveProperties/ResponsiveProperties.stories.tsx +1 -0
- package/src/lib/Foundations/shared/elements.tsx +69 -19
- package/src/lib/Meta/About.mdx +3 -1
- package/src/lib/Meta/Logical and physical CSS properties.mdx +123 -0
- package/src/lib/Meta/Usage Guide.mdx +6 -1
- package/src/lib/Molecules/Popover/Popover.stories.tsx +4 -127
- package/src/static/meta/toolbar.png +0 -0
- package/src/lib/Foundations/System/Props.mdx +0 -230
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Meta } from '@storybook/blocks';
|
|
2
|
+
|
|
3
|
+
import { AboutHeader, TokenTable } from '~styleguide/blocks';
|
|
4
|
+
|
|
5
|
+
import { defaultColumns, getPropRows } from '../../shared/elements';
|
|
6
|
+
|
|
7
|
+
export const parameters = {
|
|
8
|
+
title: 'Positioning',
|
|
9
|
+
subtitle:
|
|
10
|
+
'Props that affect stacking and position contexts. Like `top`, `position` and `opacity`.',
|
|
11
|
+
status: 'updating',
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
<Meta title="Foundations/System/Props/Positioning" />
|
|
15
|
+
|
|
16
|
+
<AboutHeader {...parameters} />
|
|
17
|
+
|
|
18
|
+
Positioning props control how elements are positioned within their parent containers and manage their stacking order. Use these properties to create fixed headers, absolute overlays, sticky navigation, and control layering with z-index. The `inset` shorthand provides a convenient way to set all four position values at once.
|
|
19
|
+
|
|
20
|
+
```tsx
|
|
21
|
+
import styled from '@emotion/styled';
|
|
22
|
+
import { system } from '@codecademy/gamut-styles';
|
|
23
|
+
|
|
24
|
+
const PositioningExample = styled.div(system.positioning);
|
|
25
|
+
|
|
26
|
+
<PositioningExample position="absolute" zIndex={2} top="0" left="0" />;
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
<TokenTable rows={getPropRows('positioning')} columns={defaultColumns} />
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Meta } from '@storybook/blocks';
|
|
2
|
+
|
|
3
|
+
import { AboutHeader, TokenTable } from '~styleguide/blocks';
|
|
4
|
+
|
|
5
|
+
import { defaultColumns, getPropRows } from '../../shared/elements';
|
|
6
|
+
|
|
7
|
+
export const parameters = {
|
|
8
|
+
title: 'Shadow',
|
|
9
|
+
subtitle: 'Props for box and text shadows.',
|
|
10
|
+
status: 'current',
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
<Meta title="Foundations/System/Props/Shadow" />
|
|
14
|
+
|
|
15
|
+
<AboutHeader {...parameters} />
|
|
16
|
+
|
|
17
|
+
Shadow props add depth and visual interest to your components through box and text shadows. These properties accept standard CSS shadow syntax, allowing you to create subtle elevation effects or dramatic visual depth. Use shadows consistently to establish visual hierarchy in your interface.
|
|
18
|
+
|
|
19
|
+
```tsx
|
|
20
|
+
import styled from '@emotion/styled';
|
|
21
|
+
import { system } from '@codecademy/gamut-styles';
|
|
22
|
+
|
|
23
|
+
const ShadowExample = styled.div(system.shadow);
|
|
24
|
+
|
|
25
|
+
<ShadowExample
|
|
26
|
+
boxShadow="0 0 4px rgba(0, 0, 0, .15)"
|
|
27
|
+
textShadow="0 0 4px rgba(0, 0, 0, .15)"
|
|
28
|
+
/>;
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
<TokenTable rows={getPropRows('shadows')} columns={defaultColumns} />
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Canvas, Meta } from '@storybook/blocks';
|
|
2
|
+
|
|
3
|
+
import { AboutHeader, Callout, TokenTable } from '~styleguide/blocks';
|
|
4
|
+
|
|
5
|
+
import { defaultColumns, getPropRows } from '../../shared/elements';
|
|
6
|
+
import * as SpaceStories from './Space.stories';
|
|
7
|
+
|
|
8
|
+
export const parameters = {
|
|
9
|
+
title: 'Space',
|
|
10
|
+
subtitle: 'Props for maintaining specific vertical and horizontal rhythms',
|
|
11
|
+
status: 'updating',
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
<Meta of={SpaceStories} title="Foundations/System/Props/Space" />
|
|
15
|
+
|
|
16
|
+
<AboutHeader {...parameters} />
|
|
17
|
+
|
|
18
|
+
Space props provide a consistent way to apply margin and padding throughout your application. All spacing values reference the theme's spacing scale, ensuring visual consistency and making it easy to create responsive spacing patterns using array syntax.
|
|
19
|
+
|
|
20
|
+
```tsx
|
|
21
|
+
import styled from '@emotion/styled';
|
|
22
|
+
import { system } from '@codecademy/gamut-styles';
|
|
23
|
+
|
|
24
|
+
const SpaceExample = styled.div(system.space);
|
|
25
|
+
|
|
26
|
+
<SpaceExample p={8} my={[16, 24, 32]} />;
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
These space props support both physical and logical CSS properties and will render the appropriate properties based on `useLogicalProperties`'s value passed into the `<GamutProvider>` at the root of your application.
|
|
30
|
+
|
|
31
|
+
<Callout
|
|
32
|
+
text={
|
|
33
|
+
<>
|
|
34
|
+
You can use the <strong>LogicalProps</strong> button in the toolbar to
|
|
35
|
+
switch between modes.
|
|
36
|
+
</>
|
|
37
|
+
}
|
|
38
|
+
/>
|
|
39
|
+
|
|
40
|
+
<Canvas of={SpaceStories.MarginExample} />
|
|
41
|
+
|
|
42
|
+
<Canvas of={SpaceStories.PaddingExample} />
|
|
43
|
+
|
|
44
|
+
<TokenTable rows={getPropRows('space')} columns={defaultColumns} />
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Box, Markdown } from '@codecademy/gamut';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
|
|
4
|
+
const meta: Meta<typeof Box> = {
|
|
5
|
+
title: 'Foundations/System/Props/Space',
|
|
6
|
+
component: Box,
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export default meta;
|
|
10
|
+
type Story = StoryObj<typeof Box>;
|
|
11
|
+
|
|
12
|
+
export const MarginExample: Story = {
|
|
13
|
+
render: () => (
|
|
14
|
+
<Box
|
|
15
|
+
bg="primary"
|
|
16
|
+
color="background-contrast"
|
|
17
|
+
mb={64}
|
|
18
|
+
ml={16}
|
|
19
|
+
mr={32}
|
|
20
|
+
mt={4}
|
|
21
|
+
textAlign="center"
|
|
22
|
+
>
|
|
23
|
+
This box has{' '}
|
|
24
|
+
<Markdown text="`mt={4}`, `mr={32}`, `mb={64}`, and `ml={16}`." /> Inspect
|
|
25
|
+
the example to see what CSS properties are rendered.
|
|
26
|
+
</Box>
|
|
27
|
+
),
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export const PaddingExample: Story = {
|
|
31
|
+
render: () => (
|
|
32
|
+
<Box bg="background-selected">
|
|
33
|
+
<Box
|
|
34
|
+
bg="primary"
|
|
35
|
+
color="background-contrast"
|
|
36
|
+
pb={64}
|
|
37
|
+
pl={16}
|
|
38
|
+
pr={32}
|
|
39
|
+
pt={4}
|
|
40
|
+
textAlign="center"
|
|
41
|
+
>
|
|
42
|
+
This box has{' '}
|
|
43
|
+
<Markdown text="`pt={4}`, `pr={32}`, `pb={64}`, and `pl={16}`." />{' '}
|
|
44
|
+
Inspect the example to see what CSS properties are rendered.
|
|
45
|
+
</Box>
|
|
46
|
+
</Box>
|
|
47
|
+
),
|
|
48
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Meta } from '@storybook/blocks';
|
|
2
|
+
|
|
3
|
+
import { AboutHeader, TokenTable } from '~styleguide/blocks';
|
|
4
|
+
|
|
5
|
+
import { defaultColumns, getPropRows } from '../../shared/elements';
|
|
6
|
+
|
|
7
|
+
export const parameters = {
|
|
8
|
+
title: 'Typography',
|
|
9
|
+
subtitle: 'Props for text manipulation',
|
|
10
|
+
status: 'current',
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
<Meta title="Foundations/System/Props/Typography" />
|
|
14
|
+
|
|
15
|
+
<AboutHeader {...parameters} />
|
|
16
|
+
|
|
17
|
+
Typography props give you fine-grained control over text styling and appearance. These properties connect to the theme's typography scales for font families, sizes, weights, and line heights, making it simple to maintain typographic consistency across your application while allowing for custom text transformations and decorations.
|
|
18
|
+
|
|
19
|
+
```tsx
|
|
20
|
+
import styled from '@emotion/styled';
|
|
21
|
+
import { system } from '@codecademy/gamut-styles';
|
|
22
|
+
|
|
23
|
+
const TextExample = styled.p(system.typography);
|
|
24
|
+
|
|
25
|
+
<TextExample fontSize={16} fontFamily="accent" textTransform="uppercase" />;
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
<TokenTable rows={getPropRows('typography')} columns={defaultColumns} />
|
|
@@ -6,17 +6,17 @@ import { breakpoint } from '../../shared/elements';
|
|
|
6
6
|
import * as ResponsivePropertiesStories from './ResponsiveProperties.stories';
|
|
7
7
|
|
|
8
8
|
export const parameters = {
|
|
9
|
-
title: 'Responsive
|
|
9
|
+
title: 'Responsive properties',
|
|
10
10
|
subtitle:
|
|
11
11
|
'All system props accept a syntax to generate responsive styles on a per prop basis',
|
|
12
12
|
source: {
|
|
13
13
|
repo: 'variance',
|
|
14
14
|
githubLink:
|
|
15
|
-
'https://github.com/Codecademy/gamut/blob/
|
|
15
|
+
'https://github.com/Codecademy/gamut/blob/main/packages/gamut-styles/src/variables/responsive.ts',
|
|
16
16
|
},
|
|
17
17
|
};
|
|
18
18
|
|
|
19
|
-
<Meta
|
|
19
|
+
<Meta of={ResponsivePropertiesStories} />
|
|
20
20
|
|
|
21
21
|
<AboutHeader {...parameters} />
|
|
22
22
|
|
|
@@ -2,22 +2,32 @@ import { Anchor, Box } from '@codecademy/gamut';
|
|
|
2
2
|
import {
|
|
3
3
|
Background,
|
|
4
4
|
coreSwatches,
|
|
5
|
+
css,
|
|
5
6
|
lxStudioColors,
|
|
6
7
|
theme,
|
|
7
8
|
trueColors,
|
|
8
9
|
} from '@codecademy/gamut-styles';
|
|
9
10
|
// eslint-disable-next-line gamut/import-paths
|
|
10
11
|
import * as ALL_PROPS from '@codecademy/gamut-styles/src/variance/config';
|
|
12
|
+
import { useTheme } from '@emotion/react';
|
|
13
|
+
import styled from '@emotion/styled';
|
|
11
14
|
import kebabCase from 'lodash/kebabCase';
|
|
12
15
|
|
|
13
16
|
import { Code, ColorScale, LinkTo, TokenTable } from '~styleguide/blocks';
|
|
14
17
|
|
|
15
18
|
import { applyCorrectNotation } from './applyCorrectNotation';
|
|
16
19
|
|
|
20
|
+
const AnchorCode = styled(Code)(
|
|
21
|
+
css({
|
|
22
|
+
textDecoration: 'underline',
|
|
23
|
+
mx: 4,
|
|
24
|
+
})
|
|
25
|
+
);
|
|
26
|
+
|
|
17
27
|
export const PROP_COLUMN = {
|
|
18
28
|
key: 'key',
|
|
19
29
|
name: 'Prop',
|
|
20
|
-
size: '
|
|
30
|
+
size: 'lg',
|
|
21
31
|
render: ({ id }: any) => <Code>{id}</Code>,
|
|
22
32
|
};
|
|
23
33
|
|
|
@@ -403,26 +413,61 @@ export const DarkModeTable = () => (
|
|
|
403
413
|
);
|
|
404
414
|
/* eslint-disable gamut/import-paths */
|
|
405
415
|
|
|
416
|
+
const PropertiesRenderer = ({
|
|
417
|
+
property,
|
|
418
|
+
properties,
|
|
419
|
+
resolveProperty,
|
|
420
|
+
}: {
|
|
421
|
+
property: string | { physical: string; logical: string };
|
|
422
|
+
properties?: string[] | { physical: string[]; logical: string[] };
|
|
423
|
+
resolveProperty?: (useLogicalProperties: boolean) => 'logical' | 'physical';
|
|
424
|
+
}) => {
|
|
425
|
+
const currentTheme = useTheme() as { useLogicalProperties?: boolean };
|
|
426
|
+
const useLogicalProperties = currentTheme?.useLogicalProperties ?? true;
|
|
427
|
+
|
|
428
|
+
const mode = resolveProperty
|
|
429
|
+
? resolveProperty(useLogicalProperties)
|
|
430
|
+
: 'physical';
|
|
431
|
+
|
|
432
|
+
const resolvedProperty =
|
|
433
|
+
typeof property === 'string' ? property : property[mode];
|
|
434
|
+
|
|
435
|
+
let resolvedProperties: string[];
|
|
436
|
+
if (!properties) {
|
|
437
|
+
resolvedProperties = [resolvedProperty];
|
|
438
|
+
} else if (Array.isArray(properties)) {
|
|
439
|
+
resolvedProperties = properties;
|
|
440
|
+
} else {
|
|
441
|
+
resolvedProperties = properties[mode];
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
return (
|
|
445
|
+
<>
|
|
446
|
+
{resolvedProperties.map((prop) => (
|
|
447
|
+
<Anchor
|
|
448
|
+
href={`https://developer.mozilla.org/en-US/docs/Web/CSS/${kebabCase(
|
|
449
|
+
prop
|
|
450
|
+
)}`}
|
|
451
|
+
key={prop}
|
|
452
|
+
rel=""
|
|
453
|
+
target="_blank"
|
|
454
|
+
>
|
|
455
|
+
<AnchorCode>{kebabCase(prop)}</AnchorCode>
|
|
456
|
+
</Anchor>
|
|
457
|
+
))}
|
|
458
|
+
</>
|
|
459
|
+
);
|
|
460
|
+
};
|
|
461
|
+
|
|
406
462
|
const PROPERTIES_COLUMN = {
|
|
407
463
|
key: 'properties',
|
|
408
464
|
name: 'Properties',
|
|
409
465
|
size: 'xl',
|
|
410
|
-
render: ({
|
|
411
|
-
property
|
|
412
|
-
properties
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
properties: string[];
|
|
416
|
-
}) =>
|
|
417
|
-
properties.map((property) => (
|
|
418
|
-
<Anchor
|
|
419
|
-
href={`https://developer.mozilla.org/en-US/docs/Web/CSS/${property}`}
|
|
420
|
-
rel=""
|
|
421
|
-
target="_blank"
|
|
422
|
-
>
|
|
423
|
-
<Code key={property}>{kebabCase(property)}</Code>
|
|
424
|
-
</Anchor>
|
|
425
|
-
)),
|
|
466
|
+
render: (props: {
|
|
467
|
+
property: string | { physical: string; logical: string };
|
|
468
|
+
properties?: string[] | { physical: string[]; logical: string[] };
|
|
469
|
+
resolveProperty?: (useLogicalProperties: boolean) => 'logical' | 'physical';
|
|
470
|
+
}) => <PropertiesRenderer {...props} />,
|
|
426
471
|
};
|
|
427
472
|
|
|
428
473
|
const SCALE_COLUMN = {
|
|
@@ -430,7 +475,7 @@ const SCALE_COLUMN = {
|
|
|
430
475
|
name: 'Scale',
|
|
431
476
|
size: 'lg',
|
|
432
477
|
render: ({ scale }: { scale: string }) => (
|
|
433
|
-
<LinkTo id=
|
|
478
|
+
<LinkTo id="Foundations/Theme/Core Theme">{scale}</LinkTo>
|
|
434
479
|
),
|
|
435
480
|
};
|
|
436
481
|
|
|
@@ -438,7 +483,12 @@ const TRANSFORM_COLUMN = {
|
|
|
438
483
|
key: 'transform',
|
|
439
484
|
name: 'Transform',
|
|
440
485
|
size: 'fill',
|
|
441
|
-
render: ({ transform }: any) =>
|
|
486
|
+
render: ({ transform, resolveProperty }: any) => (
|
|
487
|
+
<>
|
|
488
|
+
{transform && <Code>{transform?.name}</Code>}
|
|
489
|
+
{resolveProperty && <Code>{resolveProperty?.name}</Code>}
|
|
490
|
+
</>
|
|
491
|
+
),
|
|
442
492
|
};
|
|
443
493
|
|
|
444
494
|
export const defaultColumns = [
|
package/src/lib/Meta/About.mdx
CHANGED
|
@@ -13,6 +13,7 @@ import { parameters as deepControlsParameters } from './Deep Controls Add-On.mdx
|
|
|
13
13
|
import { parameters as eslintRulesParameters } from './ESLint rules.mdx';
|
|
14
14
|
import { parameters as faqsParameters } from './FAQs.mdx';
|
|
15
15
|
import { parameters as installationParameters } from './Installation.mdx';
|
|
16
|
+
import { parameters as logicalPhysicalParameters } from './Logical and physical CSS properties.mdx';
|
|
16
17
|
import { parameters as storiesParameters } from './Stories.mdx';
|
|
17
18
|
import { parameters as usageGuideParameters } from './Usage Guide.mdx';
|
|
18
19
|
|
|
@@ -34,9 +35,10 @@ export const parameters = {
|
|
|
34
35
|
deepControlsParameters,
|
|
35
36
|
eslintRulesParameters,
|
|
36
37
|
faqsParameters,
|
|
38
|
+
installationParameters,
|
|
39
|
+
logicalPhysicalParameters,
|
|
37
40
|
storiesParameters,
|
|
38
41
|
brandParameters,
|
|
39
|
-
installationParameters,
|
|
40
42
|
usageGuideParameters,
|
|
41
43
|
])}
|
|
42
44
|
/>
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { Meta } from '@storybook/blocks';
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
AboutHeader,
|
|
5
|
+
Callout,
|
|
6
|
+
Code,
|
|
7
|
+
ImageWrapper,
|
|
8
|
+
TokenTable,
|
|
9
|
+
} from '~styleguide/blocks';
|
|
10
|
+
|
|
11
|
+
export const parameters = {
|
|
12
|
+
id: 'Meta/Logical and physical CSS properties',
|
|
13
|
+
title: 'Logical and physical CSS properties',
|
|
14
|
+
subtitle:
|
|
15
|
+
'Understanding CSS logical and physical properties and how Gamut supports both modes.',
|
|
16
|
+
status: 'static',
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
<Meta title="Meta/Logical and physical CSS properties" />
|
|
20
|
+
|
|
21
|
+
<AboutHeader {...parameters} />
|
|
22
|
+
|
|
23
|
+
## What are CSS logical properties?
|
|
24
|
+
|
|
25
|
+
CSS logical properties are a modern approach to styling that adapts to the writing mode and text direction of your content, rather than being tied to physical screen directions. More information can be found on[MDN: CSS Logical Properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values)
|
|
26
|
+
|
|
27
|
+
### Physical Properties (Traditional)
|
|
28
|
+
|
|
29
|
+
Physical properties reference the physical dimensions of the viewport. For example:
|
|
30
|
+
|
|
31
|
+
- `margin-left`, `margin-right`, `margin-top`, `margin-bottom`
|
|
32
|
+
- `padding-left`, `padding-right`, `padding-top`, `padding-bottom`
|
|
33
|
+
|
|
34
|
+
These work well for left-to-right (LTR) languages but require manual overrides for right-to-left (RTL) languages like Arabic or Hebrew.
|
|
35
|
+
|
|
36
|
+
### Logical Properties (Modern)
|
|
37
|
+
|
|
38
|
+
Logical properties reference the flow of content:
|
|
39
|
+
|
|
40
|
+
- **Inline axis** (text direction): `margin-inline-start`, `margin-inline-end`
|
|
41
|
+
- **Block axis** (reading direction): `margin-block-start`, `margin-block-end`
|
|
42
|
+
|
|
43
|
+
## Using `useLogicalProperties` in Gamut
|
|
44
|
+
|
|
45
|
+
Gamut supports both physical and logical CSS properties through the `useLogicalProperties` prop on `GamutProvider`. This allows you to choose which mode your application uses. By default, `useLogicalProperties` is set to `true`, meaning Gamut will use logical CSS properties. If you want to use physical CSS properties, you have to set `useLogicalProperties` to `false`.
|
|
46
|
+
|
|
47
|
+
### Affected Props
|
|
48
|
+
|
|
49
|
+
Here are some examples of how physical and logical properties are affected by the `useLogicalProperties` prop:
|
|
50
|
+
|
|
51
|
+
<TokenTable
|
|
52
|
+
idKey="prop"
|
|
53
|
+
columns={[
|
|
54
|
+
{
|
|
55
|
+
key: 'prop',
|
|
56
|
+
name: 'Prop',
|
|
57
|
+
size: 'sm',
|
|
58
|
+
render: ({ prop }) => <Code>{prop}</Code>,
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: 'physical',
|
|
62
|
+
name: 'Physical',
|
|
63
|
+
size: 'xl',
|
|
64
|
+
render: ({ physical }) =>
|
|
65
|
+
physical.map((p) => (
|
|
66
|
+
<>
|
|
67
|
+
<Code key={p}>{p}</Code>{' '}
|
|
68
|
+
</>
|
|
69
|
+
)),
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
key: 'logical',
|
|
73
|
+
name: 'Logical',
|
|
74
|
+
size: 'xl',
|
|
75
|
+
render: ({ logical }) =>
|
|
76
|
+
logical.map((l) => (
|
|
77
|
+
<>
|
|
78
|
+
<Code key={l}>{l}</Code>{' '}
|
|
79
|
+
</>
|
|
80
|
+
)),
|
|
81
|
+
},
|
|
82
|
+
]}
|
|
83
|
+
rows={[
|
|
84
|
+
{
|
|
85
|
+
prop: 'mx',
|
|
86
|
+
physical: ['margin-left', 'margin-right'],
|
|
87
|
+
logical: ['margin-inline-start', 'margin-inline-end'],
|
|
88
|
+
},
|
|
89
|
+
{ prop: 'mt', physical: ['margin-top'], logical: ['margin-block-start'] },
|
|
90
|
+
{
|
|
91
|
+
prop: 'py',
|
|
92
|
+
physical: ['padding-top', 'padding-bottom'],
|
|
93
|
+
logical: ['padding-block-start', 'padding-block-end'],
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
prop: 'pb',
|
|
97
|
+
physical: ['padding-bottom'],
|
|
98
|
+
logical: ['padding-block-end'],
|
|
99
|
+
},
|
|
100
|
+
]}
|
|
101
|
+
/>
|
|
102
|
+
|
|
103
|
+
<Callout
|
|
104
|
+
text={
|
|
105
|
+
<>
|
|
106
|
+
Props like <code>m</code> and <code>p</code> (which set all four sides at
|
|
107
|
+
once) are not affected by this setting, as the CSS <code>margin</code> and{' '}
|
|
108
|
+
<code>padding</code> shorthands work identically in both modes.
|
|
109
|
+
</>
|
|
110
|
+
}
|
|
111
|
+
/>
|
|
112
|
+
|
|
113
|
+
## Previewing in Storybook
|
|
114
|
+
|
|
115
|
+
You can toggle between logical and physical properties in Storybook using the **LogicalProps** toolbar button:
|
|
116
|
+
|
|
117
|
+
<ImageWrapper
|
|
118
|
+
src="./meta/toolbar.png"
|
|
119
|
+
alt="The Storybook toolbar with the LogicalProps toggle highlighted."
|
|
120
|
+
height="auto"
|
|
121
|
+
/>
|
|
122
|
+
|
|
123
|
+
This allows you to preview how components render with either property mode without changing any code.
|
|
@@ -39,7 +39,8 @@ On each page is a toolbar located on the top:
|
|
|
39
39
|
1. Grid (the 2x2 collection of squares) - applies a grid to the preview
|
|
40
40
|
2. Color mode selector (the circle icon) - toggles between light and dark mode for rendered code examples
|
|
41
41
|
3. Theme switcher (the paintbrush icon) - switches between different design system themes (Core, Admin, LX Studio, Percipio)
|
|
42
|
-
4.
|
|
42
|
+
4. LogicalProps (the two arrows icon) - toggles between physical and logical CSS properties
|
|
43
|
+
5. Outline (dotted square) - applies outlines to elements in the rendered code examples
|
|
43
44
|
|
|
44
45
|
### Theme Switcher
|
|
45
46
|
|
|
@@ -58,6 +59,10 @@ Available themes:
|
|
|
58
59
|
|
|
59
60
|
The theme switcher works in combination with the color mode selector, so you can test both light and dark variants of each theme.
|
|
60
61
|
|
|
62
|
+
### LogicalProps
|
|
63
|
+
|
|
64
|
+
The LogicalProps button (two arrows icon) provides a menu to select between Logical and Physical CSS properties.
|
|
65
|
+
|
|
61
66
|
### Showing code
|
|
62
67
|
|
|
63
68
|
On the bottom right of each canvas (a rendered code example) is a button to show its code:
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
} from '@codecademy/gamut';
|
|
9
9
|
import * as patterns from '@codecademy/gamut-patterns';
|
|
10
10
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
11
|
-
import {
|
|
11
|
+
import { useRef, useState } from 'react';
|
|
12
12
|
|
|
13
13
|
const meta: Meta<typeof Popover> = {
|
|
14
14
|
component: Popover,
|
|
@@ -27,91 +27,10 @@ type Story = StoryObj<typeof Popover>;
|
|
|
27
27
|
|
|
28
28
|
type PopoverExampleProps = PopoverProps & Pick<FlexBoxProps, 'p'>;
|
|
29
29
|
|
|
30
|
-
const
|
|
31
|
-
const VIEWPORT_PADDING = 16; // Padding from viewport edge
|
|
32
|
-
|
|
33
|
-
const PopoverExample = ({
|
|
34
|
-
p = 16,
|
|
35
|
-
position: preferredPosition = 'below',
|
|
36
|
-
...rest
|
|
37
|
-
}: PopoverExampleProps) => {
|
|
30
|
+
const PopoverExample = ({ p = 16, ...rest }: PopoverExampleProps) => {
|
|
38
31
|
const [open, setOpen] = useState(false);
|
|
39
|
-
const [computedPosition, setComputedPosition] = useState<
|
|
40
|
-
'above' | 'below' | 'center'
|
|
41
|
-
>(preferredPosition === 'center' ? 'center' : preferredPosition);
|
|
42
|
-
const [availableHeight, setAvailableHeight] = useState<number | undefined>(
|
|
43
|
-
undefined
|
|
44
|
-
);
|
|
45
32
|
const activeElRef = useRef<HTMLDivElement>(null);
|
|
46
|
-
const popoverRef = useRef<HTMLDivElement>(null);
|
|
47
|
-
const [popoverHeight, setPopoverHeight] = useState(POPOVER_HEIGHT_ESTIMATE);
|
|
48
|
-
|
|
49
|
-
const calculatePosition = useCallback(() => {
|
|
50
|
-
const target = activeElRef.current;
|
|
51
|
-
if (!target || preferredPosition === 'center') return;
|
|
52
|
-
|
|
53
|
-
const targetRect = target.getBoundingClientRect();
|
|
54
|
-
const viewportHeight = window.innerHeight;
|
|
55
|
-
|
|
56
|
-
const spaceBelow = viewportHeight - targetRect.bottom - VIEWPORT_PADDING;
|
|
57
|
-
const spaceAbove = targetRect.top - VIEWPORT_PADDING;
|
|
58
|
-
|
|
59
|
-
// Use measured height if available, otherwise estimate
|
|
60
|
-
const heightToFit = popoverHeight;
|
|
61
|
-
|
|
62
|
-
let newPosition: 'above' | 'below' =
|
|
63
|
-
preferredPosition === 'above' ? 'above' : 'below';
|
|
64
|
-
|
|
65
|
-
if (preferredPosition === 'below') {
|
|
66
|
-
// Prefer below, but flip to above if not enough space below and more space above
|
|
67
|
-
if (spaceBelow < heightToFit && spaceAbove > spaceBelow) {
|
|
68
|
-
newPosition = 'above';
|
|
69
|
-
} else {
|
|
70
|
-
newPosition = 'below';
|
|
71
|
-
}
|
|
72
|
-
} else if (preferredPosition === 'above') {
|
|
73
|
-
// Prefer above, but flip to below if not enough space above and more space below
|
|
74
|
-
if (spaceAbove < heightToFit && spaceBelow > spaceAbove) {
|
|
75
|
-
newPosition = 'below';
|
|
76
|
-
} else {
|
|
77
|
-
newPosition = 'above';
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
setComputedPosition(newPosition);
|
|
82
|
-
|
|
83
|
-
// Set max height based on the available space in the computed direction
|
|
84
|
-
const maxAvailableHeight = newPosition === 'below' ? spaceBelow : spaceAbove;
|
|
85
|
-
setAvailableHeight(Math.max(maxAvailableHeight, 100)); // Minimum 100px
|
|
86
|
-
}, [preferredPosition, popoverHeight]);
|
|
87
|
-
|
|
88
|
-
// Measure popover height when it opens
|
|
89
|
-
useEffect(() => {
|
|
90
|
-
if (open && popoverRef.current) {
|
|
91
|
-
const { height } = popoverRef.current.getBoundingClientRect();
|
|
92
|
-
if (height > 0) {
|
|
93
|
-
setPopoverHeight(height);
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
}, [open]);
|
|
97
|
-
|
|
98
|
-
// Recalculate position on open, scroll, or resize
|
|
99
|
-
useEffect(() => {
|
|
100
|
-
if (!open) return;
|
|
101
|
-
|
|
102
|
-
calculatePosition();
|
|
103
|
-
|
|
104
|
-
window.addEventListener('scroll', calculatePosition, true);
|
|
105
|
-
window.addEventListener('resize', calculatePosition);
|
|
106
|
-
|
|
107
|
-
return () => {
|
|
108
|
-
window.removeEventListener('scroll', calculatePosition, true);
|
|
109
|
-
window.removeEventListener('resize', calculatePosition);
|
|
110
|
-
};
|
|
111
|
-
}, [open, calculatePosition]);
|
|
112
|
-
|
|
113
33
|
const toggleOpen = () => setOpen(!open);
|
|
114
|
-
|
|
115
34
|
return (
|
|
116
35
|
<>
|
|
117
36
|
<Box ref={activeElRef} width="fit-content">
|
|
@@ -121,53 +40,11 @@ const PopoverExample = ({
|
|
|
121
40
|
<Popover
|
|
122
41
|
{...(rest as any)}
|
|
123
42
|
isOpen={open}
|
|
124
|
-
popoverContainerRef={popoverRef}
|
|
125
|
-
position={computedPosition}
|
|
126
43
|
targetRef={activeElRef}
|
|
127
44
|
onRequestClose={() => setOpen(false)}
|
|
128
45
|
>
|
|
129
|
-
{
|
|
130
|
-
|
|
131
|
-
This makes the popover contents scrollable when they exceed
|
|
132
|
-
the available viewport space.
|
|
133
|
-
*/}
|
|
134
|
-
<FlexBox
|
|
135
|
-
alignItems="flex-start"
|
|
136
|
-
flexDirection="column"
|
|
137
|
-
p={p}
|
|
138
|
-
maxHeight={availableHeight ? `${availableHeight}px` as any : undefined}
|
|
139
|
-
overflowY="auto"
|
|
140
|
-
>
|
|
141
|
-
<Box mb={8}>
|
|
142
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
|
|
143
|
-
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
|
|
144
|
-
enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
|
145
|
-
nisi ut aliquip ex ea commodo consequat.
|
|
146
|
-
</Box>
|
|
147
|
-
<Box mb={8}>
|
|
148
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
|
|
149
|
-
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
|
|
150
|
-
enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
|
151
|
-
nisi ut aliquip ex ea commodo consequat.
|
|
152
|
-
</Box>
|
|
153
|
-
<Box mb={8}>
|
|
154
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
|
|
155
|
-
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
|
|
156
|
-
enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
|
157
|
-
nisi ut aliquip ex ea commodo consequat.
|
|
158
|
-
</Box>
|
|
159
|
-
<Box mb={8}>
|
|
160
|
-
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
|
|
161
|
-
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
|
|
162
|
-
enim ad minim veniam, quis nostrud exercitation ullamco laboris
|
|
163
|
-
nisi ut aliquip ex ea commodo consequat.
|
|
164
|
-
</Box>
|
|
165
|
-
<Box mb={8} opacity={0.7}>
|
|
166
|
-
Position: {computedPosition}
|
|
167
|
-
{computedPosition !== preferredPosition && ' (flipped!)'}
|
|
168
|
-
{' | '}
|
|
169
|
-
Max height: {availableHeight ? `${Math.round(availableHeight)}px` : 'auto'}
|
|
170
|
-
</Box>
|
|
46
|
+
<FlexBox alignItems="flex-start" flexDirection="column" p={p}>
|
|
47
|
+
<Box mb={8}>Hooray!</Box>
|
|
171
48
|
<FillButton size="small" onClick={() => setOpen(false)}>
|
|
172
49
|
Close Popover
|
|
173
50
|
</FillButton>
|
|
Binary file
|