@seed-design/figma 0.0.0-alpha-20260324091316
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/lib/codegen/index.cjs +23543 -0
- package/lib/codegen/index.d.ts +2957 -0
- package/lib/codegen/index.d.ts.map +1 -0
- package/lib/codegen/index.js +23514 -0
- package/lib/codegen/targets/react/index.cjs +31980 -0
- package/lib/codegen/targets/react/index.d.ts +308 -0
- package/lib/codegen/targets/react/index.d.ts.map +1 -0
- package/lib/codegen/targets/react/index.js +31961 -0
- package/lib/index.cjs +26905 -0
- package/lib/index.d.ts +221 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +26884 -0
- package/package.json +56 -0
- package/src/codegen/component-properties.archive.ts +1019 -0
- package/src/codegen/component-properties.ts +369 -0
- package/src/codegen/core/codegen.ts +112 -0
- package/src/codegen/core/component-handler.ts +23 -0
- package/src/codegen/core/component-type-helper.ts +35 -0
- package/src/codegen/core/element-transformer.ts +13 -0
- package/src/codegen/core/index.ts +19 -0
- package/src/codegen/core/infer-layout.test.ts +286 -0
- package/src/codegen/core/infer-layout.ts +416 -0
- package/src/codegen/core/jsx.ts +174 -0
- package/src/codegen/core/props-converter.ts +78 -0
- package/src/codegen/core/value-resolver.ts +381 -0
- package/src/codegen/default-services.ts +44 -0
- package/src/codegen/index.ts +3 -0
- package/src/codegen/skip-components.ts +7 -0
- package/src/codegen/targets/figma/frame.ts +38 -0
- package/src/codegen/targets/figma/index.ts +6 -0
- package/src/codegen/targets/figma/instance.ts +36 -0
- package/src/codegen/targets/figma/pipeline.ts +106 -0
- package/src/codegen/targets/figma/props.ts +262 -0
- package/src/codegen/targets/figma/shape.ts +65 -0
- package/src/codegen/targets/figma/text.ts +30 -0
- package/src/codegen/targets/figma/value-resolver.ts +75 -0
- package/src/codegen/targets/index.ts +2 -0
- package/src/codegen/targets/react/component/deps.interface.ts +7 -0
- package/src/codegen/targets/react/component/handlers/action-button.ts +149 -0
- package/src/codegen/targets/react/component/handlers/alert-dialog.ts +120 -0
- package/src/codegen/targets/react/component/handlers/app-bar.ts +169 -0
- package/src/codegen/targets/react/component/handlers/archive/action-button.ts +144 -0
- package/src/codegen/targets/react/component/handlers/archive/alert-dialog.ts +122 -0
- package/src/codegen/targets/react/component/handlers/archive/app-bar.ts +149 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar-stack.ts +35 -0
- package/src/codegen/targets/react/component/handlers/archive/avatar.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/bottom-sheet.ts +70 -0
- package/src/codegen/targets/react/component/handlers/archive/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/archive/checkbox.ts +43 -0
- package/src/codegen/targets/react/component/handlers/archive/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/archive/chip.ts +90 -0
- package/src/codegen/targets/react/component/handlers/archive/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/archive/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/field-button.ts +197 -0
- package/src/codegen/targets/react/component/handlers/archive/field.ts +167 -0
- package/src/codegen/targets/react/component/handlers/archive/floating-action-button.ts +48 -0
- package/src/codegen/targets/react/component/handlers/archive/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/archive/identity-placeholder.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/index.ts +40 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-select-box.ts +89 -0
- package/src/codegen/targets/react/component/handlers/archive/legacy-text-field.ts +198 -0
- package/src/codegen/targets/react/component/handlers/archive/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/archive/list-item.ts +162 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/archive/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/archive/menu-sheet.ts +108 -0
- package/src/codegen/targets/react/component/handlers/archive/page-banner.ts +101 -0
- package/src/codegen/targets/react/component/handlers/archive/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/archive/radio-group.ts +31 -0
- package/src/codegen/targets/react/component/handlers/archive/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/archive/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/archive/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/archive/segmented-control.ts +64 -0
- package/src/codegen/targets/react/component/handlers/archive/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/slider.ts +114 -0
- package/src/codegen/targets/react/component/handlers/archive/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/archive/switch.ts +39 -0
- package/src/codegen/targets/react/component/handlers/archive/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/archive/tabs.ts +297 -0
- package/src/codegen/targets/react/component/handlers/archive/tag-group.ts +86 -0
- package/src/codegen/targets/react/component/handlers/archive/text-field.ts +264 -0
- package/src/codegen/targets/react/component/handlers/archive/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/handlers/avatar-stack.ts +38 -0
- package/src/codegen/targets/react/component/handlers/avatar.ts +58 -0
- package/src/codegen/targets/react/component/handlers/badge.ts +18 -0
- package/src/codegen/targets/react/component/handlers/bottom-sheet.ts +74 -0
- package/src/codegen/targets/react/component/handlers/callout.ts +88 -0
- package/src/codegen/targets/react/component/handlers/checkbox.ts +129 -0
- package/src/codegen/targets/react/component/handlers/checkmark.ts +29 -0
- package/src/codegen/targets/react/component/handlers/chip.ts +93 -0
- package/src/codegen/targets/react/component/handlers/content-placeholder.ts +20 -0
- package/src/codegen/targets/react/component/handlers/contextual-floating-button.ts +52 -0
- package/src/codegen/targets/react/component/handlers/divider.ts +25 -0
- package/src/codegen/targets/react/component/handlers/field-button.ts +192 -0
- package/src/codegen/targets/react/component/handlers/field.ts +164 -0
- package/src/codegen/targets/react/component/handlers/floating-action-button.ts +45 -0
- package/src/codegen/targets/react/component/handlers/help-bubble.ts +73 -0
- package/src/codegen/targets/react/component/handlers/identity-placeholder.ts +20 -0
- package/src/codegen/targets/react/component/handlers/image-frame.ts +147 -0
- package/src/codegen/targets/react/component/handlers/index.ts +43 -0
- package/src/codegen/targets/react/component/handlers/legacy-select-box.ts +87 -0
- package/src/codegen/targets/react/component/handlers/legacy-text-field.ts +196 -0
- package/src/codegen/targets/react/component/handlers/list-header.ts +20 -0
- package/src/codegen/targets/react/component/handlers/list-item.ts +163 -0
- package/src/codegen/targets/react/component/handlers/manner-temp-badge.ts +21 -0
- package/src/codegen/targets/react/component/handlers/manner-temp.ts +18 -0
- package/src/codegen/targets/react/component/handlers/menu-sheet.ts +111 -0
- package/src/codegen/targets/react/component/handlers/page-banner.ts +106 -0
- package/src/codegen/targets/react/component/handlers/progress-circle.ts +55 -0
- package/src/codegen/targets/react/component/handlers/radio-group.ts +109 -0
- package/src/codegen/targets/react/component/handlers/radiomark.ts +27 -0
- package/src/codegen/targets/react/component/handlers/reaction-button.ts +37 -0
- package/src/codegen/targets/react/component/handlers/result-section.ts +67 -0
- package/src/codegen/targets/react/component/handlers/segmented-control.ts +63 -0
- package/src/codegen/targets/react/component/handlers/select-box.ts +333 -0
- package/src/codegen/targets/react/component/handlers/skeleton.ts +26 -0
- package/src/codegen/targets/react/component/handlers/slider.ts +117 -0
- package/src/codegen/targets/react/component/handlers/snackbar.ts +25 -0
- package/src/codegen/targets/react/component/handlers/switch.ts +35 -0
- package/src/codegen/targets/react/component/handlers/switchmark.ts +26 -0
- package/src/codegen/targets/react/component/handlers/tabs.ts +298 -0
- package/src/codegen/targets/react/component/handlers/tag-group.ts +90 -0
- package/src/codegen/targets/react/component/handlers/text-field.ts +253 -0
- package/src/codegen/targets/react/component/handlers/toggle-button.ts +43 -0
- package/src/codegen/targets/react/component/index.ts +24 -0
- package/src/codegen/targets/react/component/size.ts +22 -0
- package/src/codegen/targets/react/element-factories.ts +59 -0
- package/src/codegen/targets/react/frame.ts +96 -0
- package/src/codegen/targets/react/icon.ts +55 -0
- package/src/codegen/targets/react/index.ts +7 -0
- package/src/codegen/targets/react/instance.ts +82 -0
- package/src/codegen/targets/react/pipeline.ts +133 -0
- package/src/codegen/targets/react/props.ts +417 -0
- package/src/codegen/targets/react/shape.ts +47 -0
- package/src/codegen/targets/react/text.ts +31 -0
- package/src/codegen/targets/react/value-resolver.ts +93 -0
- package/src/entities/component.interface.ts +7 -0
- package/src/entities/component.repository.ts +16 -0
- package/src/entities/data/__generated__/archive/component-sets/index.d.ts +2074 -0
- package/src/entities/data/__generated__/archive/component-sets/index.mjs +2074 -0
- package/src/entities/data/__generated__/archive/components/index.d.ts +116 -0
- package/src/entities/data/__generated__/archive/components/index.mjs +116 -0
- package/src/entities/data/__generated__/archive/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/styles/index.mjs +429 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variable-collections/index.mjs +501 -0
- package/src/entities/data/__generated__/archive/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/archive/variables/index.mjs +7019 -0
- package/src/entities/data/__generated__/component-sets/index.d.ts +4325 -0
- package/src/entities/data/__generated__/component-sets/index.mjs +4325 -0
- package/src/entities/data/__generated__/components/index.d.ts +378 -0
- package/src/entities/data/__generated__/components/index.mjs +378 -0
- package/src/entities/data/__generated__/icons/index.d.ts +3 -0
- package/src/entities/data/__generated__/icons/index.mjs +3476 -0
- package/src/entities/data/__generated__/styles/index.d.ts +3 -0
- package/src/entities/data/__generated__/styles/index.mjs +436 -0
- package/src/entities/data/__generated__/variable-collections/index.d.ts +3 -0
- package/src/entities/data/__generated__/variable-collections/index.mjs +479 -0
- package/src/entities/data/__generated__/variables/index.d.ts +3 -0
- package/src/entities/data/__generated__/variables/index.mjs +6969 -0
- package/src/entities/icon.interface.ts +5 -0
- package/src/entities/icon.repository.ts +11 -0
- package/src/entities/icon.service.ts +26 -0
- package/src/entities/index.ts +60 -0
- package/src/entities/style.interface.ts +5 -0
- package/src/entities/style.repository.ts +27 -0
- package/src/entities/style.service.ts +36 -0
- package/src/entities/variable.interface.ts +18 -0
- package/src/entities/variable.repository.ts +57 -0
- package/src/entities/variable.service.ts +101 -0
- package/src/index.ts +3 -0
- package/src/normalizer/from-plugin.ts +602 -0
- package/src/normalizer/from-rest.ts +577 -0
- package/src/normalizer/index.ts +3 -0
- package/src/normalizer/types.ts +208 -0
- package/src/utils/common.ts +38 -0
- package/src/utils/css.ts +19 -0
- package/src/utils/figma-gradient.ts +72 -0
- package/src/utils/figma-node.ts +95 -0
- package/src/utils/figma-variable.ts +49 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
PageBannerButtonProperties,
|
|
3
|
+
PageBannerProperties,
|
|
4
|
+
} from "@/codegen/component-properties";
|
|
5
|
+
import { createElement, defineComponentHandler } from "@/codegen/core";
|
|
6
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
7
|
+
import * as components from "@/entities/data/__generated__/components";
|
|
8
|
+
import type { NormalizedInstanceNode, NormalizedTextNode } from "@/normalizer";
|
|
9
|
+
import { findAllInstances, findOne } from "@/utils/figma-node";
|
|
10
|
+
import { camelCase } from "change-case";
|
|
11
|
+
import { createLocalSnippetHelper } from "../../element-factories";
|
|
12
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
13
|
+
import { match } from "ts-pattern";
|
|
14
|
+
|
|
15
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("page-banner");
|
|
16
|
+
|
|
17
|
+
const createPageBannerButtonHandler = (_ctx: ComponentHandlerDeps) =>
|
|
18
|
+
defineComponentHandler<PageBannerButtonProperties>(
|
|
19
|
+
components.componentPageBannerSuffixAction.key,
|
|
20
|
+
(node) => {
|
|
21
|
+
return createElement(
|
|
22
|
+
"PageBannerButton",
|
|
23
|
+
undefined,
|
|
24
|
+
node.componentProperties["Label#39890:0"].value,
|
|
25
|
+
);
|
|
26
|
+
},
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export const createPageBannerHandler = (ctx: ComponentHandlerDeps) => {
|
|
30
|
+
const buttonHandler = createPageBannerButtonHandler(ctx);
|
|
31
|
+
|
|
32
|
+
return defineComponentHandler<PageBannerProperties>(
|
|
33
|
+
metadata.componentPageBanner.key,
|
|
34
|
+
(node, traverse) => {
|
|
35
|
+
const { componentProperties: props } = node;
|
|
36
|
+
|
|
37
|
+
const { tag, suffix } = match(props.Interaction.value)
|
|
38
|
+
.with("Actionable", () => ({ tag: "ActionablePageBanner", suffix: undefined }))
|
|
39
|
+
.with("Dismissible", () => ({ tag: "DismissiblePageBanner", suffix: undefined }))
|
|
40
|
+
.with("Display", () => ({ tag: "PageBanner", suffix: undefined }))
|
|
41
|
+
.with("Display (With Action)", () => {
|
|
42
|
+
const [buttonNode] = findAllInstances<PageBannerButtonProperties>({
|
|
43
|
+
node,
|
|
44
|
+
key: components.componentPageBannerSuffixAction.key,
|
|
45
|
+
});
|
|
46
|
+
const suffix = buttonNode ? buttonHandler.transform(buttonNode, traverse) : undefined;
|
|
47
|
+
|
|
48
|
+
return { tag: "PageBanner", suffix };
|
|
49
|
+
})
|
|
50
|
+
.with("Actionable (Custom)", () => ({
|
|
51
|
+
tag: "PageBanner",
|
|
52
|
+
suffix: createElement("div", undefined, "Custom Content"),
|
|
53
|
+
}))
|
|
54
|
+
.exhaustive();
|
|
55
|
+
|
|
56
|
+
const textNode = findOne(
|
|
57
|
+
node,
|
|
58
|
+
(child) => child.type === "TEXT" && child.name === "Text",
|
|
59
|
+
) as NormalizedTextNode | null;
|
|
60
|
+
|
|
61
|
+
if (!textNode) {
|
|
62
|
+
return createLocalSnippetElement(tag, undefined, undefined, {
|
|
63
|
+
comment: "내용을 제공해주세요.",
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
const slices = textNode.segments;
|
|
68
|
+
|
|
69
|
+
let title: string | undefined;
|
|
70
|
+
let description: string | undefined;
|
|
71
|
+
|
|
72
|
+
switch (slices.length) {
|
|
73
|
+
case 1: {
|
|
74
|
+
description = slices[0]?.characters.trim();
|
|
75
|
+
|
|
76
|
+
break;
|
|
77
|
+
}
|
|
78
|
+
case 2: {
|
|
79
|
+
title = slices[0]?.characters.trim();
|
|
80
|
+
description = slices[1]?.characters.trim();
|
|
81
|
+
|
|
82
|
+
break;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const iconNode = findOne(
|
|
87
|
+
node,
|
|
88
|
+
(child) => child.type === "INSTANCE" && child.name === "icon",
|
|
89
|
+
) as NormalizedInstanceNode | null;
|
|
90
|
+
|
|
91
|
+
const showPrefixIcon = props["Show Prefix Icon#11840:27"].value && iconNode;
|
|
92
|
+
const prefixIcon = showPrefixIcon ? ctx.iconHandler.transform(iconNode) : undefined;
|
|
93
|
+
|
|
94
|
+
const commonProps = {
|
|
95
|
+
title,
|
|
96
|
+
description,
|
|
97
|
+
prefixIcon,
|
|
98
|
+
tone: camelCase(props.Tone.value),
|
|
99
|
+
variant: camelCase(props.Variant.value),
|
|
100
|
+
...(suffix && { suffix }),
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
return createLocalSnippetElement(tag, commonProps);
|
|
104
|
+
},
|
|
105
|
+
);
|
|
106
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { ProgressCircleProperties } from "@/codegen/component-properties";
|
|
2
|
+
import { defineComponentHandler } from "@/codegen/core";
|
|
3
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
4
|
+
import { camelCase } from "change-case";
|
|
5
|
+
import { match } from "ts-pattern";
|
|
6
|
+
import { createLocalSnippetHelper } from "../../element-factories";
|
|
7
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
8
|
+
|
|
9
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("progress-circle");
|
|
10
|
+
|
|
11
|
+
export const createProgressCircleHandler = (_ctx: ComponentHandlerDeps) =>
|
|
12
|
+
defineComponentHandler<ProgressCircleProperties>(
|
|
13
|
+
metadata.componentProgressCircle.key,
|
|
14
|
+
({ componentProperties: props }) => {
|
|
15
|
+
const { value, minValue, maxValue } = match(props.Value.value)
|
|
16
|
+
.with("Indeterminate", () => ({
|
|
17
|
+
value: undefined,
|
|
18
|
+
minValue: undefined,
|
|
19
|
+
maxValue: undefined,
|
|
20
|
+
}))
|
|
21
|
+
.with("0%", () => ({
|
|
22
|
+
value: 0,
|
|
23
|
+
minValue: 0,
|
|
24
|
+
maxValue: 100,
|
|
25
|
+
}))
|
|
26
|
+
.with("25%", () => ({
|
|
27
|
+
value: 25,
|
|
28
|
+
minValue: 0,
|
|
29
|
+
maxValue: 100,
|
|
30
|
+
}))
|
|
31
|
+
.with("75%", () => ({
|
|
32
|
+
value: 75,
|
|
33
|
+
minValue: 0,
|
|
34
|
+
maxValue: 100,
|
|
35
|
+
}))
|
|
36
|
+
.with("100%", () => ({
|
|
37
|
+
value: 100,
|
|
38
|
+
minValue: 0,
|
|
39
|
+
maxValue: 100,
|
|
40
|
+
}))
|
|
41
|
+
.exhaustive();
|
|
42
|
+
|
|
43
|
+
const commonProps = {
|
|
44
|
+
value,
|
|
45
|
+
minValue,
|
|
46
|
+
maxValue,
|
|
47
|
+
size: props.Size.value,
|
|
48
|
+
...(props.Tone.value !== "Custom(inherit)" && {
|
|
49
|
+
tone: camelCase(props.Tone.value),
|
|
50
|
+
}),
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
return createLocalSnippetElement("ProgressCircle", commonProps);
|
|
54
|
+
},
|
|
55
|
+
);
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import type { RadioGroupFieldProperties, RadioProperties } from "@/codegen/component-properties";
|
|
2
|
+
import { defineComponentHandler } from "@/codegen/core";
|
|
3
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
4
|
+
import { createLocalSnippetHelper } from "../../element-factories";
|
|
5
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
6
|
+
import { handleSizeProp } from "../size";
|
|
7
|
+
import { camelCase } from "change-case";
|
|
8
|
+
import { match } from "ts-pattern";
|
|
9
|
+
import {
|
|
10
|
+
createFieldFooterHandler,
|
|
11
|
+
createFieldHeaderHandler,
|
|
12
|
+
type FieldFooterProps,
|
|
13
|
+
type FieldHeaderProps,
|
|
14
|
+
} from "@/codegen/targets/react/component/handlers/field";
|
|
15
|
+
import { findAllInstances } from "@/utils/figma-node";
|
|
16
|
+
import type { FieldFooterProperties, FieldHeaderProperties } from "@/codegen/component-properties";
|
|
17
|
+
|
|
18
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("radio-group");
|
|
19
|
+
|
|
20
|
+
export const createRadioGroupItemHandler = (_ctx: ComponentHandlerDeps) =>
|
|
21
|
+
defineComponentHandler<RadioProperties>(
|
|
22
|
+
metadata.componentRadio.key,
|
|
23
|
+
({ componentProperties: props }) => {
|
|
24
|
+
const tone = match(props.Tone.value)
|
|
25
|
+
.with("Neutral", () => "neutral")
|
|
26
|
+
.with("🚫[Deprecated]Brand", () => "brand")
|
|
27
|
+
.exhaustive();
|
|
28
|
+
|
|
29
|
+
const commonProps = {
|
|
30
|
+
...(props.State.value === "Disabled" && {
|
|
31
|
+
disabled: true,
|
|
32
|
+
}),
|
|
33
|
+
label: props["Label#49990:171"].value,
|
|
34
|
+
value: props["Label#49990:171"].value,
|
|
35
|
+
size: handleSizeProp(props.Size.value),
|
|
36
|
+
tone,
|
|
37
|
+
weight: camelCase(props.Weight.value),
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
return createLocalSnippetElement("RadioGroupItem", commonProps, undefined, {
|
|
41
|
+
comment: "RadioGroup으로 묶어서 사용하세요.",
|
|
42
|
+
});
|
|
43
|
+
},
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
export const createRadioGroupFieldHandler = (ctx: ComponentHandlerDeps) => {
|
|
47
|
+
const radioItemHandler = createRadioGroupItemHandler(ctx);
|
|
48
|
+
const fieldHeaderHandler = createFieldHeaderHandler(ctx);
|
|
49
|
+
const fieldFooterHandler = createFieldFooterHandler(ctx);
|
|
50
|
+
|
|
51
|
+
return defineComponentHandler<RadioGroupFieldProperties>(
|
|
52
|
+
metadata.templateRadioField.key,
|
|
53
|
+
(node, traverse) => {
|
|
54
|
+
const { componentProperties: props } = node;
|
|
55
|
+
|
|
56
|
+
const items = findAllInstances<RadioProperties>({
|
|
57
|
+
node,
|
|
58
|
+
key: radioItemHandler.key,
|
|
59
|
+
});
|
|
60
|
+
const [fieldHeader] = findAllInstances<FieldHeaderProperties>({
|
|
61
|
+
node,
|
|
62
|
+
key: fieldHeaderHandler.key,
|
|
63
|
+
});
|
|
64
|
+
const [fieldFooter] = findAllInstances<FieldFooterProperties>({
|
|
65
|
+
node,
|
|
66
|
+
key: fieldFooterHandler.key,
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
// maxGraphemeCount and required can't be props of RadioGroup
|
|
70
|
+
const { required: _required, ...headerProps } =
|
|
71
|
+
props["Show Header#40606:8"].value && fieldHeader
|
|
72
|
+
? (fieldHeaderHandler.transform(fieldHeader, traverse).props as FieldHeaderProps)
|
|
73
|
+
: {};
|
|
74
|
+
const { maxGraphemeCount: _maxGraphemeCount, ...footerProps } =
|
|
75
|
+
props["Show Footer#40606:9"].value && fieldFooter
|
|
76
|
+
? (fieldFooterHandler.transform(fieldFooter, traverse).props as FieldFooterProps)
|
|
77
|
+
: {};
|
|
78
|
+
|
|
79
|
+
const selectedItem = items.find((item) => item.componentProperties.Selected.value === "True");
|
|
80
|
+
|
|
81
|
+
const commonProps = {
|
|
82
|
+
...headerProps,
|
|
83
|
+
...footerProps,
|
|
84
|
+
|
|
85
|
+
...(selectedItem && {
|
|
86
|
+
defaultValue: selectedItem.componentProperties["Label#49990:171"].value,
|
|
87
|
+
}),
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
return createLocalSnippetElement(
|
|
91
|
+
"RadioGroup",
|
|
92
|
+
commonProps,
|
|
93
|
+
items.map((item) => {
|
|
94
|
+
const result = radioItemHandler.transform(item, traverse);
|
|
95
|
+
|
|
96
|
+
return {
|
|
97
|
+
...result,
|
|
98
|
+
meta: {
|
|
99
|
+
...result.meta,
|
|
100
|
+
|
|
101
|
+
// remove comment from individual RadioGroupItem items
|
|
102
|
+
comment: undefined,
|
|
103
|
+
},
|
|
104
|
+
};
|
|
105
|
+
}),
|
|
106
|
+
);
|
|
107
|
+
},
|
|
108
|
+
);
|
|
109
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { RadiomarkProperties } from "@/codegen/component-properties";
|
|
2
|
+
import { defineComponentHandler } from "@/codegen/core";
|
|
3
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
4
|
+
import { createLocalSnippetHelper } from "../../element-factories";
|
|
5
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
6
|
+
import { handleSizeProp } from "../size";
|
|
7
|
+
import { match } from "ts-pattern";
|
|
8
|
+
|
|
9
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("radio-group");
|
|
10
|
+
|
|
11
|
+
export const createRadiomarkHandler = (_ctx: ComponentHandlerDeps) =>
|
|
12
|
+
defineComponentHandler<RadiomarkProperties>(
|
|
13
|
+
metadata.componentRadiomark.key,
|
|
14
|
+
({ componentProperties: props }) => {
|
|
15
|
+
const tone = match(props.Tone.value)
|
|
16
|
+
.with("Neutral", () => "neutral")
|
|
17
|
+
.with("🚫[Deprecated]Brand", () => "brand")
|
|
18
|
+
.exhaustive();
|
|
19
|
+
|
|
20
|
+
const commonProps = {
|
|
21
|
+
tone,
|
|
22
|
+
size: handleSizeProp(props.Size.value),
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
return createLocalSnippetElement("Radiomark", commonProps);
|
|
26
|
+
},
|
|
27
|
+
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { ReactionButtonProperties } from "@/codegen/component-properties";
|
|
2
|
+
import { defineComponentHandler } from "@/codegen/core";
|
|
3
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
4
|
+
import { createLocalSnippetHelper, createSeedReactElement } from "../../element-factories";
|
|
5
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
6
|
+
import { handleSizeProp } from "../size";
|
|
7
|
+
|
|
8
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("reaction-button");
|
|
9
|
+
|
|
10
|
+
export const createReactionButtonHandler = (ctx: ComponentHandlerDeps) =>
|
|
11
|
+
defineComponentHandler<ReactionButtonProperties>(
|
|
12
|
+
metadata.componentReactionButton.key,
|
|
13
|
+
({ componentProperties: props }) => {
|
|
14
|
+
const commonProps = {
|
|
15
|
+
size: handleSizeProp(props.Size.value),
|
|
16
|
+
...(props.State.value === "Loading" && {
|
|
17
|
+
loading: true,
|
|
18
|
+
}),
|
|
19
|
+
...(props.State.value === "Disabled" && {
|
|
20
|
+
disabled: true,
|
|
21
|
+
}),
|
|
22
|
+
...(props.Selected.value === "True" && {
|
|
23
|
+
defaultPressed: true,
|
|
24
|
+
}),
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
return createLocalSnippetElement("ReactionButton", commonProps, [
|
|
28
|
+
createSeedReactElement("PrefixIcon", {
|
|
29
|
+
svg: ctx.iconHandler.transform(props["Icon#12379:0"]),
|
|
30
|
+
}),
|
|
31
|
+
props["Label#6397:0"].value,
|
|
32
|
+
props["Show Count#6397:33"].value
|
|
33
|
+
? createSeedReactElement("Count", {}, props["Count#15816:0"].value)
|
|
34
|
+
: undefined,
|
|
35
|
+
]);
|
|
36
|
+
},
|
|
37
|
+
);
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ActionButtonGhostProperties,
|
|
3
|
+
ActionButtonProperties,
|
|
4
|
+
ResultSectionProperties,
|
|
5
|
+
} from "@/codegen/component-properties";
|
|
6
|
+
import { createElement, defineComponentHandler } from "@/codegen/core";
|
|
7
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
8
|
+
import { findAllInstances } from "@/utils/figma-node";
|
|
9
|
+
import { createLocalSnippetHelper, createSeedReactElement } from "../../element-factories";
|
|
10
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
11
|
+
import { createActionButtonGhostHandler, createActionButtonHandler } from "./action-button";
|
|
12
|
+
import { handleSizeProp } from "@/codegen/targets/react/component/size";
|
|
13
|
+
|
|
14
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("result-section");
|
|
15
|
+
|
|
16
|
+
export const createResultSectionHandler = (ctx: ComponentHandlerDeps) => {
|
|
17
|
+
const actionButtonHandler = createActionButtonHandler(ctx);
|
|
18
|
+
const ghostButtonHandler = createActionButtonGhostHandler(ctx);
|
|
19
|
+
|
|
20
|
+
return defineComponentHandler<ResultSectionProperties>(
|
|
21
|
+
metadata.componentResultSection.key,
|
|
22
|
+
(node, traverse) => {
|
|
23
|
+
const props = node.componentProperties;
|
|
24
|
+
|
|
25
|
+
const [actionButton] =
|
|
26
|
+
props["Show Buttons#53435:0"].value && props["ㄴShow First Button#53766:0"].value
|
|
27
|
+
? findAllInstances<ActionButtonProperties>({
|
|
28
|
+
node,
|
|
29
|
+
key: actionButtonHandler.key,
|
|
30
|
+
})
|
|
31
|
+
: [undefined];
|
|
32
|
+
|
|
33
|
+
const [ghostButton] =
|
|
34
|
+
props["Show Buttons#53435:0"].value && props["ㄴShow Second Button#53766:3"].value
|
|
35
|
+
? findAllInstances<ActionButtonGhostProperties>({
|
|
36
|
+
node,
|
|
37
|
+
key: ghostButtonHandler.key,
|
|
38
|
+
})
|
|
39
|
+
: [undefined];
|
|
40
|
+
|
|
41
|
+
const commonProps = {
|
|
42
|
+
size: handleSizeProp(props.Size.value),
|
|
43
|
+
...(props["Show Asset#45154:14"].value && {
|
|
44
|
+
asset: createSeedReactElement(
|
|
45
|
+
"Box",
|
|
46
|
+
undefined,
|
|
47
|
+
createElement("div", undefined, undefined, { comment: "Asset Placeholder" }),
|
|
48
|
+
),
|
|
49
|
+
}),
|
|
50
|
+
title: props["Title#16237:0"].value,
|
|
51
|
+
description: props["Description#16237:5"].value,
|
|
52
|
+
...(actionButton && {
|
|
53
|
+
primaryActionProps: {
|
|
54
|
+
children: actionButtonHandler.transform(actionButton, traverse).children[0],
|
|
55
|
+
},
|
|
56
|
+
}),
|
|
57
|
+
...(ghostButton && {
|
|
58
|
+
secondaryActionProps: {
|
|
59
|
+
children: ghostButtonHandler.transform(ghostButton, traverse).children[0],
|
|
60
|
+
},
|
|
61
|
+
}),
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
return createLocalSnippetElement("ResultSection", commonProps);
|
|
65
|
+
},
|
|
66
|
+
);
|
|
67
|
+
};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
SegmentedControlItemProperties,
|
|
3
|
+
SegmentedControlProperties,
|
|
4
|
+
} from "@/codegen/component-properties";
|
|
5
|
+
import { defineComponentHandler } from "@/codegen/core";
|
|
6
|
+
import * as metadata from "@/entities/data/__generated__/component-sets";
|
|
7
|
+
import { findAllInstances } from "@/utils/figma-node";
|
|
8
|
+
import { createLocalSnippetHelper } from "../../element-factories";
|
|
9
|
+
import type { ComponentHandlerDeps } from "../deps.interface";
|
|
10
|
+
|
|
11
|
+
const { createLocalSnippetElement } = createLocalSnippetHelper("segmented-control");
|
|
12
|
+
|
|
13
|
+
const createSegmentedControlItemHandler = (_ctx: ComponentHandlerDeps) =>
|
|
14
|
+
defineComponentHandler<SegmentedControlItemProperties>(
|
|
15
|
+
metadata.privateComponentSegmentedControlItem.key,
|
|
16
|
+
({ componentProperties: props }) => {
|
|
17
|
+
const states = props.State.value.split("-");
|
|
18
|
+
const commonProps = {
|
|
19
|
+
value: props["Label#11366:15"].value,
|
|
20
|
+
...(states.includes("Disabled") && {
|
|
21
|
+
disabled: true,
|
|
22
|
+
}),
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
return createLocalSnippetElement(
|
|
26
|
+
"SegmentedControlItem",
|
|
27
|
+
commonProps,
|
|
28
|
+
props["Label#11366:15"].value,
|
|
29
|
+
);
|
|
30
|
+
},
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
export const createSegmentedControlHandler = (ctx: ComponentHandlerDeps) => {
|
|
34
|
+
const segmentedControlItemHandler = createSegmentedControlItemHandler(ctx);
|
|
35
|
+
|
|
36
|
+
return defineComponentHandler<SegmentedControlProperties>(
|
|
37
|
+
metadata.componentSegmentedControl.key,
|
|
38
|
+
(node, traverse) => {
|
|
39
|
+
const segments = findAllInstances<SegmentedControlItemProperties>({
|
|
40
|
+
node,
|
|
41
|
+
key: segmentedControlItemHandler.key,
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
const selectedSegment = segments.find((segment) =>
|
|
45
|
+
segment.componentProperties.State.value.split("-").includes("Selected"),
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
const segmentedControlChildren = segments.map((segment) =>
|
|
49
|
+
segmentedControlItemHandler.transform(segment, traverse),
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
const commonProps = {
|
|
53
|
+
...(selectedSegment && {
|
|
54
|
+
defaultValue: selectedSegment.componentProperties["Label#11366:15"].value,
|
|
55
|
+
}),
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
return createLocalSnippetElement("SegmentedControl", commonProps, segmentedControlChildren, {
|
|
59
|
+
comment: "aria-label이나 aria-labelledby 중 하나를 제공해야 합니다.",
|
|
60
|
+
});
|
|
61
|
+
},
|
|
62
|
+
);
|
|
63
|
+
};
|