@dxos/react-ui-searchlist 0.8.4-main.fd6878d → 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.
Files changed (58) hide show
  1. package/dist/lib/browser/index.mjs +258 -139
  2. package/dist/lib/browser/index.mjs.map +4 -4
  3. package/dist/lib/browser/meta.json +1 -1
  4. package/dist/lib/node-esm/index.mjs +258 -139
  5. package/dist/lib/node-esm/index.mjs.map +4 -4
  6. package/dist/lib/node-esm/meta.json +1 -1
  7. package/dist/types/src/components/Combobox/Combobox.d.ts +44 -0
  8. package/dist/types/src/components/Combobox/Combobox.d.ts.map +1 -0
  9. package/dist/types/src/components/Combobox/Combobox.stories.d.ts +21 -0
  10. package/dist/types/src/components/Combobox/Combobox.stories.d.ts.map +1 -0
  11. package/dist/types/src/components/Combobox/index.d.ts +2 -0
  12. package/dist/types/src/components/Combobox/index.d.ts.map +1 -0
  13. package/dist/types/src/components/Listbox/Listbox.d.ts +31 -0
  14. package/dist/types/src/components/Listbox/Listbox.d.ts.map +1 -0
  15. package/dist/types/src/components/Listbox/Listbox.stories.d.ts +21 -0
  16. package/dist/types/src/components/Listbox/Listbox.stories.d.ts.map +1 -0
  17. package/dist/types/src/components/Listbox/index.d.ts +2 -0
  18. package/dist/types/src/components/Listbox/index.d.ts.map +1 -0
  19. package/dist/types/src/components/{SearchList.d.ts → SearchList/SearchList.d.ts} +7 -27
  20. package/dist/types/src/components/SearchList/SearchList.d.ts.map +1 -0
  21. package/dist/types/src/components/SearchList/SearchList.stories.d.ts +25 -0
  22. package/dist/types/src/components/SearchList/SearchList.stories.d.ts.map +1 -0
  23. package/dist/types/src/components/SearchList/index.d.ts +2 -0
  24. package/dist/types/src/components/SearchList/index.d.ts.map +1 -0
  25. package/dist/types/src/components/index.d.ts +2 -0
  26. package/dist/types/src/components/index.d.ts.map +1 -1
  27. package/dist/types/src/index.d.ts +0 -1
  28. package/dist/types/src/index.d.ts.map +1 -1
  29. package/dist/types/src/translations.d.ts +3 -1
  30. package/dist/types/src/translations.d.ts.map +1 -1
  31. package/dist/types/tsconfig.tsbuildinfo +1 -1
  32. package/package.json +16 -14
  33. package/src/components/Combobox/Combobox.stories.tsx +57 -0
  34. package/src/components/Combobox/Combobox.tsx +335 -0
  35. package/src/components/Combobox/index.ts +5 -0
  36. package/src/components/Listbox/Listbox.stories.tsx +53 -0
  37. package/src/components/Listbox/Listbox.tsx +209 -0
  38. package/src/components/Listbox/index.ts +5 -0
  39. package/src/components/SearchList/SearchList.stories.tsx +64 -0
  40. package/src/components/SearchList/SearchList.tsx +163 -0
  41. package/src/components/SearchList/index.ts +5 -0
  42. package/src/components/index.ts +2 -0
  43. package/src/index.ts +0 -1
  44. package/src/translations.ts +3 -1
  45. package/dist/types/src/components/SearchList.d.ts.map +0 -1
  46. package/dist/types/src/components/SearchList.stories.d.ts +0 -15
  47. package/dist/types/src/components/SearchList.stories.d.ts.map +0 -1
  48. package/dist/types/src/composites/PopoverCombobox.d.ts +0 -32
  49. package/dist/types/src/composites/PopoverCombobox.d.ts.map +0 -1
  50. package/dist/types/src/composites/PopoverCombobox.stories.d.ts +0 -28
  51. package/dist/types/src/composites/PopoverCombobox.stories.d.ts.map +0 -1
  52. package/dist/types/src/composites/index.d.ts +0 -2
  53. package/dist/types/src/composites/index.d.ts.map +0 -1
  54. package/src/components/SearchList.stories.tsx +0 -47
  55. package/src/components/SearchList.tsx +0 -250
  56. package/src/composites/PopoverCombobox.stories.tsx +0 -44
  57. package/src/composites/PopoverCombobox.tsx +0 -208
  58. package/src/composites/index.ts +0 -5
@@ -0,0 +1,5 @@
1
+ //
2
+ // Copyright 2022 DXOS.org
3
+ //
4
+
5
+ export * from './Listbox';
@@ -0,0 +1,64 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { type Meta, type StoryObj } from '@storybook/react-vite';
6
+ import React from 'react';
7
+
8
+ import { faker } from '@dxos/random';
9
+ import { withLayout, withTheme } from '@dxos/react-ui/testing';
10
+
11
+ import { translations } from '../../translations';
12
+
13
+ import { SearchList } from './SearchList';
14
+
15
+ faker.seed(1234);
16
+
17
+ type StoryItems = Record<string, string>;
18
+
19
+ const defaultItems: StoryItems = faker.helpers
20
+ .uniqueArray(faker.commerce.productName, 16)
21
+ .sort()
22
+ .reduce((acc: StoryItems, label) => {
23
+ acc[faker.string.uuid()] = label;
24
+ return acc;
25
+ }, {});
26
+
27
+ type StoryProps = {
28
+ items: StoryItems;
29
+ };
30
+
31
+ const DefaultStory = ({ items = defaultItems }: StoryProps) => {
32
+ return (
33
+ <SearchList.Root filter={(value, search) => (items[value].toLowerCase().includes(search.toLowerCase()) ? 1 : 0)}>
34
+ <SearchList.Input />
35
+ <SearchList.Content>
36
+ {Object.entries(items).map(([value, label]) => (
37
+ <SearchList.Item
38
+ key={value}
39
+ value={value}
40
+ onSelect={(value) => console.log('[SearchList.Item.onSelect]', value)}
41
+ >
42
+ {label}
43
+ </SearchList.Item>
44
+ ))}
45
+ </SearchList.Content>
46
+ </SearchList.Root>
47
+ );
48
+ };
49
+
50
+ const meta = {
51
+ title: 'ui/react-ui-searchlist/SearchList',
52
+ component: SearchList.Root as any,
53
+ render: DefaultStory,
54
+ decorators: [withTheme, withLayout({ container: 'column', classNames: 'p-2' })],
55
+ parameters: {
56
+ translations,
57
+ },
58
+ } satisfies Meta<typeof DefaultStory>;
59
+
60
+ export default meta;
61
+
62
+ type Story = StoryObj<typeof meta>;
63
+
64
+ export const Default: Story = {};
@@ -0,0 +1,163 @@
1
+ //
2
+ // Copyright 2023 DXOS.org
3
+ //
4
+
5
+ import { CommandEmpty, CommandInput, CommandItem, CommandList, CommandRoot } from 'cmdk';
6
+ import React, { type ComponentPropsWithRef, forwardRef } from 'react';
7
+
8
+ import {
9
+ type TextInputProps,
10
+ type ThemedClassName,
11
+ useDensityContext,
12
+ useElevationContext,
13
+ useThemeContext,
14
+ useTranslation,
15
+ } from '@dxos/react-ui';
16
+ import { mx } from '@dxos/react-ui-theme';
17
+
18
+ import { translationKey } from '../../translations';
19
+
20
+ const commandItem = 'flex items-center overflow-hidden';
21
+ const searchListItem =
22
+ 'plb-1 pli-2 rounded-sm select-none cursor-pointer data-[selected]:bg-hoverOverlay hover:bg-hoverOverlay';
23
+
24
+ const SEARCHLIST_NAME = 'SearchList';
25
+ const SEARCHLIST_ITEM_NAME = 'SearchListItem';
26
+
27
+ //
28
+ // Root
29
+ //
30
+
31
+ type SearchListVariant = 'list' | 'menu' | 'listbox';
32
+
33
+ type SearchListRootProps = ThemedClassName<ComponentPropsWithRef<typeof CommandRoot>> & {
34
+ variant?: SearchListVariant;
35
+ };
36
+
37
+ const SearchListRoot = forwardRef<HTMLDivElement, SearchListRootProps>(
38
+ ({ children, classNames, ...props }, forwardedRef) => {
39
+ return (
40
+ <CommandRoot {...props} className={mx(classNames)} ref={forwardedRef}>
41
+ {children}
42
+ </CommandRoot>
43
+ );
44
+ },
45
+ );
46
+
47
+ SearchListRoot.displayName = SEARCHLIST_NAME;
48
+
49
+ //
50
+ // Input
51
+ //
52
+
53
+ type CommandInputPrimitiveProps = ComponentPropsWithRef<typeof CommandInput>;
54
+
55
+ // TODO: Harmonize with other inputs’ `onChange` prop.
56
+ type SearchListInputProps = Omit<TextInputProps, 'value' | 'defaultValue' | 'onChange'> &
57
+ Pick<CommandInputPrimitiveProps, 'value' | 'defaultValue' | 'onValueChange'>;
58
+
59
+ const SearchListInput = forwardRef<HTMLInputElement, SearchListInputProps>(
60
+ ({ classNames, density: propsDensity, elevation: propsElevation, variant, ...props }, forwardedRef) => {
61
+ const { t } = useTranslation(translationKey);
62
+ const placeholder = props.placeholder ?? t('search.placeholder');
63
+
64
+ // TODO(thure): Keep this in-sync with `TextInput`, or submit a PR for `cmdk` to support `asChild` so we don’t have to.
65
+ const { hasIosKeyboard } = useThemeContext();
66
+ const { tx } = useThemeContext();
67
+ const density = useDensityContext(propsDensity);
68
+ const elevation = useElevationContext(propsElevation);
69
+
70
+ return (
71
+ <CommandInput
72
+ {...props}
73
+ placeholder={placeholder}
74
+ className={tx(
75
+ 'input.input',
76
+ 'input',
77
+ {
78
+ variant,
79
+ disabled: props.disabled,
80
+ density,
81
+ elevation,
82
+ },
83
+ 'mbe-cardSpacingBlock',
84
+ classNames,
85
+ )}
86
+ {...(props.autoFocus && !hasIosKeyboard && { autoFocus: true })}
87
+ ref={forwardedRef}
88
+ />
89
+ );
90
+ },
91
+ );
92
+
93
+ //
94
+ // Content
95
+ //
96
+
97
+ type SearchListContentProps = ThemedClassName<ComponentPropsWithRef<typeof CommandList>>;
98
+
99
+ const SearchListContent = forwardRef<HTMLDivElement, SearchListContentProps>(
100
+ ({ children, classNames, ...props }, forwardedRef) => {
101
+ return (
102
+ <CommandList {...props} className={mx(classNames)} ref={forwardedRef}>
103
+ {children}
104
+ </CommandList>
105
+ );
106
+ },
107
+ );
108
+
109
+ //
110
+ // Empty
111
+ //
112
+
113
+ type SearchListEmptyProps = ThemedClassName<ComponentPropsWithRef<typeof CommandEmpty>>;
114
+
115
+ const SearchListEmpty = forwardRef<HTMLDivElement, SearchListEmptyProps>(
116
+ ({ children, classNames, ...props }, forwardedRef) => {
117
+ return (
118
+ <CommandEmpty {...props} className={mx(classNames)} ref={forwardedRef}>
119
+ {children}
120
+ </CommandEmpty>
121
+ );
122
+ },
123
+ );
124
+
125
+ //
126
+ // Item
127
+ //
128
+
129
+ type SearchListItemProps = ThemedClassName<ComponentPropsWithRef<typeof CommandItem>>;
130
+
131
+ const SearchListItem = forwardRef<HTMLDivElement, SearchListItemProps>(
132
+ ({ children, classNames, ...props }, forwardedRef) => {
133
+ return (
134
+ <CommandItem {...props} className={mx(searchListItem, classNames)} ref={forwardedRef}>
135
+ {children}
136
+ </CommandItem>
137
+ );
138
+ },
139
+ );
140
+
141
+ SearchListItem.displayName = SEARCHLIST_ITEM_NAME;
142
+
143
+ //
144
+ // SearchList
145
+ //
146
+
147
+ export const SearchList = {
148
+ Root: SearchListRoot,
149
+ Input: SearchListInput,
150
+ Content: SearchListContent,
151
+ Empty: SearchListEmpty,
152
+ Item: SearchListItem,
153
+ };
154
+
155
+ export type {
156
+ SearchListRootProps,
157
+ SearchListInputProps,
158
+ SearchListContentProps,
159
+ SearchListEmptyProps,
160
+ SearchListItemProps,
161
+ };
162
+
163
+ export { commandItem, searchListItem };
@@ -0,0 +1,5 @@
1
+ //
2
+ // Copyright 2022 DXOS.org
3
+ //
4
+
5
+ export * from './SearchList';
@@ -2,4 +2,6 @@
2
2
  // Copyright 2022 DXOS.org
3
3
  //
4
4
 
5
+ export * from './Combobox';
6
+ export * from './Listbox';
5
7
  export * from './SearchList';
package/src/index.ts CHANGED
@@ -3,5 +3,4 @@
3
3
  //
4
4
 
5
5
  export * from './components';
6
- export * from './composites';
7
6
  export * from './translations';
@@ -9,7 +9,9 @@ export const translationKey = 'react-ui-searchlist';
9
9
  export const translations = [
10
10
  {
11
11
  'en-US': {
12
- [translationKey]: {},
12
+ [translationKey]: {
13
+ 'search.placeholder': 'Search...',
14
+ },
13
15
  },
14
16
  },
15
17
  ] as const satisfies Resource[];
@@ -1 +0,0 @@
1
- {"version":3,"file":"SearchList.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchList.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC;AACzF,OAAO,KAAK,EAAE,EAAE,KAAK,qBAAqB,EAAE,KAAK,iBAAiB,EAA2B,MAAM,OAAO,CAAC;AAE3G,OAAO,EAEL,KAAK,WAAW,EAEhB,KAAK,cAAc,EACnB,KAAK,eAAe,EAKrB,MAAM,gBAAgB,CAAC;AAGxB,KAAK,iBAAiB,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,CAAC;AAErD,KAAK,mBAAmB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,WAAW,CAAC,CAAC,GAAG;IACtF,OAAO,CAAC,EAAE,iBAAiB,CAAC;CAC7B,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,UAAU,EAAE,IAAI,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,OAAO,CAAC;IACd,YAAY,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAC;IAC1C,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AASF,KAAK,iBAAiB,GAAG,iBAAiB,CACxC,OAAO,CAAC,oBAAoB,GAAG;IAAE,WAAW,EAAE,OAAO,CAAC;IAAC,YAAY,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,CAAC,CACpG,CAAC;AAcF,KAAK,0BAA0B,GAAG,qBAAqB,CAAC,OAAO,YAAY,CAAC,CAAC;AAG7E,KAAK,oBAAoB,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,CAAC,GACrF,IAAI,CAAC,0BAA0B,EAAE,OAAO,GAAG,eAAe,GAAG,cAAc,CAAC,CAAC;AAgC/E,KAAK,sBAAsB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC;AAYzF,KAAK,oBAAoB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,YAAY,CAAC,CAAC,CAAC;AAYxF,KAAK,mBAAmB,GAAG,eAAe,CAAC,qBAAqB,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC;AAmEtF,KAAK,oBAAoB,GAAG,WAAW,CAAC;AAuCxC,eAAO,MAAM,UAAU;;;;;;CAMtB,CAAC;AAEF,eAAO,MAAM,QAAQ;;+LA5ElB,iBAAiB;;;;;CAgFnB,CAAC;AAEF,YAAY,EACV,mBAAmB,EACnB,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,EACpB,mBAAmB,EACnB,iBAAiB,EACjB,oBAAoB,GACrB,CAAC"}
@@ -1,15 +0,0 @@
1
- import '@dxos-theme';
2
- import React from 'react';
3
- type StoryItems = Record<string, string>;
4
- declare const _default: {
5
- title: string;
6
- component: React.FC<{
7
- items: StoryItems;
8
- }>;
9
- decorators: import("@storybook/react").Decorator[];
10
- };
11
- export default _default;
12
- export declare const Default: {
13
- args: {};
14
- };
15
- //# sourceMappingURL=SearchList.stories.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SearchList.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchList.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,aAAa,CAAC;AAErB,OAAO,KAAkB,MAAM,OAAO,CAAC;AAOvC,KAAK,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;;;eAUN,UAAU;;;;AAe7C,wBAIE;AAEF,eAAO,MAAM,OAAO;;CAEnB,CAAC"}
@@ -1,32 +0,0 @@
1
- import React from 'react';
2
- import { type PopoverArrowProps, type PopoverContentProps, type PopoverViewportProps, type PopoverVirtualTriggerProps } from '@dxos/react-ui';
3
- import { type ComboboxRootProps, type ComboboxTriggerProps, type SearchListContentProps, type SearchListEmptyProps, type SearchListInputProps, type SearchListItemProps, type SearchListRootProps } from '../components';
4
- type PopoverComboboxRootProps = ComboboxRootProps & {
5
- modal?: boolean;
6
- };
7
- type PopoverComboboxContentProps = SearchListRootProps & PopoverContentProps;
8
- type PopoverComboboxTriggerProps = ComboboxTriggerProps;
9
- type PopoverComboboxVirtualTriggerProps = PopoverVirtualTriggerProps;
10
- type PopoverComboboxInputProps = SearchListInputProps;
11
- type PopoverComboboxListProps = SearchListContentProps & Pick<PopoverViewportProps, 'constrainBlock' | 'constrainInline'>;
12
- type PopoverComboboxItemProps = SearchListItemProps;
13
- type PopoverComboboxArrowProps = PopoverArrowProps;
14
- type PopoverComboboxEmptyProps = SearchListEmptyProps;
15
- export declare const PopoverCombobox: {
16
- Root: ({ modal, children, open: propsOpen, onOpenChange: propsOnOpenChange, defaultOpen, ...props }: PopoverComboboxRootProps) => React.JSX.Element;
17
- Content: React.ForwardRefExoticComponent<Omit<PopoverComboboxContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
18
- Trigger: React.ForwardRefExoticComponent<Omit<import("@dxos/react-ui").ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
19
- VirtualTrigger: {
20
- (props: PopoverVirtualTriggerProps & {
21
- __scopePopover?: import("@radix-ui/react-context").Scope;
22
- }): React.JSX.Element;
23
- displayName: string;
24
- };
25
- Input: React.ForwardRefExoticComponent<Omit<SearchListInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
26
- List: React.ForwardRefExoticComponent<Omit<PopoverComboboxListProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
27
- Item: React.ForwardRefExoticComponent<Omit<SearchListItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
28
- Arrow: React.ForwardRefExoticComponent<PopoverArrowProps & React.RefAttributes<SVGSVGElement>>;
29
- Empty: React.ForwardRefExoticComponent<Omit<SearchListEmptyProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
30
- };
31
- export type { PopoverComboboxRootProps, PopoverComboboxContentProps, PopoverComboboxTriggerProps, PopoverComboboxVirtualTriggerProps, PopoverComboboxInputProps, PopoverComboboxListProps, PopoverComboboxItemProps, PopoverComboboxArrowProps, PopoverComboboxEmptyProps, };
32
- //# sourceMappingURL=PopoverCombobox.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PopoverCombobox.d.ts","sourceRoot":"","sources":["../../../../src/composites/PopoverCombobox.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAEL,KAAK,iBAAiB,EACtB,KAAK,mBAAmB,EACxB,KAAK,oBAAoB,EACzB,KAAK,0BAA0B,EAChC,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAEL,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EAEzB,KAAK,sBAAsB,EAC3B,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACzB,MAAM,eAAe,CAAC;AAEvB,KAAK,wBAAwB,GAAG,iBAAiB,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAA;CAAE,CAAC;AAwBxE,KAAK,2BAA2B,GAAG,mBAAmB,GAAG,mBAAmB,CAAC;AAoE7E,KAAK,2BAA2B,GAAG,oBAAoB,CAAC;AAUxD,KAAK,kCAAkC,GAAG,0BAA0B,CAAC;AAIrE,KAAK,yBAAyB,GAAG,oBAAoB,CAAC;AAiBtD,KAAK,wBAAwB,GAAG,sBAAsB,GACpD,IAAI,CAAC,oBAAoB,EAAE,gBAAgB,GAAG,iBAAiB,CAAC,CAAC;AAYnE,KAAK,wBAAwB,GAAG,mBAAmB,CAAC;AAcpD,KAAK,yBAAyB,GAAG,iBAAiB,CAAC;AAInD,KAAK,yBAAyB,GAAG,oBAAoB,CAAC;AAItD,eAAO,MAAM,eAAe;yGArJzB,wBAAwB;;;;;;;;;;;;;;CA+J1B,CAAC;AAEF,YAAY,EACV,wBAAwB,EACxB,2BAA2B,EAC3B,2BAA2B,EAC3B,kCAAkC,EAClC,yBAAyB,EACzB,wBAAwB,EACxB,wBAAwB,EACxB,yBAAyB,EACzB,yBAAyB,GAC1B,CAAC"}
@@ -1,28 +0,0 @@
1
- import '@dxos-theme';
2
- import React from 'react';
3
- declare const _default: {
4
- title: string;
5
- component: {
6
- Root: ({ modal, children, open: propsOpen, onOpenChange: propsOnOpenChange, defaultOpen, ...props }: import("./PopoverCombobox").PopoverComboboxRootProps) => React.JSX.Element;
7
- Content: React.ForwardRefExoticComponent<Omit<import("./PopoverCombobox").PopoverComboboxContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
8
- Trigger: React.ForwardRefExoticComponent<Omit<import("@dxos/react-ui").ButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
9
- VirtualTrigger: {
10
- (props: import("@dxos/react-ui").PopoverVirtualTriggerProps & {
11
- __scopePopover?: import("@radix-ui/react-context").Scope;
12
- }): React.JSX.Element;
13
- displayName: string;
14
- };
15
- Input: React.ForwardRefExoticComponent<Omit<import("..").SearchListInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
16
- List: React.ForwardRefExoticComponent<Omit<import("./PopoverCombobox").PopoverComboboxListProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
17
- Item: React.ForwardRefExoticComponent<Omit<import("..").SearchListItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
18
- Arrow: React.ForwardRefExoticComponent<import("@dxos/react-ui").PopoverArrowProps & React.RefAttributes<SVGSVGElement>>;
19
- Empty: React.ForwardRefExoticComponent<Omit<import("..").SearchListEmptyProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
20
- };
21
- render: () => React.JSX.Element;
22
- decorators: import("@storybook/react").Decorator[];
23
- };
24
- export default _default;
25
- export declare const Default: {
26
- args: {};
27
- };
28
- //# sourceMappingURL=PopoverCombobox.stories.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PopoverCombobox.stories.d.ts","sourceRoot":"","sources":["../../../../src/composites/PopoverCombobox.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,aAAa,CAAC;AAErB,OAAO,KAAK,MAAM,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;;AA4B1B,wBAKE;AAEF,eAAO,MAAM,OAAO;;CAEnB,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from './PopoverCombobox';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/composites/index.ts"],"names":[],"mappings":"AAIA,cAAc,mBAAmB,CAAC"}
@@ -1,47 +0,0 @@
1
- //
2
- // Copyright 2023 DXOS.org
3
- //
4
-
5
- import '@dxos-theme';
6
-
7
- import React, { type FC } from 'react';
8
-
9
- import { faker } from '@dxos/random';
10
- import { withTheme } from '@dxos/storybook-utils';
11
-
12
- import { SearchList } from './SearchList';
13
-
14
- type StoryItems = Record<string, string>;
15
-
16
- const defaultItems: StoryItems = faker.helpers
17
- .uniqueArray(faker.commerce.productName, 16)
18
- .sort()
19
- .reduce((acc: StoryItems, label) => {
20
- acc[faker.string.uuid()] = label;
21
- return acc;
22
- }, {});
23
-
24
- const SearchListStory: FC<{ items: StoryItems }> = ({ items = defaultItems }) => {
25
- return (
26
- <SearchList.Root filter={(value, search) => (items[value].includes(search) ? 1 : 0)}>
27
- <SearchList.Input placeholder='Search...' />
28
- <SearchList.Content>
29
- {Object.entries(items).map(([value, label]) => (
30
- <SearchList.Item key={value} value={value} onSelect={(value) => console.log('[item select]', value)}>
31
- {label}
32
- </SearchList.Item>
33
- ))}
34
- </SearchList.Content>
35
- </SearchList.Root>
36
- );
37
- };
38
-
39
- export default {
40
- title: 'ui/react-ui-searchlist/SearchList',
41
- component: SearchListStory,
42
- decorators: [withTheme],
43
- };
44
-
45
- export const Default = {
46
- args: {},
47
- };
@@ -1,250 +0,0 @@
1
- //
2
- // Copyright 2023 DXOS.org
3
- //
4
-
5
- import { createContext } from '@radix-ui/react-context';
6
- import { useControllableState } from '@radix-ui/react-use-controllable-state';
7
- import { CommandEmpty, CommandInput, CommandItem, CommandList, CommandRoot } from 'cmdk';
8
- import React, { type ComponentPropsWithRef, type PropsWithChildren, forwardRef, useCallback } from 'react';
9
-
10
- import {
11
- Button,
12
- type ButtonProps,
13
- Icon,
14
- type TextInputProps,
15
- type ThemedClassName,
16
- useDensityContext,
17
- useElevationContext,
18
- useId,
19
- useThemeContext,
20
- } from '@dxos/react-ui';
21
- import { mx, staticPlaceholderText } from '@dxos/react-ui-theme';
22
-
23
- type SearchListVariant = 'list' | 'menu' | 'listbox';
24
-
25
- type SearchListRootProps = ThemedClassName<ComponentPropsWithRef<typeof CommandRoot>> & {
26
- variant?: SearchListVariant;
27
- };
28
-
29
- type ComboboxContextValue = {
30
- isCombobox: true;
31
- modalId: string;
32
- open: boolean;
33
- onOpenChange: (nextOpen: boolean) => void;
34
- value: string;
35
- onValueChange: (nextValue: string) => void;
36
- placeholder?: string;
37
- };
38
-
39
- const COMBOBOX_NAME = 'Combobox';
40
- const COMBOBOX_TRIGGER_NAME = 'ComboboxTrigger';
41
- const SEARCHLIST_NAME = 'SearchList';
42
- const SEARCHLIST_ITEM_NAME = 'SearchListItem';
43
-
44
- const [ComboboxProvider, useComboboxContext] = createContext<Partial<ComboboxContextValue>>(COMBOBOX_NAME, {});
45
-
46
- type ComboboxRootProps = PropsWithChildren<
47
- Partial<ComboboxContextValue & { defaultOpen: boolean; defaultValue: string; placeholder: string }>
48
- >;
49
-
50
- const SearchListRoot = forwardRef<HTMLDivElement, SearchListRootProps>(
51
- ({ children, classNames, ...props }, forwardedRef) => {
52
- return (
53
- <CommandRoot {...props} className={mx('', classNames)} ref={forwardedRef}>
54
- {children}
55
- </CommandRoot>
56
- );
57
- },
58
- );
59
-
60
- SearchListRoot.displayName = SEARCHLIST_NAME;
61
-
62
- type CommandInputPrimitiveProps = ComponentPropsWithRef<typeof CommandInput>;
63
-
64
- // TODO: Harmonize with other inputs’ `onChange` prop.
65
- type SearchListInputProps = Omit<TextInputProps, 'value' | 'defaultValue' | 'onChange'> &
66
- Pick<CommandInputPrimitiveProps, 'value' | 'onValueChange' | 'defaultValue'>;
67
-
68
- const SearchListInput = forwardRef<HTMLInputElement, SearchListInputProps>(
69
- ({ children, classNames, density: propsDensity, elevation: propsElevation, variant, ...props }, forwardedRef) => {
70
- // CHORE(thure): Keep this in-sync with `TextInput`, or submit a PR for `cmdk` to support `asChild` so we don’t have to.
71
- const { hasIosKeyboard } = useThemeContext();
72
- const { tx } = useThemeContext();
73
- const density = useDensityContext(propsDensity);
74
- const elevation = useElevationContext(propsElevation);
75
-
76
- return (
77
- <CommandInput
78
- {...props}
79
- className={tx(
80
- 'input.input',
81
- 'input',
82
- {
83
- variant,
84
- disabled: props.disabled,
85
- density,
86
- elevation,
87
- },
88
- 'mbe-cardSpacingBlock',
89
- classNames,
90
- )}
91
- {...(props.autoFocus && !hasIosKeyboard && { autoFocus: true })}
92
- ref={forwardedRef}
93
- />
94
- );
95
- },
96
- );
97
-
98
- type SearchListContentProps = ThemedClassName<ComponentPropsWithRef<typeof CommandList>>;
99
-
100
- const SearchListContent = forwardRef<HTMLDivElement, SearchListContentProps>(
101
- ({ children, classNames, ...props }, forwardedRef) => {
102
- return (
103
- <CommandList {...props} className={mx(classNames)} ref={forwardedRef}>
104
- {children}
105
- </CommandList>
106
- );
107
- },
108
- );
109
-
110
- type SearchListEmptyProps = ThemedClassName<ComponentPropsWithRef<typeof CommandEmpty>>;
111
-
112
- const SearchListEmpty = forwardRef<HTMLDivElement, SearchListEmptyProps>(
113
- ({ children, classNames, ...props }, forwardedRef) => {
114
- return (
115
- <CommandEmpty {...props} className={mx(classNames)} ref={forwardedRef}>
116
- {children}
117
- </CommandEmpty>
118
- );
119
- },
120
- );
121
-
122
- type SearchListItemProps = ThemedClassName<ComponentPropsWithRef<typeof CommandItem>>;
123
-
124
- const SearchListItem = forwardRef<HTMLDivElement, SearchListItemProps>(
125
- ({ children, classNames, onSelect, ...props }, forwardedRef) => {
126
- const { onValueChange, onOpenChange } = useComboboxContext(SEARCHLIST_ITEM_NAME);
127
- const handleSelect = useCallback(
128
- (nextValue: string) => {
129
- onValueChange?.(nextValue);
130
- onOpenChange?.(false);
131
- onSelect?.(nextValue);
132
- },
133
- [onValueChange, onOpenChange, onSelect],
134
- );
135
- return (
136
- <CommandItem
137
- {...props}
138
- onSelect={handleSelect}
139
- className={mx('p-1 rounded select-none cursor-pointer data-[selected]:bg-hoverOverlay', classNames)}
140
- ref={forwardedRef}
141
- >
142
- {children}
143
- </CommandItem>
144
- );
145
- },
146
- );
147
-
148
- SearchListItem.displayName = SEARCHLIST_ITEM_NAME;
149
-
150
- const ComboboxRoot = ({
151
- modalId: propsModalId,
152
- open: propsOpen,
153
- defaultOpen,
154
- onOpenChange: propsOnOpenChange,
155
- value: propsValue,
156
- defaultValue,
157
- onValueChange: propsOnValueChange,
158
- placeholder,
159
- children,
160
- }: ComboboxRootProps) => {
161
- const modalId = useId(COMBOBOX_NAME, propsModalId);
162
- const [open = false, onOpenChange] = useControllableState({
163
- prop: propsOpen,
164
- onChange: propsOnOpenChange,
165
- defaultProp: defaultOpen,
166
- });
167
- const [value = '', onValueChange] = useControllableState({
168
- prop: propsValue,
169
- onChange: propsOnValueChange,
170
- defaultProp: defaultValue,
171
- });
172
- return (
173
- <ComboboxProvider
174
- isCombobox
175
- modalId={modalId}
176
- open={open}
177
- onOpenChange={onOpenChange}
178
- value={value}
179
- onValueChange={onValueChange}
180
- placeholder={placeholder}
181
- >
182
- {children}
183
- </ComboboxProvider>
184
- );
185
- };
186
-
187
- ComboboxRoot.displayName = COMBOBOX_NAME;
188
-
189
- type ComboboxTriggerProps = ButtonProps;
190
-
191
- const ComboboxTrigger = forwardRef<HTMLButtonElement, ComboboxTriggerProps>(
192
- ({ children, onClick, ...props }, forwardedRef) => {
193
- const { modalId, open, onOpenChange, placeholder, value } = useComboboxContext(COMBOBOX_TRIGGER_NAME);
194
- const handleClick = useCallback(
195
- (event: Parameters<Exclude<ButtonProps['onClick'], undefined>>[0]) => {
196
- onClick?.(event);
197
- onOpenChange?.(true);
198
- },
199
- [onClick, onOpenChange],
200
- );
201
- return (
202
- <Button
203
- {...props}
204
- role='combobox'
205
- aria-expanded={open}
206
- aria-controls={modalId}
207
- aria-haspopup='dialog'
208
- onClick={handleClick}
209
- ref={forwardedRef}
210
- >
211
- {children ?? (
212
- <>
213
- <span
214
- className={mx('font-normal text-start flex-1 min-is-0 truncate mie-2', !value && staticPlaceholderText)}
215
- >
216
- {value || placeholder}
217
- </span>
218
- <Icon icon='ph--caret-down--bold' size={3} />
219
- </>
220
- )}
221
- </Button>
222
- );
223
- },
224
- );
225
-
226
- ComboboxTrigger.displayName = COMBOBOX_TRIGGER_NAME;
227
-
228
- export const SearchList = {
229
- Root: SearchListRoot,
230
- Input: SearchListInput,
231
- Content: SearchListContent,
232
- Empty: SearchListEmpty,
233
- Item: SearchListItem,
234
- };
235
-
236
- export const Combobox = {
237
- Root: ComboboxRoot,
238
- Trigger: ComboboxTrigger,
239
- useComboboxContext,
240
- };
241
-
242
- export type {
243
- SearchListRootProps,
244
- SearchListInputProps,
245
- SearchListContentProps,
246
- SearchListEmptyProps,
247
- SearchListItemProps,
248
- ComboboxRootProps,
249
- ComboboxTriggerProps,
250
- };