@tamagui/static 1.0.0-alpha.8 → 1.0.0-beta.179

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 (231) hide show
  1. package/README.md +3 -19
  2. package/dist/cjs/constants.js +36 -0
  3. package/dist/cjs/constants.js.map +7 -0
  4. package/dist/cjs/extractor/accessSafe.js +32 -0
  5. package/dist/cjs/extractor/accessSafe.js.map +7 -0
  6. package/dist/cjs/extractor/babelParse.js +51 -0
  7. package/dist/cjs/extractor/babelParse.js.map +7 -0
  8. package/dist/cjs/extractor/buildClassName.js +61 -0
  9. package/dist/cjs/extractor/buildClassName.js.map +7 -0
  10. package/dist/cjs/extractor/createEvaluator.js +73 -0
  11. package/dist/cjs/extractor/createEvaluator.js.map +7 -0
  12. package/dist/cjs/extractor/createExtractor.js +1091 -0
  13. package/dist/cjs/extractor/createExtractor.js.map +7 -0
  14. package/dist/cjs/extractor/ensureImportingConcat.js +45 -0
  15. package/dist/cjs/extractor/ensureImportingConcat.js.map +7 -0
  16. package/dist/cjs/extractor/evaluateAstNode.js +115 -0
  17. package/dist/cjs/extractor/evaluateAstNode.js.map +7 -0
  18. package/dist/cjs/extractor/extractHelpers.js +124 -0
  19. package/dist/cjs/extractor/extractHelpers.js.map +7 -0
  20. package/dist/cjs/extractor/extractMediaStyle.js +186 -0
  21. package/dist/cjs/extractor/extractMediaStyle.js.map +7 -0
  22. package/dist/cjs/extractor/extractToClassNames.js +324 -0
  23. package/dist/cjs/extractor/extractToClassNames.js.map +7 -0
  24. package/dist/cjs/extractor/findTopmostFunction.js +41 -0
  25. package/dist/cjs/extractor/findTopmostFunction.js.map +7 -0
  26. package/dist/cjs/extractor/generatedUid.js +49 -0
  27. package/dist/cjs/extractor/generatedUid.js.map +7 -0
  28. package/dist/cjs/extractor/getPrefixLogs.js +29 -0
  29. package/dist/cjs/extractor/getPrefixLogs.js.map +7 -0
  30. package/dist/cjs/extractor/getPropValueFromAttributes.js +70 -0
  31. package/dist/cjs/extractor/getPropValueFromAttributes.js.map +7 -0
  32. package/dist/cjs/extractor/getSourceModule.js +90 -0
  33. package/dist/cjs/extractor/getSourceModule.js.map +7 -0
  34. package/dist/cjs/extractor/getStaticBindingsForScope.js +149 -0
  35. package/dist/cjs/extractor/getStaticBindingsForScope.js.map +7 -0
  36. package/dist/cjs/extractor/hoistClassNames.js +65 -0
  37. package/dist/cjs/extractor/hoistClassNames.js.map +7 -0
  38. package/dist/cjs/extractor/literalToAst.js +114 -0
  39. package/dist/cjs/extractor/literalToAst.js.map +7 -0
  40. package/dist/cjs/extractor/loadTamagui.js +83 -0
  41. package/dist/cjs/extractor/loadTamagui.js.map +7 -0
  42. package/dist/cjs/extractor/logLines.js +40 -0
  43. package/dist/cjs/extractor/logLines.js.map +7 -0
  44. package/dist/cjs/extractor/normalizeTernaries.js +101 -0
  45. package/dist/cjs/extractor/normalizeTernaries.js.map +7 -0
  46. package/dist/cjs/extractor/removeUnusedHooks.js +100 -0
  47. package/dist/cjs/extractor/removeUnusedHooks.js.map +7 -0
  48. package/dist/cjs/extractor/validHTMLAttributes.js +71 -0
  49. package/dist/cjs/extractor/validHTMLAttributes.js.map +7 -0
  50. package/dist/cjs/index.js +34 -0
  51. package/dist/cjs/index.js.map +7 -0
  52. package/dist/cjs/patchReactNativeWeb.js +151 -0
  53. package/dist/cjs/patchReactNativeWeb.js.map +7 -0
  54. package/dist/cjs/types.js +16 -0
  55. package/dist/cjs/types.js.map +7 -0
  56. package/dist/{constants.js → esm/constants.js} +4 -0
  57. package/dist/{constants.js.map → esm/constants.js.map} +3 -3
  58. package/dist/{extractor → esm/extractor}/accessSafe.js +0 -0
  59. package/dist/{extractor → esm/extractor}/accessSafe.js.map +2 -2
  60. package/dist/{extractor → esm/extractor}/babelParse.js +0 -0
  61. package/dist/{extractor → esm/extractor}/babelParse.js.map +2 -2
  62. package/dist/{extractor → esm/extractor}/buildClassName.js +0 -0
  63. package/dist/{extractor → esm/extractor}/buildClassName.js.map +2 -2
  64. package/dist/{extractor → esm/extractor}/createEvaluator.js +3 -2
  65. package/dist/esm/extractor/createEvaluator.js.map +7 -0
  66. package/dist/{extractor → esm/extractor}/createExtractor.js +411 -196
  67. package/dist/esm/extractor/createExtractor.js.map +7 -0
  68. package/dist/{extractor → esm/extractor}/ensureImportingConcat.js +1 -1
  69. package/dist/esm/extractor/ensureImportingConcat.js.map +7 -0
  70. package/dist/{extractor → esm/extractor}/evaluateAstNode.js +0 -0
  71. package/dist/esm/extractor/evaluateAstNode.js.map +7 -0
  72. package/dist/{extractor → esm/extractor}/extractHelpers.js +20 -11
  73. package/dist/esm/extractor/extractHelpers.js.map +7 -0
  74. package/dist/{extractor → esm/extractor}/extractMediaStyle.js +3 -2
  75. package/dist/esm/extractor/extractMediaStyle.js.map +7 -0
  76. package/dist/{extractor → esm/extractor}/extractToClassNames.js +100 -47
  77. package/dist/esm/extractor/extractToClassNames.js.map +7 -0
  78. package/dist/{extractor → esm/extractor}/findTopmostFunction.js +0 -0
  79. package/dist/{extractor → esm/extractor}/findTopmostFunction.js.map +2 -2
  80. package/dist/{extractor → esm/extractor}/generatedUid.js +0 -0
  81. package/dist/{extractor → esm/extractor}/generatedUid.js.map +2 -2
  82. package/dist/esm/extractor/getPrefixLogs.js +12 -0
  83. package/dist/esm/extractor/getPrefixLogs.js.map +7 -0
  84. package/dist/{extractor → esm/extractor}/getPropValueFromAttributes.js +0 -0
  85. package/dist/{extractor → esm/extractor}/getPropValueFromAttributes.js.map +2 -2
  86. package/dist/{extractor → esm/extractor}/getSourceModule.js +0 -0
  87. package/dist/{extractor → esm/extractor}/getSourceModule.js.map +2 -2
  88. package/dist/{extractor → esm/extractor}/getStaticBindingsForScope.js +0 -0
  89. package/dist/esm/extractor/getStaticBindingsForScope.js.map +7 -0
  90. package/dist/{extractor → esm/extractor}/hoistClassNames.js +0 -0
  91. package/dist/{extractor → esm/extractor}/hoistClassNames.js.map +2 -2
  92. package/dist/esm/extractor/literalToAst.js +80 -0
  93. package/dist/esm/extractor/literalToAst.js.map +7 -0
  94. package/dist/{extractor → esm/extractor}/loadTamagui.js +27 -3
  95. package/dist/esm/extractor/loadTamagui.js.map +7 -0
  96. package/dist/esm/extractor/logLines.js +22 -0
  97. package/dist/esm/extractor/logLines.js.map +7 -0
  98. package/dist/{extractor → esm/extractor}/normalizeTernaries.js +3 -2
  99. package/dist/esm/extractor/normalizeTernaries.js.map +7 -0
  100. package/dist/{extractor → esm/extractor}/removeUnusedHooks.js +5 -3
  101. package/dist/esm/extractor/removeUnusedHooks.js.map +7 -0
  102. package/dist/esm/extractor/validHTMLAttributes.js +52 -0
  103. package/dist/esm/extractor/validHTMLAttributes.js.map +7 -0
  104. package/dist/{index.js → esm/index.js} +0 -0
  105. package/dist/{index.js.map → esm/index.js.map} +1 -1
  106. package/dist/{patchReactNativeWeb.js → esm/patchReactNativeWeb.js} +37 -14
  107. package/dist/esm/patchReactNativeWeb.js.map +7 -0
  108. package/dist/{types.js → esm/types.js} +0 -0
  109. package/dist/{types.js.map → esm/types.js.map} +0 -0
  110. package/dist/jsx/constants.js +13 -0
  111. package/dist/jsx/extractor/accessSafe.js +10 -0
  112. package/dist/jsx/extractor/babelParse.js +29 -0
  113. package/dist/jsx/extractor/buildClassName.js +39 -0
  114. package/dist/jsx/extractor/createEvaluator.js +51 -0
  115. package/dist/jsx/extractor/createExtractor.js +1041 -0
  116. package/dist/jsx/extractor/ensureImportingConcat.js +23 -0
  117. package/dist/jsx/extractor/evaluateAstNode.js +93 -0
  118. package/dist/jsx/extractor/extractHelpers.js +102 -0
  119. package/dist/jsx/extractor/extractMediaStyle.js +151 -0
  120. package/dist/jsx/extractor/extractToClassNames.js +287 -0
  121. package/dist/jsx/extractor/findTopmostFunction.js +22 -0
  122. package/dist/jsx/extractor/generatedUid.js +27 -0
  123. package/dist/jsx/extractor/getPrefixLogs.js +11 -0
  124. package/dist/jsx/extractor/getPropValueFromAttributes.js +48 -0
  125. package/dist/jsx/extractor/getSourceModule.js +68 -0
  126. package/dist/jsx/extractor/getStaticBindingsForScope.js +127 -0
  127. package/dist/jsx/extractor/hoistClassNames.js +43 -0
  128. package/dist/jsx/extractor/literalToAst.js +79 -0
  129. package/dist/jsx/extractor/loadTamagui.js +64 -0
  130. package/dist/jsx/extractor/logLines.js +21 -0
  131. package/dist/jsx/extractor/normalizeTernaries.js +52 -0
  132. package/dist/jsx/extractor/removeUnusedHooks.js +79 -0
  133. package/dist/jsx/extractor/validHTMLAttributes.js +51 -0
  134. package/dist/jsx/index.js +13 -0
  135. package/{src/patchReactNativeWeb.ts → dist/jsx/patchReactNativeWeb.js} +65 -59
  136. package/dist/jsx/types.js +0 -0
  137. package/package.json +26 -23
  138. package/types/constants.d.ts +6 -0
  139. package/types/constants.d.ts.map +1 -0
  140. package/types/extractor/accessSafe.d.ts +3 -0
  141. package/types/extractor/accessSafe.d.ts.map +1 -0
  142. package/types/extractor/babelParse.d.ts +5 -0
  143. package/types/extractor/babelParse.d.ts.map +1 -0
  144. package/types/extractor/buildClassName.d.ts +4 -0
  145. package/types/extractor/buildClassName.d.ts.map +1 -0
  146. package/types/extractor/createEvaluator.d.ts +12 -0
  147. package/types/extractor/createEvaluator.d.ts.map +1 -0
  148. package/types/extractor/createExtractor.d.ts +27 -0
  149. package/types/extractor/createExtractor.d.ts.map +1 -0
  150. package/types/extractor/ensureImportingConcat.d.ts +4 -0
  151. package/types/extractor/ensureImportingConcat.d.ts.map +1 -0
  152. package/types/extractor/evaluateAstNode.d.ts +3 -0
  153. package/types/extractor/evaluateAstNode.d.ts.map +1 -0
  154. package/types/extractor/extractHelpers.d.ts +12 -0
  155. package/types/extractor/extractHelpers.d.ts.map +1 -0
  156. package/types/extractor/extractMediaStyle.d.ts +10 -0
  157. package/types/extractor/extractMediaStyle.d.ts.map +1 -0
  158. package/types/extractor/extractToClassNames.d.ts +23 -0
  159. package/types/extractor/extractToClassNames.d.ts.map +1 -0
  160. package/types/extractor/findTopmostFunction.d.ts +4 -0
  161. package/types/extractor/findTopmostFunction.d.ts.map +1 -0
  162. package/types/extractor/generatedUid.d.ts +5 -0
  163. package/types/extractor/generatedUid.d.ts.map +1 -0
  164. package/types/extractor/getPrefixLogs.d.ts +3 -0
  165. package/types/extractor/getPrefixLogs.d.ts.map +1 -0
  166. package/types/extractor/getPropValueFromAttributes.d.ts +3 -0
  167. package/types/extractor/getPropValueFromAttributes.d.ts.map +1 -0
  168. package/types/extractor/getSourceModule.d.ts +16 -0
  169. package/types/extractor/getSourceModule.d.ts.map +1 -0
  170. package/types/extractor/getStaticBindingsForScope.d.ts +4 -0
  171. package/types/extractor/getStaticBindingsForScope.d.ts.map +1 -0
  172. package/types/extractor/hoistClassNames.d.ts +6 -0
  173. package/types/extractor/hoistClassNames.d.ts.map +1 -0
  174. package/types/extractor/literalToAst.d.ts +4 -0
  175. package/types/extractor/literalToAst.d.ts.map +1 -0
  176. package/types/extractor/loadTamagui.d.ts +9 -0
  177. package/types/extractor/loadTamagui.d.ts.map +1 -0
  178. package/types/extractor/logLines.d.ts +2 -0
  179. package/types/extractor/logLines.d.ts.map +1 -0
  180. package/types/extractor/normalizeTernaries.d.ts +3 -0
  181. package/types/extractor/normalizeTernaries.d.ts.map +1 -0
  182. package/types/extractor/removeUnusedHooks.d.ts +3 -0
  183. package/types/extractor/removeUnusedHooks.d.ts.map +1 -0
  184. package/types/extractor/validHTMLAttributes.d.ts +49 -0
  185. package/types/extractor/validHTMLAttributes.d.ts.map +1 -0
  186. package/types/index.d.ts +8 -0
  187. package/types/index.d.ts.map +1 -0
  188. package/types/patchReactNativeWeb.d.ts +2 -0
  189. package/types/patchReactNativeWeb.d.ts.map +1 -0
  190. package/types/types.d.ts +85 -0
  191. package/types/types.d.ts.map +1 -0
  192. package/dist/extractor/createEvaluator.js.map +0 -7
  193. package/dist/extractor/createExtractor.js.map +0 -7
  194. package/dist/extractor/ensureImportingConcat.js.map +0 -7
  195. package/dist/extractor/evaluateAstNode.js.map +0 -7
  196. package/dist/extractor/extractHelpers.js.map +0 -7
  197. package/dist/extractor/extractMediaStyle.js.map +0 -7
  198. package/dist/extractor/extractToClassNames.js.map +0 -7
  199. package/dist/extractor/getStaticBindingsForScope.js.map +0 -7
  200. package/dist/extractor/literalToAst.js +0 -34
  201. package/dist/extractor/literalToAst.js.map +0 -7
  202. package/dist/extractor/loadTamagui.js.map +0 -7
  203. package/dist/extractor/normalizeTernaries.js.map +0 -7
  204. package/dist/extractor/removeUnusedHooks.js.map +0 -7
  205. package/dist/index.cjs +0 -2116
  206. package/dist/index.cjs.map +0 -7
  207. package/dist/patchReactNativeWeb.js.map +0 -7
  208. package/src/constants.ts +0 -10
  209. package/src/extractor/accessSafe.ts +0 -18
  210. package/src/extractor/babelParse.ts +0 -27
  211. package/src/extractor/buildClassName.ts +0 -61
  212. package/src/extractor/createEvaluator.ts +0 -68
  213. package/src/extractor/createExtractor.ts +0 -1139
  214. package/src/extractor/ensureImportingConcat.ts +0 -33
  215. package/src/extractor/evaluateAstNode.ts +0 -121
  216. package/src/extractor/extractHelpers.ts +0 -102
  217. package/src/extractor/extractMediaStyle.ts +0 -191
  218. package/src/extractor/extractToClassNames.ts +0 -326
  219. package/src/extractor/findTopmostFunction.ts +0 -22
  220. package/src/extractor/generatedUid.ts +0 -43
  221. package/src/extractor/getPropValueFromAttributes.ts +0 -92
  222. package/src/extractor/getSourceModule.ts +0 -101
  223. package/src/extractor/getStaticBindingsForScope.ts +0 -173
  224. package/src/extractor/hoistClassNames.ts +0 -45
  225. package/src/extractor/literalToAst.ts +0 -32
  226. package/src/extractor/loadTamagui.ts +0 -61
  227. package/src/extractor/normalizeTernaries.ts +0 -60
  228. package/src/extractor/removeUnusedHooks.ts +0 -76
  229. package/src/index.ts +0 -9
  230. package/src/types.ts +0 -89
  231. package/types.d.ts +0 -219
@@ -0,0 +1,1041 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
3
+ import traverse from "@babel/traverse";
4
+ import * as t from "@babel/types";
5
+ import {
6
+ getSplitStyles,
7
+ mediaQueryConfig,
8
+ pseudos,
9
+ rnw
10
+ } from "@tamagui/core-node";
11
+ import { difference, pick } from "lodash";
12
+ import { FAILED_EVAL } from "../constants";
13
+ import { createEvaluator, createSafeEvaluator } from "./createEvaluator";
14
+ import { evaluateAstNode } from "./evaluateAstNode";
15
+ import { attrStr, findComponentName, isInsideTamagui, isPresent, objToStr } from "./extractHelpers";
16
+ import { findTopmostFunction } from "./findTopmostFunction";
17
+ import { getStaticBindingsForScope } from "./getStaticBindingsForScope";
18
+ import { literalToAst } from "./literalToAst";
19
+ import { loadTamagui } from "./loadTamagui";
20
+ import { logLines } from "./logLines";
21
+ import { normalizeTernaries } from "./normalizeTernaries";
22
+ import { removeUnusedHooks } from "./removeUnusedHooks";
23
+ import { validHTMLAttributes } from "./validHTMLAttributes";
24
+ const UNTOUCHED_PROPS = {
25
+ key: true,
26
+ style: true,
27
+ className: true
28
+ };
29
+ const isAttr = /* @__PURE__ */ __name((x) => x.type === "attr", "isAttr");
30
+ const validHooks = {
31
+ useMedia: true,
32
+ useTheme: true
33
+ };
34
+ const createTernary = /* @__PURE__ */ __name((x) => x, "createTernary");
35
+ function createExtractor() {
36
+ const shouldAddDebugProp = !process.env.npm_package_dependencies_next && process.env.TAMAGUI_TARGET !== "native" && process.env.IDENTIFY_TAGS !== "false" && (process.env.NODE_ENV === "development" || process.env.DEBUG || process.env.IDENTIFY_TAGS);
37
+ require("esbuild-register/dist/node").register({
38
+ target: "es2019",
39
+ format: "cjs"
40
+ });
41
+ let loadedTamaguiConfig;
42
+ let hasLogged = false;
43
+ return {
44
+ getTamagui() {
45
+ return loadedTamaguiConfig;
46
+ },
47
+ parse: (fileOrPath, {
48
+ config = "tamagui.config.ts",
49
+ importsWhitelist = ["constants.js"],
50
+ evaluateVars = true,
51
+ shouldPrintDebug = false,
52
+ sourcePath = "",
53
+ onExtractTag,
54
+ getFlattenedNode,
55
+ disable,
56
+ disableExtraction,
57
+ disableExtractInlineMedia,
58
+ disableExtractVariables,
59
+ disableDebugAttr,
60
+ prefixLogs,
61
+ excludeProps,
62
+ ...props
63
+ }) => {
64
+ if (disable) {
65
+ return null;
66
+ }
67
+ if (sourcePath === "") {
68
+ throw new Error(`Must provide a source file name`);
69
+ }
70
+ if (!Array.isArray(props.components)) {
71
+ throw new Error(`Must provide components array with list of Tamagui component modules`);
72
+ }
73
+ const { components, tamaguiConfig } = loadTamagui({
74
+ config,
75
+ components: props.components || ["tamagui"]
76
+ });
77
+ loadedTamaguiConfig = tamaguiConfig;
78
+ const defaultTheme = tamaguiConfig.themes[Object.keys(tamaguiConfig.themes)[0]];
79
+ const body = fileOrPath.type === "Program" ? fileOrPath.get("body") : fileOrPath.program.body;
80
+ const isInternalImport = /* @__PURE__ */ __name((importStr) => {
81
+ return isInsideTamagui(sourcePath) && importStr[0] === ".";
82
+ }, "isInternalImport");
83
+ const validComponents = Object.keys(components).filter((key) => {
84
+ var _a;
85
+ return key[0].toUpperCase() === key[0] && !!((_a = components[key]) == null ? void 0 : _a.staticConfig);
86
+ }).reduce((obj, name) => {
87
+ obj[name] = components[name];
88
+ return obj;
89
+ }, {});
90
+ let doesUseValidImport = false;
91
+ for (const bodyPath of body) {
92
+ if (bodyPath.type !== "ImportDeclaration")
93
+ continue;
94
+ const node = "node" in bodyPath ? bodyPath.node : bodyPath;
95
+ const from = node.source.value;
96
+ if (props.components.includes(from) || isInternalImport(from)) {
97
+ if (node.specifiers.some((specifier) => {
98
+ const name = specifier.local.name;
99
+ return validComponents[name] || validHooks[name];
100
+ })) {
101
+ doesUseValidImport = true;
102
+ break;
103
+ }
104
+ }
105
+ }
106
+ if (shouldPrintDebug) {
107
+ console.log(sourcePath, { doesUseValidImport });
108
+ }
109
+ if (!doesUseValidImport) {
110
+ return null;
111
+ }
112
+ let couldntParse = false;
113
+ const modifiedComponents = /* @__PURE__ */ new Set();
114
+ const bindingCache = {};
115
+ const callTraverse = /* @__PURE__ */ __name((a) => {
116
+ return fileOrPath.type === "File" ? traverse(fileOrPath, a) : fileOrPath.traverse(a);
117
+ }, "callTraverse");
118
+ let programPath;
119
+ const res = {
120
+ flattened: 0,
121
+ optimized: 0,
122
+ modified: 0,
123
+ found: 0
124
+ };
125
+ callTraverse({
126
+ Program: {
127
+ enter(path) {
128
+ programPath = path;
129
+ }
130
+ },
131
+ JSXElement(traversePath) {
132
+ var _a, _b, _c, _d, _e;
133
+ const node = traversePath.node.openingElement;
134
+ const ogAttributes = node.attributes;
135
+ const componentName = findComponentName(traversePath.scope);
136
+ const closingElement = traversePath.node.closingElement;
137
+ if (t.isJSXMemberExpression(closingElement == null ? void 0 : closingElement.name) || !t.isJSXIdentifier(node.name)) {
138
+ return;
139
+ }
140
+ const binding = traversePath.scope.getBinding(node.name.name);
141
+ if (binding) {
142
+ if (!t.isImportDeclaration(binding.path.parent)) {
143
+ return;
144
+ }
145
+ const source = binding.path.parent.source;
146
+ if (!props.components.includes(source.value) && !isInternalImport(source.value)) {
147
+ return;
148
+ }
149
+ if (!validComponents[binding.identifier.name]) {
150
+ return;
151
+ }
152
+ }
153
+ const component = validComponents[node.name.name];
154
+ if (!component || !component.staticConfig) {
155
+ return;
156
+ }
157
+ const originalNodeName = node.name.name;
158
+ res.found++;
159
+ if (shouldPrintDebug) {
160
+ console.log(`
161
+ <${originalNodeName} />`);
162
+ }
163
+ const filePath = sourcePath.replace(process.cwd(), ".");
164
+ const lineNumbers = node.loc ? node.loc.start.line + (node.loc.start.line !== node.loc.end.line ? `-${node.loc.end.line}` : "") : "";
165
+ if (shouldAddDebugProp && !disableDebugAttr) {
166
+ const preName = componentName ? `${componentName}.` : "";
167
+ res.modified++;
168
+ node.attributes.unshift(t.jsxAttribute(t.jsxIdentifier("data-is"), t.stringLiteral(`${preName}${node.name.name}@${filePath.replace("./", "")}:${lineNumbers}`)));
169
+ }
170
+ const shouldLog = !hasLogged;
171
+ if (shouldLog) {
172
+ const prefix = " |";
173
+ console.log(prefixLogs || prefix, " total \xB7 optimized \xB7 flattened ");
174
+ hasLogged = true;
175
+ }
176
+ if (disableExtraction) {
177
+ return;
178
+ }
179
+ const { staticConfig } = component;
180
+ const isTextView = staticConfig.isText || false;
181
+ const validStyles = (_a = staticConfig == null ? void 0 : staticConfig.validStyles) != null ? _a : {};
182
+ function isValidStyleKey(name) {
183
+ var _a2;
184
+ return !!(!!validStyles[name] || !!pseudos[name] || ((_a2 = staticConfig.variants) == null ? void 0 : _a2[name]) || tamaguiConfig.shorthands[name] || (name[0] === "$" ? !!mediaQueryConfig[name.slice(1)] : false));
185
+ }
186
+ __name(isValidStyleKey, "isValidStyleKey");
187
+ let tagName = (_c = (_b = staticConfig.defaultProps) == null ? void 0 : _b.tag) != null ? _c : isTextView ? "span" : "div";
188
+ traversePath.get("openingElement").get("attributes").forEach((path) => {
189
+ const attr = path.node;
190
+ if (t.isJSXSpreadAttribute(attr))
191
+ return;
192
+ if (attr.name.name !== "tag")
193
+ return;
194
+ const val = attr.value;
195
+ if (!t.isStringLiteral(val))
196
+ return;
197
+ tagName = val.value;
198
+ });
199
+ const flatNode = getFlattenedNode({ isTextView, tag: tagName });
200
+ const inlineProps = /* @__PURE__ */ new Set([
201
+ ...props.inlineProps || [],
202
+ ...staticConfig.inlineProps || []
203
+ ]);
204
+ const deoptProps = /* @__PURE__ */ new Set([
205
+ ...props.deoptProps || [],
206
+ ...staticConfig.deoptProps || []
207
+ ]);
208
+ const staticNamespace = getStaticBindingsForScope(traversePath.scope, importsWhitelist, sourcePath, bindingCache, shouldPrintDebug);
209
+ const attemptEval = !evaluateVars ? evaluateAstNode : createEvaluator({
210
+ tamaguiConfig,
211
+ staticNamespace,
212
+ sourcePath,
213
+ traversePath,
214
+ shouldPrintDebug
215
+ });
216
+ const attemptEvalSafe = createSafeEvaluator(attemptEval);
217
+ if (shouldPrintDebug) {
218
+ console.log(" staticNamespace", Object.keys(staticNamespace).join(", "));
219
+ }
220
+ const flattenedAttrs = [];
221
+ traversePath.get("openingElement").get("attributes").forEach((path) => {
222
+ const attr = path.node;
223
+ if (!t.isJSXSpreadAttribute(attr)) {
224
+ flattenedAttrs.push(attr);
225
+ return;
226
+ }
227
+ let arg;
228
+ try {
229
+ arg = attemptEval(attr.argument);
230
+ } catch (e) {
231
+ if (shouldPrintDebug) {
232
+ console.log(" couldnt parse spread", e.message);
233
+ }
234
+ flattenedAttrs.push(attr);
235
+ return;
236
+ }
237
+ if (arg !== void 0) {
238
+ try {
239
+ if (typeof arg !== "object" || arg == null) {
240
+ if (shouldPrintDebug) {
241
+ console.log(" non object or null arg", arg);
242
+ }
243
+ flattenedAttrs.push(attr);
244
+ } else {
245
+ for (const k in arg) {
246
+ const value = arg[k];
247
+ if (!value && typeof value === "object") {
248
+ console.log("shouldnt we handle this?", k, value, arg);
249
+ continue;
250
+ }
251
+ flattenedAttrs.push(t.jsxAttribute(t.jsxIdentifier(k), t.jsxExpressionContainer(literalToAst(value))));
252
+ }
253
+ }
254
+ } catch (err) {
255
+ console.warn("cant parse spread, caught err", err);
256
+ couldntParse = true;
257
+ }
258
+ }
259
+ });
260
+ if (couldntParse) {
261
+ return;
262
+ }
263
+ node.attributes = flattenedAttrs;
264
+ if (staticConfig.defaultProps) {
265
+ for (const key in staticConfig.defaultProps) {
266
+ if (isValidStyleKey(key)) {
267
+ continue;
268
+ }
269
+ const serialize = require("babel-literal-to-ast");
270
+ const val = staticConfig.defaultProps[key];
271
+ try {
272
+ const serializedDefaultProp = serialize(val);
273
+ node.attributes.unshift(t.jsxAttribute(t.jsxIdentifier(key), typeof val === "string" ? t.stringLiteral(val) : t.jsxExpressionContainer(serializedDefaultProp)));
274
+ } catch (err) {
275
+ console.warn(`\u26A0\uFE0F Error evaluating default prop for component ${node.name.name}, prop ${key}
276
+ error: ${err}
277
+ value:`, val, "\n defaultProps:", staticConfig.defaultProps);
278
+ }
279
+ }
280
+ }
281
+ let attrs = [];
282
+ let shouldDeopt = false;
283
+ let inlinePropCount = 0;
284
+ let hasSetOptimized = false;
285
+ attrs = traversePath.get("openingElement").get("attributes").flatMap((path) => {
286
+ try {
287
+ const res2 = evaluateAttribute(path);
288
+ if (!res2) {
289
+ path.remove();
290
+ }
291
+ return res2;
292
+ } catch (err) {
293
+ if (shouldPrintDebug) {
294
+ console.log("Error extracting attribute", err.message, err.stack);
295
+ console.log("node", path.node);
296
+ }
297
+ return {
298
+ type: "attr",
299
+ value: path.node
300
+ };
301
+ }
302
+ }).flat(4).filter(isPresent);
303
+ if (shouldPrintDebug) {
304
+ console.log(" - attrs (before):\n", logLines(attrs.map(attrStr).join(", ")));
305
+ }
306
+ function evaluateAttribute(path) {
307
+ const attribute = path.node;
308
+ const attr = { type: "attr", value: attribute };
309
+ if (t.isJSXSpreadAttribute(attribute)) {
310
+ const arg = attribute.argument;
311
+ const conditional = t.isConditionalExpression(arg) ? [arg.test, arg.consequent, arg.alternate] : t.isLogicalExpression(arg) && arg.operator === "&&" ? [arg.left, arg.right, null] : null;
312
+ if (conditional) {
313
+ const [test, alt, cons] = conditional;
314
+ if (!test)
315
+ throw new Error(`no test`);
316
+ if ([alt, cons].some((side) => side && !isExtractable(side))) {
317
+ if (shouldPrintDebug) {
318
+ console.log("not extractable", alt, cons);
319
+ }
320
+ return attr;
321
+ }
322
+ return [
323
+ ...createTernariesFromObjectProperties(test, alt) || [],
324
+ ...cons && createTernariesFromObjectProperties(t.unaryExpression("!", test), cons) || []
325
+ ].map((ternary) => ({
326
+ type: "ternary",
327
+ value: ternary
328
+ }));
329
+ }
330
+ }
331
+ if (t.isJSXSpreadAttribute(attribute) || !attribute.name || typeof attribute.name.name !== "string") {
332
+ if (shouldPrintDebug) {
333
+ console.log(" ! inlining, spread attr");
334
+ }
335
+ inlinePropCount++;
336
+ return attr;
337
+ }
338
+ const name = attribute.name.name;
339
+ if (excludeProps == null ? void 0 : excludeProps.has(name)) {
340
+ if (shouldPrintDebug) {
341
+ console.log(" excluding prop", name);
342
+ }
343
+ return null;
344
+ }
345
+ if (inlineProps.has(name)) {
346
+ inlinePropCount++;
347
+ if (shouldPrintDebug) {
348
+ console.log(" ! inlining, inline prop", name);
349
+ }
350
+ return attr;
351
+ }
352
+ if (deoptProps.has(name)) {
353
+ shouldDeopt = true;
354
+ inlinePropCount++;
355
+ if (shouldPrintDebug) {
356
+ console.log(" ! inlining, deopted prop", name);
357
+ }
358
+ return attr;
359
+ }
360
+ if (UNTOUCHED_PROPS[name]) {
361
+ return attr;
362
+ }
363
+ if (name.startsWith("data-")) {
364
+ return attr;
365
+ }
366
+ if (name[0] === "$" && t.isJSXExpressionContainer(attribute == null ? void 0 : attribute.value)) {
367
+ if (disableExtractInlineMedia) {
368
+ return attr;
369
+ }
370
+ const shortname = name.slice(1);
371
+ if (mediaQueryConfig[shortname]) {
372
+ const expression = attribute.value.expression;
373
+ if (!t.isJSXEmptyExpression(expression)) {
374
+ const ternaries2 = createTernariesFromObjectProperties(t.stringLiteral(shortname), expression, {
375
+ inlineMediaQuery: shortname
376
+ });
377
+ if (ternaries2) {
378
+ return ternaries2.map((value2) => ({
379
+ type: "ternary",
380
+ value: value2
381
+ }));
382
+ }
383
+ }
384
+ }
385
+ }
386
+ const [value, valuePath] = (() => {
387
+ if (t.isJSXExpressionContainer(attribute == null ? void 0 : attribute.value)) {
388
+ return [attribute.value.expression, path.get("value")];
389
+ } else {
390
+ return [attribute.value, path.get("value")];
391
+ }
392
+ })();
393
+ const remove = /* @__PURE__ */ __name(() => {
394
+ Array.isArray(valuePath) ? valuePath.map((p) => p.remove()) : valuePath.remove();
395
+ }, "remove");
396
+ if (name === "ref") {
397
+ if (shouldPrintDebug) {
398
+ console.log(" ! inlining, ref", name);
399
+ }
400
+ inlinePropCount++;
401
+ return attr;
402
+ }
403
+ if (name === "tag") {
404
+ return {
405
+ type: "attr",
406
+ value: path.node
407
+ };
408
+ }
409
+ if (disableExtractVariables) {
410
+ if (value) {
411
+ if (value.type === "StringLiteral" && value.value[0] === "$") {
412
+ if (shouldPrintDebug) {
413
+ console.log(` ! inlining, native disable extract: ${name} =`, value.value);
414
+ }
415
+ inlinePropCount++;
416
+ return attr;
417
+ }
418
+ }
419
+ }
420
+ const styleValue = attemptEvalSafe(value);
421
+ if (!isValidStyleKey(name)) {
422
+ let keys = [name];
423
+ let out = null;
424
+ if (staticConfig.propMapper) {
425
+ out = staticConfig.propMapper(name, styleValue, defaultTheme, staticConfig.defaultProps, staticConfig);
426
+ if (out) {
427
+ out = rnw.createDOMProps(isTextView ? "span" : "div", out);
428
+ delete out.className;
429
+ keys = Object.keys(out);
430
+ }
431
+ }
432
+ const attributes = keys.map((key) => {
433
+ const val = out[key];
434
+ if (!isValidStyleKey(key)) {
435
+ if (validHTMLAttributes[key]) {
436
+ return {
437
+ type: "attr",
438
+ value: t.jsxAttribute(t.jsxIdentifier(key), t.jsxExpressionContainer(literalToAst(val)))
439
+ };
440
+ }
441
+ if (shouldPrintDebug) {
442
+ console.log(" ! inlining, non-static", key);
443
+ }
444
+ inlinePropCount++;
445
+ }
446
+ return {
447
+ type: "style",
448
+ value: { [name]: styleValue },
449
+ name,
450
+ attr: path.node
451
+ };
452
+ });
453
+ if (inlinePropCount) {
454
+ return attr;
455
+ }
456
+ return attributes;
457
+ }
458
+ if (styleValue !== FAILED_EVAL) {
459
+ if (shouldPrintDebug) {
460
+ console.log(` style: ${name} =`, styleValue);
461
+ }
462
+ if (!(name in staticConfig.defaultProps)) {
463
+ if (!hasSetOptimized) {
464
+ res.optimized++;
465
+ hasSetOptimized = true;
466
+ }
467
+ }
468
+ return {
469
+ type: "style",
470
+ value: { [name]: styleValue },
471
+ name,
472
+ attr: path.node
473
+ };
474
+ }
475
+ if (t.isBinaryExpression(value)) {
476
+ if (shouldPrintDebug) {
477
+ console.log(` binary expression ${name} = `, value);
478
+ }
479
+ const { operator, left, right } = value;
480
+ const lVal = attemptEvalSafe(left);
481
+ const rVal = attemptEvalSafe(right);
482
+ if (shouldPrintDebug) {
483
+ console.log(` evalBinaryExpression lVal ${String(lVal)}, rVal ${String(rVal)}`);
484
+ }
485
+ if (lVal !== FAILED_EVAL && t.isConditionalExpression(right)) {
486
+ const ternary = addBinaryConditional(operator, left, right);
487
+ if (ternary)
488
+ return ternary;
489
+ }
490
+ if (rVal !== FAILED_EVAL && t.isConditionalExpression(left)) {
491
+ const ternary = addBinaryConditional(operator, right, left);
492
+ if (ternary)
493
+ return ternary;
494
+ }
495
+ if (shouldPrintDebug) {
496
+ console.log(` evalBinaryExpression cant extract`);
497
+ }
498
+ inlinePropCount++;
499
+ return attr;
500
+ }
501
+ const staticConditional = getStaticConditional(value);
502
+ if (staticConditional) {
503
+ if (shouldPrintDebug) {
504
+ console.log(` static conditional ${name} = `, value);
505
+ }
506
+ return { type: "ternary", value: staticConditional };
507
+ }
508
+ const staticLogical = getStaticLogical(value);
509
+ if (staticLogical) {
510
+ if (shouldPrintDebug) {
511
+ console.log(` static ternary ${name} = `, value);
512
+ }
513
+ return { type: "ternary", value: staticLogical };
514
+ }
515
+ if (shouldPrintDebug) {
516
+ console.log(" ! inline prop via no match", name, value.type);
517
+ }
518
+ inlinePropCount++;
519
+ if (shouldPrintDebug) {
520
+ console.log(` inlining ${name} = `, value);
521
+ }
522
+ return attr;
523
+ function addBinaryConditional(operator, staticExpr, cond) {
524
+ if (getStaticConditional(cond)) {
525
+ const alt = attemptEval(t.binaryExpression(operator, staticExpr, cond.alternate));
526
+ const cons = attemptEval(t.binaryExpression(operator, staticExpr, cond.consequent));
527
+ if (shouldPrintDebug) {
528
+ console.log(" binaryConditional", cond.test, cons, alt);
529
+ }
530
+ return {
531
+ type: "ternary",
532
+ value: {
533
+ test: cond.test,
534
+ remove,
535
+ alternate: { [name]: alt },
536
+ consequent: { [name]: cons }
537
+ }
538
+ };
539
+ }
540
+ return null;
541
+ }
542
+ __name(addBinaryConditional, "addBinaryConditional");
543
+ function getStaticConditional(value2) {
544
+ if (t.isConditionalExpression(value2)) {
545
+ try {
546
+ if (shouldPrintDebug) {
547
+ console.log("attempt", value2.alternate, value2.consequent);
548
+ }
549
+ const aVal = attemptEval(value2.alternate);
550
+ const cVal = attemptEval(value2.consequent);
551
+ if (shouldPrintDebug) {
552
+ const type = value2.test.type;
553
+ console.log(" static ternary", type, cVal, aVal);
554
+ }
555
+ return {
556
+ test: value2.test,
557
+ remove,
558
+ consequent: { [name]: cVal },
559
+ alternate: { [name]: aVal }
560
+ };
561
+ } catch (err) {
562
+ if (shouldPrintDebug) {
563
+ console.log(" cant eval ternary", err.message);
564
+ }
565
+ }
566
+ }
567
+ return null;
568
+ }
569
+ __name(getStaticConditional, "getStaticConditional");
570
+ function getStaticLogical(value2) {
571
+ if (t.isLogicalExpression(value2)) {
572
+ if (value2.operator === "&&") {
573
+ try {
574
+ const val = attemptEval(value2.right);
575
+ if (shouldPrintDebug) {
576
+ console.log(" staticLogical", value2.left, name, val);
577
+ }
578
+ return {
579
+ test: value2.left,
580
+ remove,
581
+ consequent: { [name]: val },
582
+ alternate: null
583
+ };
584
+ } catch (err) {
585
+ if (shouldPrintDebug) {
586
+ console.log(" cant static eval logical", err);
587
+ }
588
+ }
589
+ }
590
+ }
591
+ return null;
592
+ }
593
+ __name(getStaticLogical, "getStaticLogical");
594
+ }
595
+ __name(evaluateAttribute, "evaluateAttribute");
596
+ function isExtractable(obj) {
597
+ return t.isObjectExpression(obj) && obj.properties.every((prop) => {
598
+ if (!t.isObjectProperty(prop)) {
599
+ console.log("not object prop", prop);
600
+ return false;
601
+ }
602
+ const propName = prop.key["name"];
603
+ if (!isValidStyleKey(propName) && propName !== "tag") {
604
+ if (shouldPrintDebug) {
605
+ console.log(" not a valid style prop!", propName);
606
+ }
607
+ return false;
608
+ }
609
+ return true;
610
+ });
611
+ }
612
+ __name(isExtractable, "isExtractable");
613
+ function createTernariesFromObjectProperties(test, side, ternaryPartial = {}) {
614
+ if (!side) {
615
+ return null;
616
+ }
617
+ if (!isExtractable(side)) {
618
+ throw new Error("not extractable");
619
+ }
620
+ return side.properties.flatMap((property) => {
621
+ if (!t.isObjectProperty(property)) {
622
+ throw new Error("expected object property");
623
+ }
624
+ if (t.isIdentifier(property.key)) {
625
+ const key = property.key.name;
626
+ const mediaQueryKey = key.slice(1);
627
+ const isMediaQuery = key[0] === "$" && mediaQueryConfig[mediaQueryKey];
628
+ if (isMediaQuery) {
629
+ if (t.isExpression(property.value)) {
630
+ const ternaries2 = createTernariesFromObjectProperties(t.stringLiteral(mediaQueryKey), property.value, {
631
+ inlineMediaQuery: mediaQueryKey
632
+ });
633
+ if (ternaries2) {
634
+ return ternaries2.map((value) => ({
635
+ ...ternaryPartial,
636
+ ...value,
637
+ test: t.logicalExpression("&&", value.test, test)
638
+ }));
639
+ } else {
640
+ console.log("\u26A0\uFE0F no ternaries?", property);
641
+ }
642
+ } else {
643
+ console.log("\u26A0\uFE0F not expression", property);
644
+ }
645
+ }
646
+ }
647
+ if (t.isConditionalExpression(property.value)) {
648
+ const [truthy, falsy] = [
649
+ t.objectExpression([t.objectProperty(property.key, property.value.consequent)]),
650
+ t.objectExpression([t.objectProperty(property.key, property.value.alternate)])
651
+ ].map((x) => attemptEval(x));
652
+ return [
653
+ createTernary({
654
+ remove() {
655
+ },
656
+ ...ternaryPartial,
657
+ test: t.logicalExpression("&&", test, property.value.test),
658
+ consequent: truthy,
659
+ alternate: null
660
+ }),
661
+ createTernary({
662
+ ...ternaryPartial,
663
+ test: t.logicalExpression("&&", test, t.unaryExpression("!", property.value.test)),
664
+ consequent: falsy,
665
+ alternate: null,
666
+ remove() {
667
+ }
668
+ })
669
+ ];
670
+ }
671
+ const obj = t.objectExpression([t.objectProperty(property.key, property.value)]);
672
+ const consequent = attemptEval(obj);
673
+ return createTernary({
674
+ remove() {
675
+ },
676
+ ...ternaryPartial,
677
+ test,
678
+ consequent,
679
+ alternate: null
680
+ });
681
+ });
682
+ }
683
+ __name(createTernariesFromObjectProperties, "createTernariesFromObjectProperties");
684
+ node.attributes = attrs.filter(isAttr).map((x) => x.value);
685
+ if (couldntParse || shouldDeopt) {
686
+ if (shouldPrintDebug) {
687
+ console.log(` avoid optimizing:`, { couldntParse, shouldDeopt });
688
+ }
689
+ node.attributes = ogAttributes;
690
+ return;
691
+ }
692
+ const parentFn = findTopmostFunction(traversePath);
693
+ if (parentFn) {
694
+ modifiedComponents.add(parentFn);
695
+ }
696
+ let ternaries = [];
697
+ attrs = attrs.reduce((out, cur) => {
698
+ const next = attrs[attrs.indexOf(cur) + 1];
699
+ if (cur.type === "ternary") {
700
+ ternaries.push(cur.value);
701
+ }
702
+ if ((!next || next.type !== "ternary") && ternaries.length) {
703
+ const normalized = normalizeTernaries(ternaries).map(({ alternate, consequent, ...rest }) => {
704
+ return {
705
+ type: "ternary",
706
+ value: {
707
+ ...rest,
708
+ alternate: alternate || null,
709
+ consequent: consequent || null
710
+ }
711
+ };
712
+ });
713
+ try {
714
+ return [...out, ...normalized];
715
+ } finally {
716
+ if (shouldPrintDebug) {
717
+ console.log(` normalizeTernaries (${ternaries.length} => ${normalized.length})`);
718
+ }
719
+ ternaries = [];
720
+ }
721
+ }
722
+ if (cur.type === "ternary") {
723
+ return out;
724
+ }
725
+ out.push(cur);
726
+ return out;
727
+ }, []).flat();
728
+ const completeStaticProps = {
729
+ ...Object.keys(attrs).reduce((acc, index) => {
730
+ const cur = attrs[index];
731
+ if (cur.type === "style") {
732
+ Object.assign(acc, cur.value);
733
+ }
734
+ if (cur.type === "attr") {
735
+ if (t.isJSXSpreadAttribute(cur.value)) {
736
+ return acc;
737
+ }
738
+ if (!t.isJSXIdentifier(cur.value.name)) {
739
+ return acc;
740
+ }
741
+ const key = cur.value.name.name;
742
+ const value = attemptEvalSafe(cur.value.value || t.booleanLiteral(true));
743
+ if (value === FAILED_EVAL) {
744
+ return acc;
745
+ }
746
+ acc[key] = value;
747
+ }
748
+ return acc;
749
+ }, {})
750
+ };
751
+ const hasSpread = node.attributes.some((x) => t.isJSXSpreadAttribute(x));
752
+ const hasOnlyStringChildren = !hasSpread && (node.selfClosing || traversePath.node.children && traversePath.node.children.every((x) => x.type === "JSXText"));
753
+ const shouldFlatten = !shouldDeopt && inlinePropCount === 0 && !hasSpread && staticConfig.neverFlatten !== true && (staticConfig.neverFlatten === "jsx" ? hasOnlyStringChildren : true);
754
+ if (shouldFlatten && staticConfig.defaultProps) {
755
+ const defaultStyleAttrs = Object.keys(staticConfig.defaultProps).flatMap((key) => {
756
+ if (!isValidStyleKey(key)) {
757
+ return;
758
+ }
759
+ try {
760
+ const serialize = require("babel-literal-to-ast");
761
+ const val = staticConfig.defaultProps[key];
762
+ const value = serialize(val);
763
+ const name = tamaguiConfig.shorthands[key] || key;
764
+ return {
765
+ type: "style",
766
+ name,
767
+ value
768
+ };
769
+ } catch (err) {
770
+ console.warn(`\u26A0\uFE0F Error evaluating default style for component, prop ${key}
771
+ error: ${err}`);
772
+ shouldDeopt = true;
773
+ }
774
+ });
775
+ if (defaultStyleAttrs.length) {
776
+ attrs = [...defaultStyleAttrs, ...attrs];
777
+ }
778
+ }
779
+ if (shouldDeopt) {
780
+ node.attributes = ogAttributes;
781
+ return;
782
+ }
783
+ const ensureOverridden = {};
784
+ if (!shouldFlatten) {
785
+ for (const cur of attrs) {
786
+ if (cur.type === "style") {
787
+ for (const key in cur.value) {
788
+ const shouldEnsureOverridden = !!((_d = staticConfig.ensureOverriddenProp) == null ? void 0 : _d[key]);
789
+ const isSetInAttrsAlready = attrs.some((x) => x.type === "attr" && x.value.type === "JSXAttribute" && x.value.name.name === key);
790
+ if (!isSetInAttrsAlready) {
791
+ const isVariant = !!((_e = staticConfig.variants) == null ? void 0 : _e[cur.name || ""]);
792
+ if (isVariant || shouldEnsureOverridden) {
793
+ ensureOverridden[key] = true;
794
+ }
795
+ }
796
+ }
797
+ }
798
+ }
799
+ }
800
+ if (shouldPrintDebug) {
801
+ console.log(" - attrs (flattened): \n", logLines(attrs.map(attrStr).join(", ")));
802
+ console.log(" - ensureOverriden:", Object.keys(ensureOverridden).join(", "));
803
+ }
804
+ attrs = attrs.reduce((acc, cur) => {
805
+ if (!cur) {
806
+ return acc;
807
+ }
808
+ if (shouldFlatten && cur.type === "attr" && !t.isJSXSpreadAttribute(cur.value) && cur.value.name.name === "tag") {
809
+ return acc;
810
+ }
811
+ if (cur.type !== "style") {
812
+ acc.push(cur);
813
+ return acc;
814
+ }
815
+ let key = Object.keys(cur.value)[0];
816
+ const value = cur.value[key];
817
+ const fullKey = tamaguiConfig.shorthands[key];
818
+ if (fullKey) {
819
+ cur.value = { [fullKey]: value };
820
+ key = fullKey;
821
+ }
822
+ if (disableExtractVariables) {
823
+ if (value[0] === "$") {
824
+ if (shouldPrintDebug) {
825
+ console.log(` keeping variable inline: ${key} =`, value);
826
+ }
827
+ acc.push({
828
+ type: "attr",
829
+ value: t.jsxAttribute(t.jsxIdentifier(key), t.jsxExpressionContainer(t.stringLiteral(value)))
830
+ });
831
+ return acc;
832
+ }
833
+ }
834
+ acc.push(cur);
835
+ return acc;
836
+ }, []);
837
+ if (shouldPrintDebug) {
838
+ console.log(" - attrs (expanded): \n", logLines(attrs.map(attrStr).join(", ")));
839
+ }
840
+ let prev = null;
841
+ function mergeStyles(prev2, next) {
842
+ for (const key in next) {
843
+ if (pseudos[key]) {
844
+ prev2[key] = prev2[key] || {};
845
+ Object.assign(prev2[key], next[key]);
846
+ } else {
847
+ prev2[key] = next[key];
848
+ }
849
+ }
850
+ }
851
+ __name(mergeStyles, "mergeStyles");
852
+ attrs = attrs.reduce((acc, cur) => {
853
+ if (cur.type === "style") {
854
+ const key = Object.keys(cur.value)[0];
855
+ const value = cur.value[key];
856
+ const shouldKeepOriginalAttr = !shouldFlatten && !validStyles[key] && !pseudos[key] && !key.startsWith("data-");
857
+ if (shouldKeepOriginalAttr) {
858
+ if (shouldPrintDebug) {
859
+ console.log(" - keeping as non-style", key);
860
+ }
861
+ prev = cur;
862
+ acc.push({
863
+ type: "attr",
864
+ value: t.jsxAttribute(t.jsxIdentifier(key), t.jsxExpressionContainer(typeof value === "string" ? t.stringLiteral(value) : literalToAst(value)))
865
+ });
866
+ acc.push(cur);
867
+ return acc;
868
+ }
869
+ if (ensureOverridden[key]) {
870
+ acc.push({
871
+ type: "attr",
872
+ value: cur.attr || t.jsxAttribute(t.jsxIdentifier(key), t.jsxExpressionContainer(t.nullLiteral()))
873
+ });
874
+ }
875
+ if ((prev == null ? void 0 : prev.type) === "style") {
876
+ mergeStyles(prev.value, cur.value);
877
+ return acc;
878
+ }
879
+ }
880
+ prev = cur;
881
+ acc.push(cur);
882
+ return acc;
883
+ }, []);
884
+ if (shouldPrintDebug) {
885
+ console.log(" - attrs (combined \u{1F500}): \n", logLines(attrs.map(attrStr).join(", ")));
886
+ }
887
+ const getStyles = /* @__PURE__ */ __name((props2, debugName = "") => {
888
+ if (!props2)
889
+ return;
890
+ if (!Object.keys(props2).length)
891
+ return;
892
+ if (excludeProps && !!excludeProps.size) {
893
+ for (const key in props2) {
894
+ if (excludeProps.has(key)) {
895
+ delete props2[key];
896
+ }
897
+ }
898
+ }
899
+ const out = getSplitStyles(props2, staticConfig, defaultTheme, {
900
+ noClassNames: true
901
+ });
902
+ const outStyle = {
903
+ ...out.style,
904
+ ...out.pseudos
905
+ };
906
+ if (shouldPrintDebug === "verbose") {
907
+ console.log(` getStyles ${debugName} (props):
908
+ `, logLines(objToStr(props2)));
909
+ console.log(` getStyles ${debugName} (out.viewProps):
910
+ `, logLines(objToStr(out.viewProps)));
911
+ console.log(` getStyles ${debugName} (out.style):
912
+ `, logLines(objToStr(outStyle || {}), true));
913
+ }
914
+ for (const key in outStyle) {
915
+ if (staticConfig.validStyles) {
916
+ if (!staticConfig.validStyles[key] && !pseudos[key]) {
917
+ delete outStyle[key];
918
+ }
919
+ }
920
+ }
921
+ return outStyle;
922
+ }, "getStyles");
923
+ const completeStylesProcessed = getStyles({
924
+ ...staticConfig.defaultProps,
925
+ ...completeStaticProps
926
+ }, "completeStylesProcessed");
927
+ if (!completeStylesProcessed) {
928
+ throw new Error(`Impossible, no styles`);
929
+ }
930
+ const stylesToAddToInitialGroup = shouldFlatten ? difference(Object.keys(completeStylesProcessed), Object.keys(completeStaticProps)) : [];
931
+ if (stylesToAddToInitialGroup.length) {
932
+ const toAdd = pick(completeStylesProcessed, ...stylesToAddToInitialGroup);
933
+ const firstGroup = attrs.find((x) => x.type === "style");
934
+ if (shouldPrintDebug) {
935
+ console.log(" toAdd", objToStr(toAdd));
936
+ }
937
+ if (!firstGroup) {
938
+ attrs.unshift({ type: "style", value: toAdd });
939
+ } else {
940
+ Object.assign(firstGroup.value, toAdd);
941
+ }
942
+ }
943
+ if (shouldPrintDebug) {
944
+ console.log(" -- stylesToAddToInitialGroup", stylesToAddToInitialGroup.join(", "), { shouldFlatten });
945
+ console.log(" -- completeStaticProps:\n", logLines(objToStr(completeStaticProps)));
946
+ console.log(" -- completeStylesProcessed:\n", logLines(objToStr(completeStylesProcessed)));
947
+ }
948
+ let getStyleError = null;
949
+ for (const attr of attrs) {
950
+ try {
951
+ if (shouldPrintDebug)
952
+ console.log(" *", attrStr(attr));
953
+ switch (attr.type) {
954
+ case "ternary":
955
+ const a = getStyles(attr.value.alternate, "ternary.alternate");
956
+ const c = getStyles(attr.value.consequent, "ternary.consequent");
957
+ if (a)
958
+ attr.value.alternate = a;
959
+ if (c)
960
+ attr.value.consequent = c;
961
+ if (shouldPrintDebug)
962
+ console.log(" => tern ", attrStr(attr));
963
+ continue;
964
+ case "style":
965
+ const styles = getStyles(attr.value, "style");
966
+ if (styles) {
967
+ attr.value = Object.fromEntries(Object.keys(styles).map((k) => [k, completeStylesProcessed[k]]));
968
+ } else {
969
+ console.warn("?????????");
970
+ }
971
+ continue;
972
+ }
973
+ } catch (err) {
974
+ getStyleError = err;
975
+ }
976
+ }
977
+ if (getStyleError) {
978
+ console.log(" \u26A0\uFE0F postprocessing error, deopt", getStyleError);
979
+ node.attributes = ogAttributes;
980
+ return node;
981
+ }
982
+ const existingStyleKeys = /* @__PURE__ */ new Set();
983
+ for (let i = attrs.length - 1; i >= 0; i--) {
984
+ const attr = attrs[i];
985
+ if (attr.type === "style") {
986
+ for (const key in attr.value) {
987
+ if (existingStyleKeys.has(key)) {
988
+ delete attr.value[key];
989
+ } else {
990
+ existingStyleKeys.add(key);
991
+ }
992
+ }
993
+ }
994
+ }
995
+ if (shouldPrintDebug) {
996
+ console.log(" - attrs (after):\n", logLines(attrs.map(attrStr).join(", ")));
997
+ }
998
+ if (shouldFlatten) {
999
+ if (shouldPrintDebug) {
1000
+ console.log(" [\u2705] flattening", originalNodeName, flatNode);
1001
+ }
1002
+ node.name.name = flatNode;
1003
+ res.flattened++;
1004
+ if (closingElement) {
1005
+ closingElement.name.name = flatNode;
1006
+ }
1007
+ }
1008
+ if (shouldPrintDebug) {
1009
+ console.log(` \u274A\u274A inline props (${inlinePropCount}):`, shouldDeopt ? " deopted" : "", hasSpread ? " has spread" : "", staticConfig.neverFlatten ? "neverFlatten" : "");
1010
+ console.log(" - attrs (end):\n", logLines(attrs.map(attrStr).join(", ")));
1011
+ }
1012
+ onExtractTag({
1013
+ attrs,
1014
+ node,
1015
+ lineNumbers,
1016
+ filePath,
1017
+ attemptEval,
1018
+ jsxPath: traversePath,
1019
+ originalNodeName,
1020
+ isFlattened: shouldFlatten,
1021
+ programPath
1022
+ });
1023
+ }
1024
+ });
1025
+ if (modifiedComponents.size) {
1026
+ const all = Array.from(modifiedComponents);
1027
+ if (shouldPrintDebug) {
1028
+ console.log(" [\u{1FA9D}] hook check", all.length);
1029
+ }
1030
+ for (const comp of all) {
1031
+ removeUnusedHooks(comp, shouldPrintDebug);
1032
+ }
1033
+ }
1034
+ return res;
1035
+ }
1036
+ };
1037
+ }
1038
+ __name(createExtractor, "createExtractor");
1039
+ export {
1040
+ createExtractor
1041
+ };