@astryxdesign/cli 0.1.4-canary.f5fcc51 → 0.1.4-canary.f767ee2
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/CHANGELOG.md +2 -1
- package/package.json +12 -7
- package/src/api/doctor.mjs +13 -2
- package/src/codemods/__tests__/runner.test.mjs +38 -0
- package/src/codemods/runner.mjs +2 -0
- package/src/commands/doctor.test.mjs +34 -0
- package/templates/blocks/components/CodeBlock/CodeBlockTerminal.doc.mjs +1 -1
- package/templates/blocks/components/CommandPaletteGroup/CommandPaletteGroupShowcase.tsx +27 -48
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputBasic.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputBasic.tsx +39 -0
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputShowcase.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteInput/CommandPaletteInputShowcase.tsx +39 -0
- package/templates/blocks/components/CommandPaletteItem/CommandPaletteItemShowcase.tsx +31 -54
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListBasic.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListBasic.tsx +27 -0
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListShowcase.doc.mjs +15 -0
- package/templates/blocks/components/CommandPaletteList/CommandPaletteListShowcase.tsx +38 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemBasic.doc.mjs +14 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemBasic.tsx +44 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemShowcase.doc.mjs +15 -0
- package/templates/blocks/components/ContextMenuItem/ContextMenuItemShowcase.tsx +107 -0
- package/templates/pages/table-page-chart/page.tsx +3 -13
- package/templates/pages/table-page-shoe-store-heatmap/page.tsx +4 -18
package/CHANGELOG.md
CHANGED
|
@@ -36,7 +36,7 @@ Thanks to everyone who contributed to this release:
|
|
|
36
36
|
- Strict config + integration v1 schema (integrations, issuesUrl, hooks.postCodemod) and new @astryxdesign/cli/integration export.
|
|
37
37
|
- File-based codemod API (createCodemod/createConfigCodemod) with the @astryxdesign/cli/codemod export and integration codemod discovery in upgrade.
|
|
38
38
|
- component, template, and upgrade now print a one-line non-blocking warning when a configured integration has validation issues, pointing to validate-integration.
|
|
39
|
-
- Add a Kanban Board page template: color-coded status columns, draggable task cards with priority tags, and board toolbar.
|
|
39
|
+
- Add a Kanban Board page template: color-coded status columns, draggable task cards with priority tags, and board toolbar. Based on a design by @cg-hub18.
|
|
40
40
|
- Add frame-first layout guidance: new `astryx docs layout` topic (shell choice, region budgets, app archetypes, cards-vs-rows policy, responsive contracts), layout rules in the generated agent cheat sheet, and layout anti-patterns in `docs principles`.
|
|
41
41
|
- Add a v0.1.3 config codemod that migrates astryx.config layout.components to experimental.xle.components.
|
|
42
42
|
- Add v0.1.0 codemods for migrating `declare module "@xds/core/..."` type augmentations and `.xds-*` / `[data-xds-theme]` / `@layer xds-theme` CSS surfaces to their `@astryxdesign`/`astryx-*` equivalents.
|
|
@@ -80,6 +80,7 @@ Thanks to everyone who contributed to this release:
|
|
|
80
80
|
Thanks to everyone who contributed to this release:
|
|
81
81
|
|
|
82
82
|
- @AKnassa
|
|
83
|
+
- @cg-hub18
|
|
83
84
|
- @ejhammond
|
|
84
85
|
- @ernestt
|
|
85
86
|
- @harshavardhan194
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astryxdesign/cli",
|
|
3
|
-
"version": "0.1.4-canary.
|
|
3
|
+
"version": "0.1.4-canary.f767ee2",
|
|
4
4
|
"displayName": "CLI",
|
|
5
5
|
"description": "Scaffold projects, browse templates, generate themes, and get agent-ready docs from the command line.",
|
|
6
6
|
"author": "Meta Open Source",
|
|
@@ -75,12 +75,16 @@
|
|
|
75
75
|
"zod": "^4.4.3"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
|
-
"@astryxdesign/
|
|
79
|
-
"@astryxdesign/
|
|
80
|
-
"@astryxdesign/
|
|
78
|
+
"@astryxdesign/charts": "0.1.4-canary.f767ee2",
|
|
79
|
+
"@astryxdesign/core": "0.1.4-canary.f767ee2",
|
|
80
|
+
"@astryxdesign/lab": "0.1.4-canary.f767ee2",
|
|
81
|
+
"@astryxdesign/theme-neutral": "0.1.4-canary.f767ee2",
|
|
81
82
|
"gpt-tokenizer": "^3.4.0"
|
|
82
83
|
},
|
|
83
84
|
"peerDependenciesMeta": {
|
|
85
|
+
"@astryxdesign/charts": {
|
|
86
|
+
"optional": true
|
|
87
|
+
},
|
|
84
88
|
"@astryxdesign/core": {
|
|
85
89
|
"optional": true
|
|
86
90
|
},
|
|
@@ -92,9 +96,10 @@
|
|
|
92
96
|
}
|
|
93
97
|
},
|
|
94
98
|
"devDependencies": {
|
|
95
|
-
"@astryxdesign/
|
|
96
|
-
"@astryxdesign/
|
|
97
|
-
"@astryxdesign/
|
|
99
|
+
"@astryxdesign/charts": "0.1.4-canary.f767ee2",
|
|
100
|
+
"@astryxdesign/core": "0.1.4-canary.f767ee2",
|
|
101
|
+
"@astryxdesign/lab": "0.1.4-canary.f767ee2",
|
|
102
|
+
"@astryxdesign/theme-neutral": "0.1.4-canary.f767ee2",
|
|
98
103
|
"gpt-tokenizer": "^3.4.0"
|
|
99
104
|
},
|
|
100
105
|
"scripts": {
|
package/src/api/doctor.mjs
CHANGED
|
@@ -115,10 +115,21 @@ function findThemePackages(cwd) {
|
|
|
115
115
|
return found;
|
|
116
116
|
}
|
|
117
117
|
for (const entry of entries) {
|
|
118
|
-
if (!entry.isDirectory()) continue;
|
|
119
118
|
if (!entry.name.startsWith('theme-')) continue;
|
|
119
|
+
const dir = path.join(scopeDir, entry.name);
|
|
120
|
+
// pnpm installs packages as symlinks into node_modules/.pnpm, and a
|
|
121
|
+
// symlink dirent reports isDirectory() as false — stat the target instead.
|
|
122
|
+
let isDir = entry.isDirectory();
|
|
123
|
+
if (!isDir && entry.isSymbolicLink()) {
|
|
124
|
+
try {
|
|
125
|
+
isDir = fs.statSync(dir).isDirectory();
|
|
126
|
+
} catch {
|
|
127
|
+
isDir = false;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
if (!isDir) continue;
|
|
120
131
|
const name = `@astryxdesign/${entry.name}`;
|
|
121
|
-
found.push({name, version: pkgVersion(
|
|
132
|
+
found.push({name, version: pkgVersion(dir)});
|
|
122
133
|
}
|
|
123
134
|
return found;
|
|
124
135
|
}
|
|
@@ -99,5 +99,43 @@ describe('runCodemods — unified config codemod path', () => {
|
|
|
99
99
|
expect(fs.readFileSync(path.join(srcDir, 'a.ts'), 'utf-8')).toContain(
|
|
100
100
|
'const bar = 1',
|
|
101
101
|
);
|
|
102
|
+
// writtenFiles must be returned (consumed by upgrade.mjs to run the
|
|
103
|
+
// post-codemod formatting/lint hooks). Regression guard: it was previously
|
|
104
|
+
// built internally but omitted from the return object, so hooks received an
|
|
105
|
+
// empty file list and silently skipped, leaving codemod output unformatted.
|
|
106
|
+
expect(result.writtenFiles).toEqual([path.join(srcDir, 'a.ts')]);
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
it('returns writtenFiles for every changed file (post-codemod hook input)', async () => {
|
|
110
|
+
const srcDir = path.join(tmpDir, 'src');
|
|
111
|
+
fs.mkdirSync(srcDir);
|
|
112
|
+
fs.writeFileSync(path.join(srcDir, 'a.ts'), 'const foo = 1;\n');
|
|
113
|
+
fs.writeFileSync(path.join(srcDir, 'b.ts'), 'const foo = 2;\n');
|
|
114
|
+
fs.writeFileSync(path.join(srcDir, 'c.ts'), 'const untouched = 3;\n');
|
|
115
|
+
|
|
116
|
+
const versionManifests = [
|
|
117
|
+
{
|
|
118
|
+
version: '0.1.3',
|
|
119
|
+
transforms: [
|
|
120
|
+
{
|
|
121
|
+
name: 'synthetic-code-codemod',
|
|
122
|
+
meta: {title: 'Synthetic code codemod'},
|
|
123
|
+
transform: file => file.source.replace(/foo/g, 'bar'),
|
|
124
|
+
},
|
|
125
|
+
],
|
|
126
|
+
},
|
|
127
|
+
];
|
|
128
|
+
|
|
129
|
+
const result = await runCodemods(versionManifests, {
|
|
130
|
+
apply: true,
|
|
131
|
+
path: './src',
|
|
132
|
+
silent: true,
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
expect(result.totalFilesChanged).toBe(2);
|
|
136
|
+
// Only the two files that actually changed are reported (not c.ts).
|
|
137
|
+
expect([...result.writtenFiles].sort()).toEqual(
|
|
138
|
+
[path.join(srcDir, 'a.ts'), path.join(srcDir, 'b.ts')].sort(),
|
|
139
|
+
);
|
|
102
140
|
});
|
|
103
141
|
});
|
package/src/codemods/runner.mjs
CHANGED
|
@@ -178,6 +178,7 @@ function toUnifiedEntry(transformEntry, version) {
|
|
|
178
178
|
* @param {string|undefined} options.codemod - Run only this specific transform
|
|
179
179
|
* @param {Set<string>} [options.skipCodemods] - Transform names to exclude
|
|
180
180
|
* @param {boolean} [options.silent] - Suppress all human-facing output (for --json)
|
|
181
|
+
* @returns {{totalFilesChanged: number, totalTransformsApplied: number, totalValidationBlocked: number, writtenFiles: string[], errors: Array, skippedOptional: Array}}
|
|
181
182
|
*/
|
|
182
183
|
export async function runCodemods(
|
|
183
184
|
versionManifests,
|
|
@@ -405,6 +406,7 @@ export async function runCodemods(
|
|
|
405
406
|
totalFilesChanged,
|
|
406
407
|
totalTransformsApplied,
|
|
407
408
|
totalValidationBlocked,
|
|
409
|
+
writtenFiles,
|
|
408
410
|
errors,
|
|
409
411
|
skippedOptional,
|
|
410
412
|
};
|
|
@@ -63,6 +63,33 @@ function installPkg(name, version = '1.0.0') {
|
|
|
63
63
|
return dir;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
/**
|
|
67
|
+
* Mirror pnpm's layout: the real package lives under node_modules/.pnpm and
|
|
68
|
+
* the entry in the scope directory is a symlink to it.
|
|
69
|
+
*/
|
|
70
|
+
function installPkgPnpmStyle(name, version = '1.0.0') {
|
|
71
|
+
const realDir = path.join(
|
|
72
|
+
tmpDir,
|
|
73
|
+
'node_modules',
|
|
74
|
+
'.pnpm',
|
|
75
|
+
`${name.replace('/', '+')}@${version}`,
|
|
76
|
+
'node_modules',
|
|
77
|
+
...name.split('/'),
|
|
78
|
+
);
|
|
79
|
+
fs.mkdirSync(realDir, {recursive: true});
|
|
80
|
+
fs.writeFileSync(
|
|
81
|
+
path.join(realDir, 'package.json'),
|
|
82
|
+
JSON.stringify({name, version, main: 'index.js'}),
|
|
83
|
+
);
|
|
84
|
+
fs.writeFileSync(path.join(realDir, 'index.js'), 'module.exports = {};');
|
|
85
|
+
const linkPath = path.join(tmpDir, 'node_modules', ...name.split('/'));
|
|
86
|
+
fs.mkdirSync(path.dirname(linkPath), {recursive: true});
|
|
87
|
+
// 'junction' keeps this working on Windows without elevated permissions;
|
|
88
|
+
// it is ignored on posix.
|
|
89
|
+
fs.symlinkSync(realDir, linkPath, 'junction');
|
|
90
|
+
return linkPath;
|
|
91
|
+
}
|
|
92
|
+
|
|
66
93
|
function find(checks, id) {
|
|
67
94
|
return checks.find(c => c.id === id);
|
|
68
95
|
}
|
|
@@ -119,6 +146,13 @@ describe('doctor — individual checks', () => {
|
|
|
119
146
|
expect(res.status).toBe('pass');
|
|
120
147
|
});
|
|
121
148
|
|
|
149
|
+
it('themes: detects pnpm-style symlinked theme packages (#3530)', () => {
|
|
150
|
+
installPkgPnpmStyle('@astryxdesign/theme-neutral', '0.1.2');
|
|
151
|
+
const res = checkThemes({cwd: tmpDir, configTheme: 'default'});
|
|
152
|
+
expect(res.status).toBe('pass');
|
|
153
|
+
expect(res.message).toContain('@astryxdesign/theme-neutral');
|
|
154
|
+
});
|
|
155
|
+
|
|
122
156
|
it('config: INFO when no astryx.config.mjs', async () => {
|
|
123
157
|
const res = await checkConfig({cwd: tmpDir, configPath: null});
|
|
124
158
|
expect(res.status).toBe('info');
|
|
@@ -7,7 +7,7 @@ export const doc = {
|
|
|
7
7
|
name: 'Code — Terminal',
|
|
8
8
|
displayName: 'Code — Terminal',
|
|
9
9
|
description:
|
|
10
|
-
'A dark terminal-style command block: a bash CodeBlock wrapped in SyntaxTheme with the GitHub Dark preset, copy button on, and no line numbers. Use for shell sessions or CLI output that should read as a terminal even on light pages
|
|
10
|
+
'A dark terminal-style command block: a bash CodeBlock wrapped in SyntaxTheme with the GitHub Dark preset, copy button on, and no line numbers. Use for shell sessions or CLI output that should read as a terminal even on light pages. Reach for a dark syntax preset instead of hand-rolling a dark box with custom CSS.',
|
|
11
11
|
isReady: true,
|
|
12
12
|
aspectRatio: 16 / 9,
|
|
13
13
|
componentsUsed: ['CodeBlock', 'SyntaxTheme'],
|
|
@@ -3,66 +3,45 @@
|
|
|
3
3
|
'use client';
|
|
4
4
|
|
|
5
5
|
import {useMemo} from 'react';
|
|
6
|
-
import {
|
|
7
|
-
CommandPalette,
|
|
8
|
-
CommandPaletteList,
|
|
9
|
-
CommandPaletteGroup,
|
|
10
|
-
CommandPaletteItem,
|
|
11
|
-
} from '@astryxdesign/core/CommandPalette';
|
|
6
|
+
import {CommandPalette} from '@astryxdesign/core/CommandPalette';
|
|
12
7
|
import {createStaticSource} from '@astryxdesign/core/Typeahead';
|
|
13
|
-
import {Stack} from '@astryxdesign/core/Layout';
|
|
14
|
-
import {Text} from '@astryxdesign/core/Text';
|
|
15
8
|
|
|
16
9
|
export default function CommandPaletteGroupShowcase() {
|
|
17
10
|
const source = useMemo(
|
|
18
11
|
() =>
|
|
19
12
|
createStaticSource([
|
|
20
|
-
{
|
|
13
|
+
{
|
|
14
|
+
id: 'index',
|
|
15
|
+
label: 'index.tsx',
|
|
16
|
+
auxiliaryData: {group: 'Recent Files'},
|
|
17
|
+
},
|
|
21
18
|
{id: 'app', label: 'App.tsx', auxiliaryData: {group: 'Recent Files'}},
|
|
22
|
-
{
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
{
|
|
20
|
+
id: 'settings',
|
|
21
|
+
label: 'Open Settings',
|
|
22
|
+
auxiliaryData: {group: 'Commands'},
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 'terminal',
|
|
26
|
+
label: 'Toggle Terminal',
|
|
27
|
+
auxiliaryData: {group: 'Commands'},
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
id: 'theme',
|
|
31
|
+
label: 'Color Theme',
|
|
32
|
+
auxiliaryData: {group: 'Preferences'},
|
|
33
|
+
},
|
|
25
34
|
{id: 'font', label: 'Font Size', auxiliaryData: {group: 'Preferences'}},
|
|
26
35
|
]),
|
|
27
36
|
[],
|
|
28
37
|
);
|
|
29
38
|
|
|
30
39
|
return (
|
|
31
|
-
<
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
isOpen
|
|
38
|
-
isInline
|
|
39
|
-
onOpenChange={() => {}}
|
|
40
|
-
searchSource={source}
|
|
41
|
-
/>
|
|
42
|
-
</Stack>
|
|
43
|
-
<Stack direction="vertical" gap={1}>
|
|
44
|
-
<Text type="supporting" color="secondary">
|
|
45
|
-
Composed form (CommandPaletteGroup + CommandPaletteItem)
|
|
46
|
-
</Text>
|
|
47
|
-
<CommandPaletteList>
|
|
48
|
-
<CommandPaletteGroup heading="Navigation">
|
|
49
|
-
<CommandPaletteItem value="home" onSelect={() => {}}>
|
|
50
|
-
Home
|
|
51
|
-
</CommandPaletteItem>
|
|
52
|
-
<CommandPaletteItem value="dashboard" onSelect={() => {}}>
|
|
53
|
-
Dashboard
|
|
54
|
-
</CommandPaletteItem>
|
|
55
|
-
</CommandPaletteGroup>
|
|
56
|
-
<CommandPaletteGroup heading="Actions">
|
|
57
|
-
<CommandPaletteItem value="new-file" onSelect={() => {}}>
|
|
58
|
-
New File
|
|
59
|
-
</CommandPaletteItem>
|
|
60
|
-
<CommandPaletteItem value="save" onSelect={() => {}}>
|
|
61
|
-
Save All
|
|
62
|
-
</CommandPaletteItem>
|
|
63
|
-
</CommandPaletteGroup>
|
|
64
|
-
</CommandPaletteList>
|
|
65
|
-
</Stack>
|
|
66
|
-
</Stack>
|
|
40
|
+
<CommandPalette
|
|
41
|
+
isOpen
|
|
42
|
+
isInline
|
|
43
|
+
onOpenChange={() => {}}
|
|
44
|
+
searchSource={source}
|
|
45
|
+
/>
|
|
67
46
|
);
|
|
68
47
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'CommandPaletteInput',
|
|
7
|
+
name: 'CommandPaletteInput — With End Content',
|
|
8
|
+
displayName: 'CommandPaletteInput — With End Content',
|
|
9
|
+
description:
|
|
10
|
+
'Custom placeholder and a keyboard shortcut badge in the trailing slot via endContent.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
isShowcase: false,
|
|
13
|
+
aspectRatio: 4 / 3,
|
|
14
|
+
componentsUsed: ['CommandPalette', 'CommandPaletteInput', 'Kbd'],
|
|
15
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {useMemo} from 'react';
|
|
6
|
+
import {
|
|
7
|
+
CommandPalette,
|
|
8
|
+
CommandPaletteInput,
|
|
9
|
+
} from '@astryxdesign/core/CommandPalette';
|
|
10
|
+
import {Kbd} from '@astryxdesign/core/Kbd';
|
|
11
|
+
import {createStaticSource} from '@astryxdesign/core/Typeahead';
|
|
12
|
+
|
|
13
|
+
export default function CommandPaletteInputBasic() {
|
|
14
|
+
const source = useMemo(
|
|
15
|
+
() =>
|
|
16
|
+
createStaticSource([
|
|
17
|
+
{id: 'home', label: 'Home'},
|
|
18
|
+
{id: 'settings', label: 'Settings'},
|
|
19
|
+
{id: 'profile', label: 'Profile'},
|
|
20
|
+
{id: 'help', label: 'Help'},
|
|
21
|
+
]),
|
|
22
|
+
[],
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<CommandPalette
|
|
27
|
+
isOpen
|
|
28
|
+
isInline
|
|
29
|
+
onOpenChange={() => {}}
|
|
30
|
+
searchSource={source}
|
|
31
|
+
input={
|
|
32
|
+
<CommandPaletteInput
|
|
33
|
+
placeholder="Search commands, files, or actions..."
|
|
34
|
+
endContent={<Kbd keys="mod+k" />}
|
|
35
|
+
/>
|
|
36
|
+
}
|
|
37
|
+
/>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'CommandPaletteInput',
|
|
7
|
+
name: 'CommandPaletteInput',
|
|
8
|
+
displayName: 'Command Palette Input',
|
|
9
|
+
description:
|
|
10
|
+
'Command palette search input with a custom placeholder and a keyboard shortcut hint in the endContent slot.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
isShowcase: true,
|
|
13
|
+
aspectRatio: 4 / 3,
|
|
14
|
+
componentsUsed: ['CommandPalette', 'CommandPaletteInput', 'Kbd'],
|
|
15
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {useMemo} from 'react';
|
|
6
|
+
import {
|
|
7
|
+
CommandPalette,
|
|
8
|
+
CommandPaletteInput,
|
|
9
|
+
} from '@astryxdesign/core/CommandPalette';
|
|
10
|
+
import {Kbd} from '@astryxdesign/core/Kbd';
|
|
11
|
+
import {createStaticSource} from '@astryxdesign/core/Typeahead';
|
|
12
|
+
|
|
13
|
+
export default function CommandPaletteInputShowcase() {
|
|
14
|
+
const source = useMemo(
|
|
15
|
+
() =>
|
|
16
|
+
createStaticSource([
|
|
17
|
+
{id: 'home', label: 'Home'},
|
|
18
|
+
{id: 'settings', label: 'Settings'},
|
|
19
|
+
{id: 'profile', label: 'Profile'},
|
|
20
|
+
{id: 'help', label: 'Help'},
|
|
21
|
+
]),
|
|
22
|
+
[],
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<CommandPalette
|
|
27
|
+
isOpen
|
|
28
|
+
isInline
|
|
29
|
+
onOpenChange={() => {}}
|
|
30
|
+
searchSource={source}
|
|
31
|
+
input={
|
|
32
|
+
<CommandPaletteInput
|
|
33
|
+
placeholder="Search commands, files, or actions..."
|
|
34
|
+
endContent={<Kbd keys="mod+k" />}
|
|
35
|
+
/>
|
|
36
|
+
}
|
|
37
|
+
/>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
@@ -3,16 +3,10 @@
|
|
|
3
3
|
'use client';
|
|
4
4
|
|
|
5
5
|
import {useMemo, type CSSProperties} from 'react';
|
|
6
|
-
import {
|
|
7
|
-
CommandPalette,
|
|
8
|
-
CommandPaletteList,
|
|
9
|
-
CommandPaletteItem,
|
|
10
|
-
} from '@astryxdesign/core/CommandPalette';
|
|
6
|
+
import {CommandPalette} from '@astryxdesign/core/CommandPalette';
|
|
11
7
|
import {Text} from '@astryxdesign/core/Text';
|
|
12
8
|
import {Kbd} from '@astryxdesign/core/Kbd';
|
|
13
|
-
import {Icon} from '@astryxdesign/core/Icon';
|
|
14
9
|
import {createStaticSource} from '@astryxdesign/core/Typeahead';
|
|
15
|
-
import {Stack} from '@astryxdesign/core/Layout';
|
|
16
10
|
import type {SearchableItem} from '@astryxdesign/core/Typeahead';
|
|
17
11
|
|
|
18
12
|
const itemLabel: CSSProperties = {
|
|
@@ -23,9 +17,21 @@ type CommandItem = SearchableItem<{shortcut?: string}>;
|
|
|
23
17
|
|
|
24
18
|
const commands: CommandItem[] = [
|
|
25
19
|
{id: 'save', label: 'Save File', auxiliaryData: {shortcut: 'mod+s'}},
|
|
26
|
-
{
|
|
27
|
-
|
|
28
|
-
|
|
20
|
+
{
|
|
21
|
+
id: 'find',
|
|
22
|
+
label: 'Find in Files',
|
|
23
|
+
auxiliaryData: {shortcut: 'mod+shift+f'},
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: 'palette',
|
|
27
|
+
label: 'Command Palette',
|
|
28
|
+
auxiliaryData: {shortcut: 'mod+shift+p'},
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: 'terminal',
|
|
32
|
+
label: 'Toggle Terminal',
|
|
33
|
+
auxiliaryData: {shortcut: 'ctrl+`'},
|
|
34
|
+
},
|
|
29
35
|
{id: 'sidebar', label: 'Toggle Sidebar', auxiliaryData: {shortcut: 'mod+b'}},
|
|
30
36
|
];
|
|
31
37
|
|
|
@@ -33,50 +39,21 @@ export default function CommandPaletteItemShowcase() {
|
|
|
33
39
|
const source = useMemo(() => createStaticSource(commands), []);
|
|
34
40
|
|
|
35
41
|
return (
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<Text type="body" style={itemLabel}>
|
|
49
|
-
{item.label}
|
|
50
|
-
</Text>
|
|
51
|
-
{item.auxiliaryData?.shortcut && (
|
|
52
|
-
<Kbd keys={item.auxiliaryData.shortcut} />
|
|
53
|
-
)}
|
|
54
|
-
</>
|
|
42
|
+
<CommandPalette
|
|
43
|
+
isOpen
|
|
44
|
+
isInline
|
|
45
|
+
onOpenChange={() => {}}
|
|
46
|
+
searchSource={source}
|
|
47
|
+
renderItem={(item: CommandItem) => (
|
|
48
|
+
<>
|
|
49
|
+
<Text type="body" style={itemLabel}>
|
|
50
|
+
{item.label}
|
|
51
|
+
</Text>
|
|
52
|
+
{item.auxiliaryData?.shortcut && (
|
|
53
|
+
<Kbd keys={item.auxiliaryData.shortcut} />
|
|
55
54
|
)}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
<Text type="supporting" color="secondary">
|
|
60
|
-
Composed items with icons and states
|
|
61
|
-
</Text>
|
|
62
|
-
<CommandPaletteList>
|
|
63
|
-
<CommandPaletteItem value="home" onSelect={() => {}}>
|
|
64
|
-
<Icon icon="externalLink" size="sm" />
|
|
65
|
-
<Text type="body" style={itemLabel}>Home</Text>
|
|
66
|
-
</CommandPaletteItem>
|
|
67
|
-
<CommandPaletteItem value="search" isHighlighted onSelect={() => {}}>
|
|
68
|
-
<Icon icon="search" size="sm" />
|
|
69
|
-
<Text type="body" style={itemLabel}>Search (highlighted)</Text>
|
|
70
|
-
</CommandPaletteItem>
|
|
71
|
-
<CommandPaletteItem value="selected" isSelected onSelect={() => {}}>
|
|
72
|
-
<Icon icon="check" size="sm" />
|
|
73
|
-
<Text type="body" style={itemLabel}>Selected item</Text>
|
|
74
|
-
</CommandPaletteItem>
|
|
75
|
-
<CommandPaletteItem value="disabled" isDisabled>
|
|
76
|
-
<Text type="body" style={itemLabel}>Disabled item</Text>
|
|
77
|
-
</CommandPaletteItem>
|
|
78
|
-
</CommandPaletteList>
|
|
79
|
-
</Stack>
|
|
80
|
-
</Stack>
|
|
55
|
+
</>
|
|
56
|
+
)}
|
|
57
|
+
/>
|
|
81
58
|
);
|
|
82
59
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'CommandPaletteList',
|
|
7
|
+
name: 'CommandPaletteList — Item States',
|
|
8
|
+
displayName: 'CommandPaletteList — Item States',
|
|
9
|
+
description:
|
|
10
|
+
'Flat list showing the highlighted, selected, and disabled item states. Use CommandPaletteGroup to add section headings.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
isShowcase: false,
|
|
13
|
+
aspectRatio: 4 / 3,
|
|
14
|
+
componentsUsed: ['CommandPaletteList', 'CommandPaletteItem'],
|
|
15
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
CommandPaletteList,
|
|
7
|
+
CommandPaletteItem,
|
|
8
|
+
} from '@astryxdesign/core/CommandPalette';
|
|
9
|
+
|
|
10
|
+
export default function CommandPaletteListBasic() {
|
|
11
|
+
return (
|
|
12
|
+
<CommandPaletteList>
|
|
13
|
+
<CommandPaletteItem value="home" onSelect={() => {}}>
|
|
14
|
+
Go Home
|
|
15
|
+
</CommandPaletteItem>
|
|
16
|
+
<CommandPaletteItem value="settings" isHighlighted onSelect={() => {}}>
|
|
17
|
+
Open Settings
|
|
18
|
+
</CommandPaletteItem>
|
|
19
|
+
<CommandPaletteItem value="profile" isSelected onSelect={() => {}}>
|
|
20
|
+
View Profile
|
|
21
|
+
</CommandPaletteItem>
|
|
22
|
+
<CommandPaletteItem value="help" isDisabled onSelect={() => {}}>
|
|
23
|
+
Help (unavailable)
|
|
24
|
+
</CommandPaletteItem>
|
|
25
|
+
</CommandPaletteList>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'CommandPaletteList',
|
|
7
|
+
name: 'CommandPaletteList',
|
|
8
|
+
displayName: 'Command Palette List',
|
|
9
|
+
description:
|
|
10
|
+
'Scrollable command palette list with grouped items, including a highlighted item, composed without a full CommandPalette.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
isShowcase: true,
|
|
13
|
+
aspectRatio: 4 / 3,
|
|
14
|
+
componentsUsed: ['CommandPaletteList', 'CommandPaletteGroup', 'CommandPaletteItem'],
|
|
15
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
CommandPaletteList,
|
|
7
|
+
CommandPaletteGroup,
|
|
8
|
+
CommandPaletteItem,
|
|
9
|
+
} from '@astryxdesign/core/CommandPalette';
|
|
10
|
+
|
|
11
|
+
export default function CommandPaletteListShowcase() {
|
|
12
|
+
return (
|
|
13
|
+
<CommandPaletteList>
|
|
14
|
+
<CommandPaletteGroup heading="Navigation">
|
|
15
|
+
<CommandPaletteItem value="home" onSelect={() => {}}>
|
|
16
|
+
Go Home
|
|
17
|
+
</CommandPaletteItem>
|
|
18
|
+
<CommandPaletteItem value="settings" onSelect={() => {}}>
|
|
19
|
+
Open Settings
|
|
20
|
+
</CommandPaletteItem>
|
|
21
|
+
<CommandPaletteItem value="profile" onSelect={() => {}}>
|
|
22
|
+
View Profile
|
|
23
|
+
</CommandPaletteItem>
|
|
24
|
+
</CommandPaletteGroup>
|
|
25
|
+
<CommandPaletteGroup heading="Actions">
|
|
26
|
+
<CommandPaletteItem value="new-file" onSelect={() => {}}>
|
|
27
|
+
New File
|
|
28
|
+
</CommandPaletteItem>
|
|
29
|
+
<CommandPaletteItem value="search" isHighlighted onSelect={() => {}}>
|
|
30
|
+
Search Files
|
|
31
|
+
</CommandPaletteItem>
|
|
32
|
+
<CommandPaletteItem value="save" onSelect={() => {}}>
|
|
33
|
+
Save All
|
|
34
|
+
</CommandPaletteItem>
|
|
35
|
+
</CommandPaletteGroup>
|
|
36
|
+
</CommandPaletteList>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'ContextMenuItem',
|
|
7
|
+
name: 'ContextMenuItem — Basic',
|
|
8
|
+
displayName: 'ContextMenuItem — Basic',
|
|
9
|
+
description:
|
|
10
|
+
'Context menu items with labels and secondary descriptions. Use ContextMenuItem to render custom menu entries with consistent styling.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
aspectRatio: 16 / 9,
|
|
13
|
+
componentsUsed: ['ContextMenu', 'ContextMenuItem'],
|
|
14
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {ContextMenu, ContextMenuItem} from '@astryxdesign/core/ContextMenu';
|
|
6
|
+
|
|
7
|
+
export default function ContextMenuItemBasic() {
|
|
8
|
+
return (
|
|
9
|
+
<ContextMenu
|
|
10
|
+
menuContent={
|
|
11
|
+
<>
|
|
12
|
+
<ContextMenuItem
|
|
13
|
+
label="Edit"
|
|
14
|
+
description="Modify this item"
|
|
15
|
+
onClick={() => {}}
|
|
16
|
+
/>
|
|
17
|
+
<ContextMenuItem
|
|
18
|
+
label="Duplicate"
|
|
19
|
+
description="Create a copy"
|
|
20
|
+
onClick={() => {}}
|
|
21
|
+
/>
|
|
22
|
+
<ContextMenuItem
|
|
23
|
+
label="Delete"
|
|
24
|
+
description="This action cannot be undone"
|
|
25
|
+
onClick={() => {}}
|
|
26
|
+
/>
|
|
27
|
+
</>
|
|
28
|
+
}>
|
|
29
|
+
<div
|
|
30
|
+
style={{
|
|
31
|
+
padding: '48px',
|
|
32
|
+
borderWidth: '2px',
|
|
33
|
+
borderStyle: 'dashed',
|
|
34
|
+
borderColor: 'var(--color-border)',
|
|
35
|
+
borderRadius: '8px',
|
|
36
|
+
textAlign: 'center',
|
|
37
|
+
color: 'var(--color-text-secondary)',
|
|
38
|
+
userSelect: 'none',
|
|
39
|
+
}}>
|
|
40
|
+
Right-click this area
|
|
41
|
+
</div>
|
|
42
|
+
</ContextMenu>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
/** @type {import('../../../../../core/src/docs-types').TemplateDoc} */
|
|
4
|
+
export const doc = {
|
|
5
|
+
type: 'block',
|
|
6
|
+
exampleFor: 'ContextMenuItem',
|
|
7
|
+
name: 'ContextMenuItem',
|
|
8
|
+
displayName: 'Context Menu Item',
|
|
9
|
+
description:
|
|
10
|
+
'Context menu with custom-rendered items using ContextMenuItem for icons and descriptions.',
|
|
11
|
+
isReady: true,
|
|
12
|
+
isShowcase: true,
|
|
13
|
+
aspectRatio: 16 / 9,
|
|
14
|
+
componentsUsed: ['ContextMenu', 'ContextMenuItem'],
|
|
15
|
+
};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
|
|
3
|
+
'use client';
|
|
4
|
+
|
|
5
|
+
import {ContextMenu, ContextMenuItem} from '@astryxdesign/core/ContextMenu';
|
|
6
|
+
|
|
7
|
+
const PencilIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
8
|
+
<svg
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
stroke="currentColor"
|
|
12
|
+
strokeWidth={1.5}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
{...props}>
|
|
16
|
+
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" />
|
|
17
|
+
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" />
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
const CopyIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
22
|
+
<svg
|
|
23
|
+
viewBox="0 0 24 24"
|
|
24
|
+
fill="none"
|
|
25
|
+
stroke="currentColor"
|
|
26
|
+
strokeWidth={1.5}
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
{...props}>
|
|
30
|
+
<rect x="9" y="9" width="13" height="13" rx="2" />
|
|
31
|
+
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" />
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
const ShareIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
36
|
+
<svg
|
|
37
|
+
viewBox="0 0 24 24"
|
|
38
|
+
fill="none"
|
|
39
|
+
stroke="currentColor"
|
|
40
|
+
strokeWidth={1.5}
|
|
41
|
+
strokeLinecap="round"
|
|
42
|
+
strokeLinejoin="round"
|
|
43
|
+
{...props}>
|
|
44
|
+
<circle cx="18" cy="5" r="3" />
|
|
45
|
+
<circle cx="6" cy="12" r="3" />
|
|
46
|
+
<circle cx="18" cy="19" r="3" />
|
|
47
|
+
<line x1="8.59" y1="13.51" x2="15.42" y2="17.49" />
|
|
48
|
+
<line x1="15.41" y1="6.51" x2="8.59" y2="10.49" />
|
|
49
|
+
</svg>
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
const TrashIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
53
|
+
<svg
|
|
54
|
+
viewBox="0 0 24 24"
|
|
55
|
+
fill="none"
|
|
56
|
+
stroke="currentColor"
|
|
57
|
+
strokeWidth={1.5}
|
|
58
|
+
strokeLinecap="round"
|
|
59
|
+
strokeLinejoin="round"
|
|
60
|
+
{...props}>
|
|
61
|
+
<polyline points="3 6 5 6 21 6" />
|
|
62
|
+
<path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" />
|
|
63
|
+
</svg>
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
export default function ContextMenuItemShowcase() {
|
|
67
|
+
return (
|
|
68
|
+
<ContextMenu
|
|
69
|
+
menuContent={
|
|
70
|
+
<>
|
|
71
|
+
<ContextMenuItem
|
|
72
|
+
icon={PencilIcon}
|
|
73
|
+
label="Edit"
|
|
74
|
+
description="Modify this item"
|
|
75
|
+
onClick={() => {}}
|
|
76
|
+
/>
|
|
77
|
+
<ContextMenuItem
|
|
78
|
+
icon={CopyIcon}
|
|
79
|
+
label="Duplicate"
|
|
80
|
+
description="Create a copy"
|
|
81
|
+
onClick={() => {}}
|
|
82
|
+
/>
|
|
83
|
+
<ContextMenuItem icon={ShareIcon} label="Share" onClick={() => {}} />
|
|
84
|
+
<ContextMenuItem
|
|
85
|
+
icon={TrashIcon}
|
|
86
|
+
label="Delete"
|
|
87
|
+
description="This action cannot be undone"
|
|
88
|
+
onClick={() => {}}
|
|
89
|
+
/>
|
|
90
|
+
</>
|
|
91
|
+
}>
|
|
92
|
+
<div
|
|
93
|
+
style={{
|
|
94
|
+
padding: '48px',
|
|
95
|
+
borderWidth: '2px',
|
|
96
|
+
borderStyle: 'dashed',
|
|
97
|
+
borderColor: 'var(--color-border)',
|
|
98
|
+
borderRadius: '8px',
|
|
99
|
+
textAlign: 'center',
|
|
100
|
+
color: 'var(--color-text-secondary)',
|
|
101
|
+
userSelect: 'none',
|
|
102
|
+
}}>
|
|
103
|
+
Right-click this area
|
|
104
|
+
</div>
|
|
105
|
+
</ContextMenu>
|
|
106
|
+
);
|
|
107
|
+
}
|
|
@@ -19,13 +19,7 @@ import {Link} from '@astryxdesign/core/Link';
|
|
|
19
19
|
import {Thumbnail} from '@astryxdesign/core/Thumbnail';
|
|
20
20
|
import {Table, proportional, pixel} from '@astryxdesign/core/Table';
|
|
21
21
|
import type {TableColumn} from '@astryxdesign/core/Table';
|
|
22
|
-
import {
|
|
23
|
-
ChartV2 as Chart,
|
|
24
|
-
ChartGrid,
|
|
25
|
-
ChartAxis,
|
|
26
|
-
area,
|
|
27
|
-
line,
|
|
28
|
-
} from '@astryxdesign/lab';
|
|
22
|
+
import {Chart, ChartGrid, ChartAxis, area, line} from '@astryxdesign/charts';
|
|
29
23
|
import {
|
|
30
24
|
FunnelIcon,
|
|
31
25
|
ArrowDownTrayIcon,
|
|
@@ -481,17 +475,13 @@ const columns: TableColumn<OrderRow>[] = [
|
|
|
481
475
|
key: 'amount',
|
|
482
476
|
header: 'Amount',
|
|
483
477
|
width: pixel(90),
|
|
484
|
-
renderCell: (item: OrderRow) =>
|
|
485
|
-
<Text type="body">${item.amount}</Text>
|
|
486
|
-
),
|
|
478
|
+
renderCell: (item: OrderRow) => <Text type="body">${item.amount}</Text>,
|
|
487
479
|
},
|
|
488
480
|
{
|
|
489
481
|
key: 'customer',
|
|
490
482
|
header: 'Customer',
|
|
491
483
|
width: proportional(2),
|
|
492
|
-
renderCell: (item: OrderRow) =>
|
|
493
|
-
<Text type="body">{item.customer}</Text>
|
|
494
|
-
),
|
|
484
|
+
renderCell: (item: OrderRow) => <Text type="body">{item.customer}</Text>,
|
|
495
485
|
},
|
|
496
486
|
{
|
|
497
487
|
key: 'email',
|
|
@@ -19,13 +19,7 @@ import {Link} from '@astryxdesign/core/Link';
|
|
|
19
19
|
import {Thumbnail} from '@astryxdesign/core/Thumbnail';
|
|
20
20
|
import {Table, proportional, pixel} from '@astryxdesign/core/Table';
|
|
21
21
|
import type {TableColumn} from '@astryxdesign/core/Table';
|
|
22
|
-
import {
|
|
23
|
-
ChartV2 as Chart,
|
|
24
|
-
ChartGrid,
|
|
25
|
-
ChartAxis,
|
|
26
|
-
area,
|
|
27
|
-
line,
|
|
28
|
-
} from '@astryxdesign/lab';
|
|
22
|
+
import {Chart, ChartGrid, ChartAxis, area, line} from '@astryxdesign/charts';
|
|
29
23
|
import {
|
|
30
24
|
FunnelIcon,
|
|
31
25
|
ArrowDownTrayIcon,
|
|
@@ -35,11 +29,7 @@ import {
|
|
|
35
29
|
// ============= DATA =============
|
|
36
30
|
|
|
37
31
|
type ProductCategory =
|
|
38
|
-
| '
|
|
39
|
-
| 'Lifestyle'
|
|
40
|
-
| 'Basketball'
|
|
41
|
-
| 'Training'
|
|
42
|
-
| 'Skateboarding';
|
|
32
|
+
'Running' | 'Lifestyle' | 'Basketball' | 'Training' | 'Skateboarding';
|
|
43
33
|
|
|
44
34
|
function shoeSvg(bg: string, accent: string) {
|
|
45
35
|
const svg = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" rx="12" fill="${bg}"/><g transform="translate(22.5, 22.5) scale(2.29)" fill="none" stroke="${accent}" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="m15 10.42 4.8-5.07"/><path d="M19 18h3"/><path d="M9.5 22 21.414 9.415A2 2 0 0 0 21.2 6.4l-5.61-4.208A1 1 0 0 0 14 3v2a2 2 0 0 1-1.394 1.906L8.677 8.053A1 1 0 0 0 8 9c-.155 6.393-2.082 9-4 9a2 2 0 0 0 0 4h14"/></g></svg>`;
|
|
@@ -839,17 +829,13 @@ const columns: TableColumn<OrderRow>[] = [
|
|
|
839
829
|
key: 'amount',
|
|
840
830
|
header: 'Amount',
|
|
841
831
|
width: pixel(90),
|
|
842
|
-
renderCell: (item: OrderRow) =>
|
|
843
|
-
<Text type="body">${item.amount}</Text>
|
|
844
|
-
),
|
|
832
|
+
renderCell: (item: OrderRow) => <Text type="body">${item.amount}</Text>,
|
|
845
833
|
},
|
|
846
834
|
{
|
|
847
835
|
key: 'customer',
|
|
848
836
|
header: 'Customer',
|
|
849
837
|
width: proportional(2),
|
|
850
|
-
renderCell: (item: OrderRow) =>
|
|
851
|
-
<Text type="body">{item.customer}</Text>
|
|
852
|
-
),
|
|
838
|
+
renderCell: (item: OrderRow) => <Text type="body">{item.customer}</Text>,
|
|
853
839
|
},
|
|
854
840
|
{
|
|
855
841
|
key: 'email',
|