@dxos/react-ui-stack 0.8.4-main.f9ba587 → 0.8.4-main.fffef41
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/dist/lib/browser/chunk-3F2KBXLP.mjs +1482 -0
- package/dist/lib/browser/chunk-3F2KBXLP.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +45 -1158
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/playwright/index.mjs +61 -0
- package/dist/lib/browser/playwright/index.mjs.map +7 -0
- package/dist/lib/browser/testing/index.mjs +25 -51
- package/dist/lib/browser/testing/index.mjs.map +4 -4
- package/dist/lib/node-esm/chunk-SYKFLQGK.mjs +1484 -0
- package/dist/lib/node-esm/chunk-SYKFLQGK.mjs.map +7 -0
- package/dist/lib/node-esm/index.mjs +45 -1159
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/lib/node-esm/playwright/index.mjs +63 -0
- package/dist/lib/node-esm/playwright/index.mjs.map +7 -0
- package/dist/lib/node-esm/testing/index.mjs +24 -51
- package/dist/lib/node-esm/testing/index.mjs.map +4 -4
- package/dist/types/src/components/Image/Image.d.ts +14 -0
- package/dist/types/src/components/Image/Image.d.ts.map +1 -0
- package/dist/types/src/components/Image/Image.stories.d.ts +33 -0
- package/dist/types/src/components/Image/Image.stories.d.ts.map +1 -0
- package/dist/types/src/components/Image/index.d.ts +2 -0
- package/dist/types/src/components/Image/index.d.ts.map +1 -0
- package/dist/types/src/components/Stack/Stack.d.ts +15 -7
- package/dist/types/src/components/Stack/Stack.d.ts.map +1 -1
- package/dist/types/src/components/Stack/Stack.stories.d.ts +12 -3
- package/dist/types/src/components/Stack/Stack.stories.d.ts.map +1 -1
- package/dist/types/src/components/StackContext.d.ts +2 -1
- package/dist/types/src/components/StackContext.d.ts.map +1 -1
- package/dist/types/src/components/StackItem/StackItem.d.ts +7 -6
- package/dist/types/src/components/StackItem/StackItem.d.ts.map +1 -1
- package/dist/types/src/components/StackItem/StackItem.stories.d.ts +13 -5
- package/dist/types/src/components/StackItem/StackItem.stories.d.ts.map +1 -1
- package/dist/types/src/components/StackItem/StackItemContent.d.ts +20 -10
- package/dist/types/src/components/StackItem/StackItemContent.d.ts.map +1 -1
- package/dist/types/src/components/StackItem/StackItemHeading.d.ts +1 -1
- package/dist/types/src/components/StackItem/StackItemHeading.d.ts.map +1 -1
- package/dist/types/src/components/StackItem/StackItemResizeHandle.d.ts.map +1 -1
- package/dist/types/src/components/StackItem/StackItemSigil.d.ts.map +1 -1
- package/dist/types/src/components/index.d.ts +2 -1
- package/dist/types/src/components/index.d.ts.map +1 -1
- package/dist/types/src/exemplars/Card/Card.d.ts +25 -13
- package/dist/types/src/exemplars/Card/Card.d.ts.map +1 -1
- package/dist/types/src/exemplars/Card/Card.stories.d.ts +12 -4
- package/dist/types/src/exemplars/Card/Card.stories.d.ts.map +1 -1
- package/dist/types/src/exemplars/Card/fragments.d.ts +3 -2
- package/dist/types/src/exemplars/Card/fragments.d.ts.map +1 -1
- package/dist/types/src/exemplars/CardStack/CardStack.d.ts +3 -1
- package/dist/types/src/exemplars/CardStack/CardStack.d.ts.map +1 -1
- package/dist/types/src/exemplars/CardStack/CardStack.stories.d.ts +9 -3
- package/dist/types/src/exemplars/CardStack/CardStack.stories.d.ts.map +1 -1
- package/dist/types/src/hooks/useStackDropForElements.d.ts +3 -3
- package/dist/types/src/hooks/useStackDropForElements.d.ts.map +1 -1
- package/dist/types/src/playwright/index.d.ts +2 -0
- package/dist/types/src/playwright/index.d.ts.map +1 -0
- package/dist/types/src/playwright/stack-manager.d.ts.map +1 -0
- package/dist/types/src/testing/CardContainer.d.ts +6 -0
- package/dist/types/src/testing/CardContainer.d.ts.map +1 -0
- package/dist/types/src/testing/index.d.ts +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +36 -30
- package/src/components/Image/Image.stories.tsx +84 -0
- package/src/components/Image/Image.tsx +222 -0
- package/src/components/Image/index.ts +5 -0
- package/src/components/Stack/Stack.stories.tsx +8 -9
- package/src/components/Stack/Stack.tsx +222 -25
- package/src/components/StackContext.tsx +2 -1
- package/src/components/StackItem/StackItem.stories.tsx +16 -14
- package/src/components/StackItem/StackItem.tsx +26 -18
- package/src/components/StackItem/StackItemContent.tsx +21 -9
- package/src/components/StackItem/StackItemHeading.tsx +4 -8
- package/src/components/StackItem/StackItemResizeHandle.tsx +2 -1
- package/src/components/StackItem/StackItemSigil.tsx +2 -1
- package/src/components/index.ts +2 -1
- package/src/exemplars/Card/Card.stories.tsx +29 -43
- package/src/exemplars/Card/Card.tsx +67 -24
- package/src/exemplars/Card/fragments.ts +3 -2
- package/src/exemplars/CardStack/CardStack.stories.tsx +11 -10
- package/src/exemplars/CardStack/CardStack.tsx +12 -9
- package/src/hooks/useStackDropForElements.ts +43 -36
- package/src/playwright/index.ts +5 -0
- package/src/playwright/smoke.spec.ts +1 -1
- package/src/testing/CardContainer.tsx +37 -0
- package/src/testing/index.ts +1 -1
- package/dist/types/src/testing/stack-manager.d.ts.map +0 -1
- /package/dist/types/src/{testing → playwright}/stack-manager.d.ts +0 -0
- /package/src/{testing → playwright}/stack-manager.ts +0 -0
|
@@ -2,17 +2,14 @@
|
|
|
2
2
|
// Copyright 2025 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import '@dxos-theme';
|
|
6
|
-
|
|
7
5
|
import { type Meta, type StoryObj } from '@storybook/react-vite';
|
|
8
6
|
import React from 'react';
|
|
9
7
|
|
|
10
8
|
import { faker } from '@dxos/random';
|
|
11
|
-
import { withTheme } from '@dxos/
|
|
9
|
+
import { withTheme } from '@dxos/react-ui/testing';
|
|
12
10
|
|
|
13
11
|
import { Card } from './Card';
|
|
14
12
|
|
|
15
|
-
// Set a seed for reproducible random values
|
|
16
13
|
faker.seed(0);
|
|
17
14
|
|
|
18
15
|
type CardStoryProps = {
|
|
@@ -23,44 +20,8 @@ type CardStoryProps = {
|
|
|
23
20
|
showIcon: boolean;
|
|
24
21
|
};
|
|
25
22
|
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
decorators: [withTheme],
|
|
29
|
-
argTypes: {
|
|
30
|
-
title: {
|
|
31
|
-
control: 'text',
|
|
32
|
-
description: 'Card title',
|
|
33
|
-
},
|
|
34
|
-
description: {
|
|
35
|
-
control: 'text',
|
|
36
|
-
description: 'Card description',
|
|
37
|
-
},
|
|
38
|
-
image: {
|
|
39
|
-
control: 'text',
|
|
40
|
-
description: 'URL for the poster image',
|
|
41
|
-
},
|
|
42
|
-
showImage: {
|
|
43
|
-
control: 'boolean',
|
|
44
|
-
description: 'Whether to show the image',
|
|
45
|
-
},
|
|
46
|
-
showIcon: {
|
|
47
|
-
control: 'boolean',
|
|
48
|
-
description: 'Whether to show an icon (when image is not shown)',
|
|
49
|
-
},
|
|
50
|
-
},
|
|
51
|
-
args: {
|
|
52
|
-
title: faker.commerce.productName(),
|
|
53
|
-
description: faker.lorem.paragraph(),
|
|
54
|
-
image: faker.image.url(),
|
|
55
|
-
showImage: true,
|
|
56
|
-
showIcon: true,
|
|
57
|
-
},
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
export default meta;
|
|
61
|
-
|
|
62
|
-
export const Default: StoryObj<CardStoryProps> = {
|
|
63
|
-
render: ({ title, description, image, showImage, showIcon }: CardStoryProps) => (
|
|
23
|
+
const DefaultStory = ({ title, description, image, showImage, showIcon }: CardStoryProps) => {
|
|
24
|
+
return (
|
|
64
25
|
<div className='max-is-md'>
|
|
65
26
|
<Card.StaticRoot>
|
|
66
27
|
<Card.Toolbar>
|
|
@@ -74,5 +35,30 @@ export const Default: StoryObj<CardStoryProps> = {
|
|
|
74
35
|
{description && <Card.Text classNames='line-clamp-2'>{description}</Card.Text>}
|
|
75
36
|
</Card.StaticRoot>
|
|
76
37
|
</div>
|
|
77
|
-
)
|
|
38
|
+
);
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const meta = {
|
|
42
|
+
title: 'ui/react-ui-stack/Card',
|
|
43
|
+
render: DefaultStory,
|
|
44
|
+
decorators: [withTheme],
|
|
45
|
+
parameters: {
|
|
46
|
+
layout: 'centered',
|
|
47
|
+
},
|
|
48
|
+
} satisfies Meta<typeof DefaultStory>;
|
|
49
|
+
|
|
50
|
+
export default meta;
|
|
51
|
+
|
|
52
|
+
type Story = StoryObj<typeof meta>;
|
|
53
|
+
|
|
54
|
+
const image = faker.image.url();
|
|
55
|
+
|
|
56
|
+
export const Default: Story = {
|
|
57
|
+
args: {
|
|
58
|
+
title: faker.commerce.productName(),
|
|
59
|
+
description: faker.lorem.paragraph(),
|
|
60
|
+
image,
|
|
61
|
+
showImage: true,
|
|
62
|
+
showIcon: true,
|
|
63
|
+
},
|
|
78
64
|
};
|
|
@@ -5,28 +5,39 @@
|
|
|
5
5
|
import { Primitive } from '@radix-ui/react-primitive';
|
|
6
6
|
import { Slot } from '@radix-ui/react-slot';
|
|
7
7
|
import React, {
|
|
8
|
-
type ComponentPropsWithoutRef,
|
|
9
8
|
type ComponentPropsWithRef,
|
|
9
|
+
type ComponentPropsWithoutRef,
|
|
10
10
|
type FC,
|
|
11
|
-
forwardRef,
|
|
12
11
|
type PropsWithChildren,
|
|
12
|
+
forwardRef,
|
|
13
13
|
} from 'react';
|
|
14
14
|
|
|
15
15
|
import { Icon, IconButton, type ThemedClassName, Toolbar, type ToolbarRootProps, useTranslation } from '@dxos/react-ui';
|
|
16
|
-
import { hoverableControls, mx } from '@dxos/react-ui-theme';
|
|
16
|
+
import { cardMinInlineSize, hoverableControls, mx } from '@dxos/react-ui-theme';
|
|
17
17
|
|
|
18
|
-
import {
|
|
19
|
-
import { StackItem } from '../../components';
|
|
18
|
+
import { Image, StackItem } from '../../components';
|
|
20
19
|
import { translationKey } from '../../translations';
|
|
21
20
|
|
|
21
|
+
import { cardChrome, cardHeading, cardRoot, cardSpacing, cardText } from './fragments';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* The default width of cards. It should be no larger than 320px per WCAG 2.1 SC 1.4.10.
|
|
25
|
+
*/
|
|
26
|
+
const cardDefaultInlineSize = cardMinInlineSize;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* This is `cardDefaultInlineSize` plus 2 times the sum of the inner and outer spacing applied by CardStack on the inline axis.
|
|
30
|
+
*/
|
|
31
|
+
const cardStackDefaultInlineSizeRem = cardDefaultInlineSize + 2.125;
|
|
32
|
+
|
|
22
33
|
type SharedCardProps = ThemedClassName<ComponentPropsWithoutRef<'div'>> & { asChild?: boolean };
|
|
23
34
|
|
|
24
|
-
const CardStaticRoot = forwardRef<HTMLDivElement, SharedCardProps>(
|
|
25
|
-
({ children, classNames, asChild, role = 'group', ...props }, forwardedRef) => {
|
|
35
|
+
const CardStaticRoot = forwardRef<HTMLDivElement, SharedCardProps & { id?: string }>(
|
|
36
|
+
({ children, classNames, id, asChild, role = 'group', ...props }, forwardedRef) => {
|
|
26
37
|
const Root = asChild ? Slot : 'div';
|
|
27
38
|
const rootProps = asChild ? { classNames: [cardRoot, classNames] } : { className: mx(cardRoot, classNames), role };
|
|
28
39
|
return (
|
|
29
|
-
<Root {...props} {...rootProps} ref={forwardedRef}>
|
|
40
|
+
<Root {...(id && { 'data-object-id': id })} {...props} {...rootProps} ref={forwardedRef}>
|
|
30
41
|
{children}
|
|
31
42
|
</Root>
|
|
32
43
|
);
|
|
@@ -34,20 +45,41 @@ const CardStaticRoot = forwardRef<HTMLDivElement, SharedCardProps>(
|
|
|
34
45
|
);
|
|
35
46
|
|
|
36
47
|
/**
|
|
37
|
-
* This should be used by Surface fulfillments in cases where the content may or may not already be encapsulated (e.g.
|
|
38
|
-
*
|
|
39
|
-
* it will render a `div` primitive with the appropriate styling for specific handled situations.
|
|
48
|
+
* This should be used by Surface fulfillments in cases where the content may or may not already be encapsulated (e.g., in a Popover) and knows this based on the `role` it receives.
|
|
49
|
+
* This will render a `Card.StaticRoot` by default, otherwise it will render a `div` primitive with the appropriate styling for specific handled situations.
|
|
40
50
|
*/
|
|
41
|
-
const CardSurfaceRoot = ({
|
|
42
|
-
|
|
51
|
+
const CardSurfaceRoot = ({
|
|
52
|
+
id,
|
|
53
|
+
role = 'never',
|
|
54
|
+
children,
|
|
55
|
+
classNames,
|
|
56
|
+
}: ThemedClassName<PropsWithChildren<{ id?: string; role?: string }>>) => {
|
|
57
|
+
if (['card--popover', 'card--intrinsic', 'card--extrinsic'].includes(role)) {
|
|
43
58
|
return (
|
|
44
|
-
<div
|
|
59
|
+
<div
|
|
60
|
+
{...(id && { 'data-object-id': id })}
|
|
61
|
+
className={mx(
|
|
62
|
+
role === 'card--popover'
|
|
63
|
+
? 'popover-card-width'
|
|
64
|
+
: ['card--intrinsic', 'card--extrinsic'].includes(role)
|
|
65
|
+
? 'contents'
|
|
66
|
+
: '',
|
|
67
|
+
classNames,
|
|
68
|
+
)}
|
|
69
|
+
>
|
|
45
70
|
{children}
|
|
46
71
|
</div>
|
|
47
72
|
);
|
|
48
73
|
} else {
|
|
49
74
|
return (
|
|
50
|
-
<CardStaticRoot
|
|
75
|
+
<CardStaticRoot
|
|
76
|
+
id={id}
|
|
77
|
+
classNames={[
|
|
78
|
+
role === 'card--transclusion' && 'mlb-1',
|
|
79
|
+
role === 'card--transclusion' && hoverableControls,
|
|
80
|
+
classNames,
|
|
81
|
+
]}
|
|
82
|
+
>
|
|
51
83
|
{children}
|
|
52
84
|
</CardStaticRoot>
|
|
53
85
|
);
|
|
@@ -98,23 +130,26 @@ const CardDragPreview = StackItem.DragPreview;
|
|
|
98
130
|
|
|
99
131
|
const CardMenu = Primitive.div as FC<ComponentPropsWithRef<'div'>>;
|
|
100
132
|
|
|
101
|
-
type CardPosterProps =
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
133
|
+
type CardPosterProps = ThemedClassName<
|
|
134
|
+
{
|
|
135
|
+
alt: string;
|
|
136
|
+
aspect?: 'video' | 'auto';
|
|
137
|
+
} & Partial<{ image: string; icon: string }>
|
|
138
|
+
>;
|
|
105
139
|
|
|
106
140
|
const CardPoster = (props: CardPosterProps) => {
|
|
107
141
|
const aspect = props.aspect === 'auto' ? 'aspect-auto' : 'aspect-video';
|
|
108
142
|
if (props.image) {
|
|
109
143
|
return (
|
|
110
|
-
<
|
|
144
|
+
<Image classNames={[`dx-card__poster is-full`, aspect, props.classNames]} src={props.image} alt={props.alt} />
|
|
111
145
|
);
|
|
112
146
|
}
|
|
147
|
+
|
|
113
148
|
if (props.icon) {
|
|
114
149
|
return (
|
|
115
150
|
<div
|
|
116
151
|
role='image'
|
|
117
|
-
className={`dx-card__poster grid
|
|
152
|
+
className={mx(`dx-card__poster grid place-items-center bg-inputSurface text-subdued`, aspect, props.classNames)}
|
|
118
153
|
aria-label={props.alt}
|
|
119
154
|
>
|
|
120
155
|
<Icon icon={props.icon} size={10} />
|
|
@@ -137,9 +172,9 @@ const CardChrome = forwardRef<HTMLDivElement, SharedCardProps>(
|
|
|
137
172
|
},
|
|
138
173
|
);
|
|
139
174
|
|
|
140
|
-
const CardText = forwardRef<
|
|
175
|
+
const CardText = forwardRef<HTMLDivElement, SharedCardProps>(
|
|
141
176
|
({ children, classNames, asChild, role = 'none', ...props }, forwardedRef) => {
|
|
142
|
-
const Root = asChild ? Slot : '
|
|
177
|
+
const Root = asChild ? Slot : 'div';
|
|
143
178
|
const rootProps = asChild ? { classNames: [cardText, classNames] } : { className: mx(cardText, classNames), role };
|
|
144
179
|
return (
|
|
145
180
|
<Root {...props} {...rootProps} ref={forwardedRef}>
|
|
@@ -164,4 +199,12 @@ export const Card = {
|
|
|
164
199
|
Text: CardText,
|
|
165
200
|
};
|
|
166
201
|
|
|
167
|
-
export {
|
|
202
|
+
export {
|
|
203
|
+
cardRoot,
|
|
204
|
+
cardHeading,
|
|
205
|
+
cardText,
|
|
206
|
+
cardChrome,
|
|
207
|
+
cardSpacing,
|
|
208
|
+
cardStackDefaultInlineSizeRem,
|
|
209
|
+
cardDefaultInlineSize,
|
|
210
|
+
};
|
|
@@ -6,6 +6,7 @@ export const cardRoot =
|
|
|
6
6
|
'rounded overflow-hidden bg-cardSurface border border-separator dark:border-subduedSeparator dx-focus-ring-group-y-indicator relative min-bs-[--rail-item] group/card';
|
|
7
7
|
|
|
8
8
|
export const cardSpacing = 'pli-cardSpacingInline mlb-cardSpacingBlock';
|
|
9
|
+
export const cardNoSpacing = 'pli-0 mlb-0';
|
|
9
10
|
export const labelSpacing = 'mbs-inputSpacingBlock mbe-labelSpacingBlock';
|
|
10
11
|
|
|
11
12
|
export const cardDialogContent = 'p-0 bs-content min-bs-[8rem] max-bs-full md:max-is-[32rem] overflow-hidden';
|
|
@@ -17,7 +18,7 @@ export const cardDialogSearchListRoot =
|
|
|
17
18
|
|
|
18
19
|
export const cardText = cardSpacing;
|
|
19
20
|
|
|
20
|
-
export const cardHeading = 'text-lg font-medium line-clamp-2';
|
|
21
|
+
export const cardHeading = 'text-lg font-medium line-clamp-2 grow';
|
|
21
22
|
|
|
22
23
|
export const cardChrome =
|
|
23
|
-
'pli-[--dx-cardSpacingChrome] mlb-[--dx-cardSpacingChrome] [&_.dx-button]:text-start [&_.dx-button]:is-full';
|
|
24
|
+
'pli-[--dx-cardSpacingChrome] mlb-[--dx-cardSpacingChrome] [&_.dx-button]:text-start [&_.dx-button]:is-full [&_.dx-button]:pis-[calc(var(--dx-cardSpacingInline)-var(--dx-cardSpacingChrome))]';
|
|
@@ -2,21 +2,19 @@
|
|
|
2
2
|
// Copyright 2025 DXOS.org
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import '@dxos-theme';
|
|
6
|
-
|
|
7
5
|
import { type Edge } from '@atlaskit/pragmatic-drag-and-drop-hitbox/closest-edge';
|
|
8
6
|
import { type Meta, type StoryObj } from '@storybook/react-vite';
|
|
9
|
-
import React, {
|
|
7
|
+
import React, { useCallback, useState } from 'react';
|
|
10
8
|
|
|
11
9
|
import { faker } from '@dxos/random';
|
|
12
10
|
import { IconButton } from '@dxos/react-ui';
|
|
13
|
-
import {
|
|
11
|
+
import { withTheme } from '@dxos/react-ui/testing';
|
|
14
12
|
|
|
15
|
-
import { CardStack } from './CardStack';
|
|
16
13
|
import { StackItem } from '../../components';
|
|
17
14
|
import { Card, CardDragPreview } from '../Card';
|
|
18
15
|
|
|
19
|
-
|
|
16
|
+
import { CardStack } from './CardStack';
|
|
17
|
+
|
|
20
18
|
faker.seed(0);
|
|
21
19
|
|
|
22
20
|
type CardItem = {
|
|
@@ -130,7 +128,7 @@ const CardStackStory = () => {
|
|
|
130
128
|
<Card.Text classNames='line-clamp-2'>{card.description}</Card.Text>
|
|
131
129
|
</Card.StaticRoot>
|
|
132
130
|
<StackItem.DragPreview>
|
|
133
|
-
{(
|
|
131
|
+
{() => (
|
|
134
132
|
<CardDragPreview.Root>
|
|
135
133
|
<CardDragPreview.Content>
|
|
136
134
|
<Card.Toolbar>
|
|
@@ -159,11 +157,14 @@ const CardStackStory = () => {
|
|
|
159
157
|
);
|
|
160
158
|
};
|
|
161
159
|
|
|
162
|
-
const meta
|
|
160
|
+
const meta = {
|
|
163
161
|
title: 'ui/react-ui-stack/CardStack',
|
|
164
162
|
component: CardStackStory,
|
|
165
|
-
decorators: [withTheme
|
|
166
|
-
|
|
163
|
+
decorators: [withTheme],
|
|
164
|
+
parameters: {
|
|
165
|
+
layout: 'fullscreen',
|
|
166
|
+
},
|
|
167
|
+
} satisfies Meta<typeof CardStackStory>;
|
|
167
168
|
|
|
168
169
|
export default meta;
|
|
169
170
|
|
|
@@ -8,7 +8,7 @@ import React, { type ComponentPropsWithoutRef, forwardRef } from 'react';
|
|
|
8
8
|
import type { ThemedClassName } from '@dxos/react-ui';
|
|
9
9
|
import { mx } from '@dxos/react-ui-theme';
|
|
10
10
|
|
|
11
|
-
import {
|
|
11
|
+
import { Stack, type StackProps, railGridHorizontalContainFitContent } from '../../components';
|
|
12
12
|
import { Card } from '../Card';
|
|
13
13
|
|
|
14
14
|
type SharedCardStackProps = ThemedClassName<ComponentPropsWithoutRef<'div'>> & { asChild?: boolean };
|
|
@@ -72,17 +72,20 @@ const CardStackFooter = forwardRef<HTMLDivElement, SharedCardStackProps>(
|
|
|
72
72
|
},
|
|
73
73
|
);
|
|
74
74
|
|
|
75
|
-
const cardStackContent =
|
|
76
|
-
'shrink min-bs-0 bg-baseSurface border border-separator rounded-md grid dx-focus-ring-group-x-indicator kanban-drop'
|
|
77
|
-
railGridHorizontalContainFitContent,
|
|
78
|
-
];
|
|
75
|
+
const cardStackContent =
|
|
76
|
+
'shrink min-bs-0 bg-baseSurface border border-separator rounded-md grid dx-focus-ring-group-x-indicator kanban-drop';
|
|
79
77
|
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
type CardStackContentProps = SharedCardStackProps & {
|
|
79
|
+
footer?: boolean;
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
const CardStackContent = forwardRef<HTMLDivElement, CardStackContentProps>(
|
|
83
|
+
({ children, classNames, asChild, role = 'none', footer = true, ...props }, forwardedRef) => {
|
|
82
84
|
const Root = asChild ? Slot : 'div';
|
|
85
|
+
const baseClassNames = footer ? [cardStackContent, railGridHorizontalContainFitContent] : [cardStackContent];
|
|
83
86
|
const rootProps = asChild
|
|
84
|
-
? { classNames: [...
|
|
85
|
-
: { className: mx(...
|
|
87
|
+
? { classNames: [...baseClassNames, classNames] }
|
|
88
|
+
: { className: mx(...baseClassNames, classNames), role };
|
|
86
89
|
return (
|
|
87
90
|
<Root {...props} {...rootProps} data-scroll-separator='false' ref={forwardedRef}>
|
|
88
91
|
{children}
|
|
@@ -8,7 +8,9 @@ import { autoScrollForElements } from '@atlaskit/pragmatic-drag-and-drop-auto-sc
|
|
|
8
8
|
import { attachClosestEdge, extractClosestEdge } from '@atlaskit/pragmatic-drag-and-drop-hitbox/closest-edge';
|
|
9
9
|
import { useLayoutEffect, useState } from 'react';
|
|
10
10
|
|
|
11
|
-
import { type
|
|
11
|
+
import { type Orientation, type StackItemData, type StackItemRearrangeHandler } from '../components';
|
|
12
|
+
|
|
13
|
+
const noop = () => {};
|
|
12
14
|
|
|
13
15
|
/**
|
|
14
16
|
* Hook to handle drag and drop functionality for Stack components.
|
|
@@ -17,59 +19,64 @@ export const useStackDropForElements = ({
|
|
|
17
19
|
id,
|
|
18
20
|
element,
|
|
19
21
|
scrollElement = element,
|
|
20
|
-
selfDroppable,
|
|
21
22
|
orientation,
|
|
23
|
+
selfDroppable,
|
|
22
24
|
onRearrange,
|
|
23
25
|
}: {
|
|
24
26
|
id?: string;
|
|
25
27
|
element: HTMLDivElement | null;
|
|
26
28
|
scrollElement?: HTMLDivElement | null;
|
|
27
|
-
selfDroppable: boolean;
|
|
28
29
|
orientation: Orientation;
|
|
30
|
+
selfDroppable: boolean;
|
|
29
31
|
onRearrange?: StackItemRearrangeHandler;
|
|
30
32
|
}) => {
|
|
31
33
|
const [dropping, setDropping] = useState(false);
|
|
32
34
|
|
|
33
35
|
useLayoutEffect(() => {
|
|
34
|
-
if (!element
|
|
36
|
+
if (!element) {
|
|
35
37
|
return;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
const acceptSourceType = orientation === 'horizontal' ? 'column' : 'card';
|
|
39
41
|
|
|
40
42
|
return combine(
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
43
|
+
selfDroppable
|
|
44
|
+
? dropTargetForElements({
|
|
45
|
+
element,
|
|
46
|
+
getData: ({ input, element }) => {
|
|
47
|
+
return attachClosestEdge(
|
|
48
|
+
{ id, type: orientation === 'horizontal' ? 'card' : 'column' },
|
|
49
|
+
{ input, element, allowedEdges: [orientation === 'horizontal' ? 'left' : 'top'] },
|
|
50
|
+
);
|
|
51
|
+
},
|
|
52
|
+
onDragEnter: ({ source }) => {
|
|
53
|
+
if (source.data.type === acceptSourceType) {
|
|
54
|
+
setDropping(true);
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
onDrag: ({ source }) => {
|
|
58
|
+
if (source.data.type === acceptSourceType) {
|
|
59
|
+
setDropping(true);
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
onDragLeave: () => {
|
|
63
|
+
return setDropping(false);
|
|
64
|
+
},
|
|
65
|
+
onDrop: ({ self, source }) => {
|
|
66
|
+
setDropping(false);
|
|
67
|
+
if (source.data.type === acceptSourceType && selfDroppable && onRearrange) {
|
|
68
|
+
onRearrange(source.data as StackItemData, self.data as StackItemData, extractClosestEdge(self.data));
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
})
|
|
72
|
+
: noop,
|
|
73
|
+
|
|
74
|
+
scrollElement
|
|
75
|
+
? autoScrollForElements({
|
|
76
|
+
element: scrollElement,
|
|
77
|
+
getAllowedAxis: () => orientation,
|
|
78
|
+
})
|
|
79
|
+
: noop,
|
|
73
80
|
);
|
|
74
81
|
}, [element, scrollElement, selfDroppable, orientation, id, onRearrange]);
|
|
75
82
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright 2025 DXOS.org
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
import React, { type PropsWithChildren } from 'react';
|
|
6
|
+
|
|
7
|
+
import { ExtrinsicCardContainer, IntrinsicCardContainer, PopoverCardContainer } from '@dxos/storybook-utils';
|
|
8
|
+
|
|
9
|
+
import { Card } from '../exemplars';
|
|
10
|
+
|
|
11
|
+
export const CardContainer = ({
|
|
12
|
+
children,
|
|
13
|
+
icon = 'ph--placeholder--regular',
|
|
14
|
+
role,
|
|
15
|
+
}: PropsWithChildren<{ icon?: string; role?: string }>) => {
|
|
16
|
+
switch (role) {
|
|
17
|
+
case 'card--popover':
|
|
18
|
+
return <PopoverCardContainer icon={icon}>{children}</PopoverCardContainer>;
|
|
19
|
+
|
|
20
|
+
case 'card--extrinsic':
|
|
21
|
+
return (
|
|
22
|
+
<ExtrinsicCardContainer>
|
|
23
|
+
<Card.StaticRoot>{children}</Card.StaticRoot>
|
|
24
|
+
</ExtrinsicCardContainer>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
case 'card--intrinsic':
|
|
28
|
+
return (
|
|
29
|
+
<IntrinsicCardContainer>
|
|
30
|
+
<Card.StaticRoot>{children}</Card.StaticRoot>
|
|
31
|
+
</IntrinsicCardContainer>
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
default:
|
|
35
|
+
return <Card.StaticRoot>{children}</Card.StaticRoot>;
|
|
36
|
+
}
|
|
37
|
+
};
|
package/src/testing/index.ts
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"stack-manager.d.ts","sourceRoot":"","sources":["../../../../src/testing/stack-manager.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAQ,MAAM,kBAAkB,CAAC;AAEtD,qBAAa,YAAY;IAGX,QAAQ,CAAC,OAAO,EAAE,OAAO;IAFrC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAO;gBAER,OAAO,EAAE,OAAO;IAIrC,QAAQ,IAAI,OAAO;IAInB,KAAK;IAIL,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,cAAc;CAGvC;AAED,qBAAa,cAAc;IAGb,QAAQ,CAAC,OAAO,EAAE,OAAO;IAFrC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAO;gBAER,OAAO,EAAE,OAAO;IAI/B,EAAE,IAAI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAI5B,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;IAKvB,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAK3B,MAAM,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,GAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAmB,GAAG,OAAO,CAAC,IAAI,CAAC;CAehG"}
|
|
File without changes
|
|
File without changes
|