@teambit/ui 0.0.923 → 0.0.925
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/create-root.js
CHANGED
|
@@ -88,7 +88,7 @@ ${getImportStatements(aspectDefs, 'aspectFilePath', 'Aspect')}
|
|
|
88
88
|
${getImportStatements(defs, 'runtimePath', 'Runtime')}`;
|
|
89
89
|
}
|
|
90
90
|
function getImportStatements(aspectDefs, pathProp, suffix) {
|
|
91
|
-
return aspectDefs.map(aspectDef => `import ${getIdentifier(aspectDef, suffix)} from '${(0, _toolboxPath().toWindowsCompatiblePath)(aspectDef[pathProp])}';`).join('\n');
|
|
91
|
+
return aspectDefs.map(aspectDef => `import ${getIdentifier(aspectDef, suffix, pathProp)} from '${(0, _toolboxPath().toWindowsCompatiblePath)(aspectDef[pathProp])}';`).join('\n');
|
|
92
92
|
}
|
|
93
93
|
function getIdentifiers(aspectDefs, suffix) {
|
|
94
94
|
return aspectDefs.map(aspectDef => `${getIdentifier(aspectDef, suffix)}`);
|
|
@@ -99,14 +99,28 @@ function getIdSetters(defs, suffix) {
|
|
|
99
99
|
return `${getIdentifier(def, suffix)}.id = '${def.getId}';`;
|
|
100
100
|
}).filter(val => !!val);
|
|
101
101
|
}
|
|
102
|
-
function getIdentifier(aspectDef, suffix) {
|
|
102
|
+
function getIdentifier(aspectDef, suffix, pathProp) {
|
|
103
103
|
if (!aspectDef.component && !aspectDef.local) {
|
|
104
104
|
return getCoreIdentifier(aspectDef.aspectPath, suffix);
|
|
105
105
|
}
|
|
106
|
-
return getRegularAspectIdentifier(aspectDef, suffix);
|
|
106
|
+
return getRegularAspectIdentifier(aspectDef, suffix, pathProp);
|
|
107
107
|
}
|
|
108
|
-
function getRegularAspectIdentifier(aspectDef, suffix) {
|
|
109
|
-
|
|
108
|
+
function getRegularAspectIdentifier(aspectDef, suffix, pathProp) {
|
|
109
|
+
const targetName = (0, _lodash().camelCase)(`${(0, _path().parse)(aspectDef.aspectPath).base.replace(/\./, '__').replace('@', '__')}${suffix}`);
|
|
110
|
+
const sourceName = pathProp ? getDefaultOrOnlyExport(aspectDef[pathProp]) : undefined;
|
|
111
|
+
const identifier = sourceName ? `{${sourceName} as ${targetName}}` : targetName;
|
|
112
|
+
return identifier;
|
|
113
|
+
}
|
|
114
|
+
function getDefaultOrOnlyExport(filePath) {
|
|
115
|
+
try {
|
|
116
|
+
// eslint-disable-next-line import/no-dynamic-require, global-require
|
|
117
|
+
const exports = require(filePath);
|
|
118
|
+
if (exports.default) return undefined;
|
|
119
|
+
if (Object.keys(exports).length === 1) return Object.keys(exports)[0];
|
|
120
|
+
} catch (e) {
|
|
121
|
+
// ignore this error, fallback to just using the default export
|
|
122
|
+
}
|
|
123
|
+
return undefined;
|
|
110
124
|
}
|
|
111
125
|
function getCoreIdentifier(path, suffix) {
|
|
112
126
|
return (0, _lodash().camelCase)(`${(0, _path().parse)(path).name.split('.')[0]}${suffix}`);
|
package/dist/create-root.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["createRoot","aspectDefs","rootExtensionName","rootAspect","UIAspect","id","runtime","config","rootId","identifiers","getIdentifiers","idSetters","getIdSetters","stringifiedConfig","toWindowsCompatiblePath","JSON","stringify","replace","createImports","join","defs","filter","def","runtimePath","getImportStatements","pathProp","suffix","map","aspectDef","getIdentifier","getId","undefined","val","component","local","getCoreIdentifier","aspectPath","getRegularAspectIdentifier","camelCase","parse","base","path","name","split"],"sources":["create-root.ts"],"sourcesContent":["import { AspectDefinition } from '@teambit/aspect-loader';\nimport { toWindowsCompatiblePath } from '@teambit/toolbox.path.to-windows-compatible-path';\nimport { camelCase } from 'lodash';\nimport { parse } from 'path';\n\nimport { UIAspect } from './ui.aspect';\n\nexport async function createRoot(\n aspectDefs: AspectDefinition[],\n rootExtensionName?: string,\n rootAspect = UIAspect.id,\n runtime = 'ui',\n config = {}\n) {\n const rootId = rootExtensionName ? `'${rootExtensionName}'` : '';\n const identifiers = getIdentifiers(aspectDefs, 'Aspect');\n\n const idSetters = getIdSetters(aspectDefs, 'Aspect');\n config['teambit.harmony/bit'] = rootExtensionName;\n // Escaping \"'\" in case for example in the config you have something like:\n // description: \"team's scope\"\n const stringifiedConfig = toWindowsCompatiblePath(JSON.stringify(config)).replace(/'/g, \"\\\\'\");\n\n return `\n${createImports(aspectDefs)}\n\nconst isBrowser = typeof window !== \"undefined\";\nconst config = JSON.parse('${stringifiedConfig}');\n${idSetters.join('\\n')}\nexport default function render(...props){\n return Harmony.load([${identifiers.join(', ')}], '${runtime}', config)\n .then((harmony) => {\n return harmony\n .run()\n .then(() => harmony.get('${rootAspect}'))\n .then((rootExtension) => {\n const ssrSetup = !isBrowser && rootExtension.setupSsr;\n const setup = rootExtension.setup;\n const setupFunc = (ssrSetup || setup || function noop(){}).bind(rootExtension);\n\n return (\n Promise.resolve(setupFunc())\n .then(() => rootExtension)\n );\n })\n .then((rootExtension) => {\n if (isBrowser) {\n return rootExtension.render(${rootId}, ...props);\n } else {\n return rootExtension.renderSsr(${rootId}, ...props);\n }\n })\n .catch((err) => {\n throw err;\n });\n });\n}\n\nif (isBrowser) render();\n`;\n}\n\nfunction createImports(aspectDefs: AspectDefinition[]) {\n const defs = aspectDefs.filter((def) => def.runtimePath);\n\n return `import { Harmony } from '@teambit/harmony';\n${getImportStatements(aspectDefs, 'aspectFilePath', 'Aspect')}\n${getImportStatements(defs, 'runtimePath', 'Runtime')}`;\n}\n\nfunction getImportStatements(aspectDefs: AspectDefinition[], pathProp: string, suffix: string): string {\n return aspectDefs\n .map(\n (aspectDef) =>\n `import ${getIdentifier(aspectDef, suffix)} from '${toWindowsCompatiblePath(aspectDef[pathProp])}';`\n )\n .join('\\n');\n}\n\nfunction getIdentifiers(aspectDefs: AspectDefinition[], suffix: string): string[] {\n return aspectDefs.map((aspectDef) => `${getIdentifier(aspectDef, suffix)}`);\n}\n\nfunction getIdSetters(defs: AspectDefinition[], suffix: string) {\n return defs\n .map((def) => {\n if (!def.getId) return undefined;\n return `${getIdentifier(def, suffix)}.id = '${def.getId}';`;\n })\n .filter((val) => !!val);\n}\n\nfunction getIdentifier(aspectDef: AspectDefinition, suffix: string): string {\n if (!aspectDef.component && !aspectDef.local) {\n return getCoreIdentifier(aspectDef.aspectPath, suffix);\n }\n return getRegularAspectIdentifier(aspectDef, suffix);\n}\n\nfunction getRegularAspectIdentifier(aspectDef: AspectDefinition, suffix: string): string {\n
|
|
1
|
+
{"version":3,"names":["createRoot","aspectDefs","rootExtensionName","rootAspect","UIAspect","id","runtime","config","rootId","identifiers","getIdentifiers","idSetters","getIdSetters","stringifiedConfig","toWindowsCompatiblePath","JSON","stringify","replace","createImports","join","defs","filter","def","runtimePath","getImportStatements","pathProp","suffix","map","aspectDef","getIdentifier","getId","undefined","val","component","local","getCoreIdentifier","aspectPath","getRegularAspectIdentifier","targetName","camelCase","parse","base","sourceName","getDefaultOrOnlyExport","identifier","filePath","exports","require","default","Object","keys","length","e","path","name","split"],"sources":["create-root.ts"],"sourcesContent":["import { AspectDefinition } from '@teambit/aspect-loader';\nimport { toWindowsCompatiblePath } from '@teambit/toolbox.path.to-windows-compatible-path';\nimport { camelCase } from 'lodash';\nimport { parse } from 'path';\n\nimport { UIAspect } from './ui.aspect';\n\nexport async function createRoot(\n aspectDefs: AspectDefinition[],\n rootExtensionName?: string,\n rootAspect = UIAspect.id,\n runtime = 'ui',\n config = {}\n) {\n const rootId = rootExtensionName ? `'${rootExtensionName}'` : '';\n const identifiers = getIdentifiers(aspectDefs, 'Aspect');\n\n const idSetters = getIdSetters(aspectDefs, 'Aspect');\n config['teambit.harmony/bit'] = rootExtensionName;\n // Escaping \"'\" in case for example in the config you have something like:\n // description: \"team's scope\"\n const stringifiedConfig = toWindowsCompatiblePath(JSON.stringify(config)).replace(/'/g, \"\\\\'\");\n\n return `\n${createImports(aspectDefs)}\n\nconst isBrowser = typeof window !== \"undefined\";\nconst config = JSON.parse('${stringifiedConfig}');\n${idSetters.join('\\n')}\nexport default function render(...props){\n return Harmony.load([${identifiers.join(', ')}], '${runtime}', config)\n .then((harmony) => {\n return harmony\n .run()\n .then(() => harmony.get('${rootAspect}'))\n .then((rootExtension) => {\n const ssrSetup = !isBrowser && rootExtension.setupSsr;\n const setup = rootExtension.setup;\n const setupFunc = (ssrSetup || setup || function noop(){}).bind(rootExtension);\n\n return (\n Promise.resolve(setupFunc())\n .then(() => rootExtension)\n );\n })\n .then((rootExtension) => {\n if (isBrowser) {\n return rootExtension.render(${rootId}, ...props);\n } else {\n return rootExtension.renderSsr(${rootId}, ...props);\n }\n })\n .catch((err) => {\n throw err;\n });\n });\n}\n\nif (isBrowser) render();\n`;\n}\n\nfunction createImports(aspectDefs: AspectDefinition[]) {\n const defs = aspectDefs.filter((def) => def.runtimePath);\n\n return `import { Harmony } from '@teambit/harmony';\n${getImportStatements(aspectDefs, 'aspectFilePath', 'Aspect')}\n${getImportStatements(defs, 'runtimePath', 'Runtime')}`;\n}\n\nfunction getImportStatements(aspectDefs: AspectDefinition[], pathProp: string, suffix: string): string {\n return aspectDefs\n .map(\n (aspectDef) =>\n `import ${getIdentifier(aspectDef, suffix, pathProp)} from '${toWindowsCompatiblePath(aspectDef[pathProp])}';`\n )\n .join('\\n');\n}\n\nfunction getIdentifiers(aspectDefs: AspectDefinition[], suffix: string): string[] {\n return aspectDefs.map((aspectDef) => `${getIdentifier(aspectDef, suffix)}`);\n}\n\nfunction getIdSetters(defs: AspectDefinition[], suffix: string) {\n return defs\n .map((def) => {\n if (!def.getId) return undefined;\n return `${getIdentifier(def, suffix)}.id = '${def.getId}';`;\n })\n .filter((val) => !!val);\n}\n\nfunction getIdentifier(aspectDef: AspectDefinition, suffix: string, pathProp?: string): string {\n if (!aspectDef.component && !aspectDef.local) {\n return getCoreIdentifier(aspectDef.aspectPath, suffix);\n }\n return getRegularAspectIdentifier(aspectDef, suffix, pathProp);\n}\n\nfunction getRegularAspectIdentifier(aspectDef: AspectDefinition, suffix: string, pathProp?: string): string {\n const targetName = camelCase(`${parse(aspectDef.aspectPath).base.replace(/\\./, '__').replace('@', '__')}${suffix}`);\n const sourceName = pathProp ? getDefaultOrOnlyExport(aspectDef[pathProp]) : undefined;\n const identifier = sourceName ? `{${sourceName} as ${targetName}}` : targetName;\n return identifier;\n}\n\nfunction getDefaultOrOnlyExport(filePath: string): string | undefined {\n try {\n // eslint-disable-next-line import/no-dynamic-require, global-require\n const exports = require(filePath);\n if (exports.default) return undefined;\n if (Object.keys(exports).length === 1) return Object.keys(exports)[0];\n } catch(e) {\n // ignore this error, fallback to just using the default export\n }\n return undefined;\n}\n\nfunction getCoreIdentifier(path: string, suffix: string): string {\n return camelCase(`${parse(path).name.split('.')[0]}${suffix}`);\n}\n"],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.925/dist/ui.composition.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.ui-foundation_ui@0.0.925/dist/ui.docs.mdx';
|
|
3
3
|
|
|
4
4
|
export const compositions = [compositions_0];
|
|
5
5
|
export const overview = [overview_0];
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teambit/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.925",
|
|
4
4
|
"homepage": "https://bit.dev/teambit/ui-foundation/ui",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.ui-foundation",
|
|
8
8
|
"name": "ui",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.925"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"lodash": "4.17.21",
|
|
@@ -50,28 +50,28 @@
|
|
|
50
50
|
"@teambit/base-ui.loaders.loader-ribbon": "1.0.0",
|
|
51
51
|
"@teambit/base-ui.theme.fonts.roboto": "1.0.0",
|
|
52
52
|
"@teambit/design.themes.theme-toggler": "0.1.3",
|
|
53
|
-
"@teambit/aspect-loader": "0.0.
|
|
53
|
+
"@teambit/aspect-loader": "0.0.925",
|
|
54
54
|
"@teambit/toolbox.path.to-windows-compatible-path": "0.0.490",
|
|
55
55
|
"@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.500",
|
|
56
56
|
"@teambit/bit-error": "0.0.402",
|
|
57
|
-
"@teambit/cli": "0.0.
|
|
58
|
-
"@teambit/logger": "0.0.
|
|
57
|
+
"@teambit/cli": "0.0.619",
|
|
58
|
+
"@teambit/logger": "0.0.712",
|
|
59
59
|
"@teambit/ui-foundation.cli.ui-server-console": "0.0.498",
|
|
60
|
-
"@teambit/bundler": "0.0.
|
|
61
|
-
"@teambit/component": "0.0.
|
|
62
|
-
"@teambit/express": "0.0.
|
|
63
|
-
"@teambit/graphql": "0.0.
|
|
60
|
+
"@teambit/bundler": "0.0.925",
|
|
61
|
+
"@teambit/component": "0.0.925",
|
|
62
|
+
"@teambit/express": "0.0.717",
|
|
63
|
+
"@teambit/graphql": "0.0.925",
|
|
64
64
|
"@teambit/toolbox.network.get-port": "0.0.121",
|
|
65
|
-
"@teambit/aspect": "0.0.
|
|
66
|
-
"@teambit/cache": "0.0.
|
|
67
|
-
"@teambit/pubsub": "0.0.
|
|
68
|
-
"@teambit/react-router": "0.0.
|
|
65
|
+
"@teambit/aspect": "0.0.925",
|
|
66
|
+
"@teambit/cache": "0.0.712",
|
|
67
|
+
"@teambit/pubsub": "0.0.925",
|
|
68
|
+
"@teambit/react-router": "0.0.925",
|
|
69
69
|
"@teambit/design.theme.icons-font": "2.0.26",
|
|
70
70
|
"@teambit/design.ui.tooltip": "0.0.361",
|
|
71
71
|
"@teambit/ui-foundation.ui.global-loader": "0.0.497",
|
|
72
72
|
"@teambit/webpack.modules.generate-style-loaders": "0.0.110",
|
|
73
73
|
"@teambit/webpack.modules.style-regexps": "0.0.139",
|
|
74
|
-
"@teambit/webpack": "0.0.
|
|
74
|
+
"@teambit/webpack": "0.0.925"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@types/lodash": "4.14.165",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"peerDependencies": {
|
|
93
93
|
"@apollo/client": "^3.6.0",
|
|
94
94
|
"react-router-dom": "^6.0.0",
|
|
95
|
-
"@teambit/legacy": "1.0.
|
|
95
|
+
"@teambit/legacy": "1.0.400",
|
|
96
96
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
97
97
|
"react": "^16.8.0 || ^17.0.0"
|
|
98
98
|
},
|
|
Binary file
|