@powerlines/plugin-env 0.16.26 → 0.16.28

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.
@@ -5,6 +5,7 @@ let __powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type"
5
5
  let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
6
6
  let __alloy_js_core = require("@alloy-js/core");
7
7
  let __alloy_js_markdown = require("@alloy-js/markdown");
8
+ let __powerlines_plugin_alloy_core_components_spacing = require("@powerlines/plugin-alloy/core/components/spacing");
8
9
  let __powerlines_plugin_alloy_core_contexts_context = require("@powerlines/plugin-alloy/core/contexts/context");
9
10
  let __powerlines_plugin_alloy_markdown_components_markdown_file = require("@powerlines/plugin-alloy/markdown/components/markdown-file");
10
11
  let __powerlines_plugin_alloy_markdown_components_markdown_table = require("@powerlines/plugin-alloy/markdown/components/markdown-table");
@@ -41,15 +42,16 @@ function EnvDocsFile(props) {
41
42
  }
42
43
  }),
43
44
  __alloy_js_core.code`package. These values can be updated in the \`.env\` file in the root of the project.`,
44
- (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
45
+ (0, __alloy_js_core_jsx_runtime.createComponent)(__powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
45
46
  (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_markdown.Heading, {
46
47
  level: 2 + levelOffset,
47
48
  children: "Environment Variables"
48
49
  }),
50
+ (0, __alloy_js_core_jsx_runtime.createComponent)(__powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
49
51
  __alloy_js_core.code`The below list of environment variables are used as configuration parameters to drive the processing of the application. The data contained in these variables are **not** considered sensitive or confidential. Any values provided in these variables will be available in plain text to the public.`,
50
- (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
52
+ (0, __alloy_js_core_jsx_runtime.createComponent)(__powerlines_plugin_alloy_core_components_spacing.Spacing, {}),
51
53
  (0, __alloy_js_core_jsx_runtime.createComponent)(__powerlines_plugin_alloy_markdown_components_markdown_table.MarkdownTable, { get data() {
52
- return reflection?.getProperties().filter((property) => property.getNameAsString() !== "__STORM_INJECTED__").sort((a, b) => a.getNameAsString().localeCompare(b.getNameAsString())).map((reflectionProperty) => {
54
+ return reflection?.getProperties().filter((property) => property.getNameAsString() !== "__POWERLINES_INJECTED__").sort((a, b) => a.getNameAsString().localeCompare(b.getNameAsString())).map((reflectionProperty) => {
53
55
  return {
54
56
  name: reflectionProperty.getNameAsString().trim(),
55
57
  description: (reflectionProperty.getDescription() ?? "").trim(),
@@ -1 +1 @@
1
- {"version":3,"file":"docs.d.cts","names":[],"sources":["../../src/components/docs.tsx"],"sourcesContent":[],"mappings":";;;;;UAkCiB,gBAAA,SAAyB,QAAQ;;;AAAlD;;;;;AAiBA;;cANc;;;;;iBAME,WAAA,QAAmB,mBAAgB,eAAA,CAAA"}
1
+ {"version":3,"file":"docs.d.cts","names":[],"sources":["../../src/components/docs.tsx"],"sourcesContent":[],"mappings":";;;;;UAmCiB,gBAAA,SAAyB,QAAQ;;;AAAlD;;;;;AAiBA;;cANc;;;;;iBAME,WAAA,QAAmB,mBAAgB,eAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"docs.d.mts","names":[],"sources":["../../src/components/docs.tsx"],"sourcesContent":[],"mappings":";;;;;UAkCiB,gBAAA,SAAyB,QAAQ;;;AAAlD;;;;;AAiBA;;cANc;;;;;iBAME,WAAA,QAAmB,mBAAgB,eAAA,CAAA"}
1
+ {"version":3,"file":"docs.d.mts","names":[],"sources":["../../src/components/docs.tsx"],"sourcesContent":[],"mappings":";;;;;UAmCiB,gBAAA,SAAyB,QAAQ;;;AAAlD;;;;;AAiBA;;cANc;;;;;iBAME,WAAA,QAAmB,mBAAgB,eAAA,CAAA"}
@@ -1,9 +1,10 @@
1
1
  import { joinPaths } from "../node_modules/.pnpm/@stryke_path@0.26.6/node_modules/@stryke/path/dist/join-paths.mjs";
2
2
  import { getDocsOutputPath } from "../helpers/docs-helper.mjs";
3
3
  import { stringifyType } from "@powerlines/deepkit/vendor/type";
4
- import { createComponent, createIntrinsic, mergeProps } from "@alloy-js/core/jsx-runtime";
4
+ import { createComponent, mergeProps } from "@alloy-js/core/jsx-runtime";
5
5
  import { Show, code } from "@alloy-js/core";
6
6
  import { Heading, Link } from "@alloy-js/markdown";
7
+ import { Spacing } from "@powerlines/plugin-alloy/core/components/spacing";
7
8
  import { usePowerlines } from "@powerlines/plugin-alloy/core/contexts/context";
8
9
  import { MarkdownFile } from "@powerlines/plugin-alloy/markdown/components/markdown-file";
9
10
  import { MarkdownTable } from "@powerlines/plugin-alloy/markdown/components/markdown-table";
@@ -40,15 +41,16 @@ function EnvDocsFile(props) {
40
41
  }
41
42
  }),
42
43
  code`package. These values can be updated in the \`.env\` file in the root of the project.`,
43
- createIntrinsic("hbr", {}),
44
+ createComponent(Spacing, {}),
44
45
  createComponent(Heading, {
45
46
  level: 2 + levelOffset,
46
47
  children: "Environment Variables"
47
48
  }),
49
+ createComponent(Spacing, {}),
48
50
  code`The below list of environment variables are used as configuration parameters to drive the processing of the application. The data contained in these variables are **not** considered sensitive or confidential. Any values provided in these variables will be available in plain text to the public.`,
49
- createIntrinsic("hbr", {}),
51
+ createComponent(Spacing, {}),
50
52
  createComponent(MarkdownTable, { get data() {
51
- return reflection?.getProperties().filter((property) => property.getNameAsString() !== "__STORM_INJECTED__").sort((a, b) => a.getNameAsString().localeCompare(b.getNameAsString())).map((reflectionProperty) => {
53
+ return reflection?.getProperties().filter((property) => property.getNameAsString() !== "__POWERLINES_INJECTED__").sort((a, b) => a.getNameAsString().localeCompare(b.getNameAsString())).map((reflectionProperty) => {
52
54
  return {
53
55
  name: reflectionProperty.getNameAsString().trim(),
54
56
  description: (reflectionProperty.getDescription() ?? "").trim(),
@@ -1 +1 @@
1
- {"version":3,"file":"docs.mjs","names":["code","Show","Heading","Link","stringifyType","usePowerlines","MarkdownFile","MarkdownTable","joinPaths","getDocsOutputPath","EnvDocsFile","props","levelOffset","reflection","rest","context","_$createComponent","_$mergeProps","path","children","level","when","packageJson","name","href","title","_$createIntrinsic","data","getProperties","filter","property","getNameAsString","sort","a","b","localeCompare","map","reflectionProperty","trim","description","getDescription","type","getType","replaceAll","defaultValue","hasDefault","String","getDefaultValue","includes","required","isValueRequired"],"sources":["../../src/components/docs.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { code, Show } from \"@alloy-js/core\";\nimport { Heading, Link } from \"@alloy-js/markdown\";\nimport {\n ReflectionClass,\n stringifyType\n} from \"@powerlines/deepkit/vendor/type\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport {\n MarkdownFile,\n MarkdownFileProps\n} from \"@powerlines/plugin-alloy/markdown/components/markdown-file\";\nimport { MarkdownTable } from \"@powerlines/plugin-alloy/markdown/components/markdown-table\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { getDocsOutputPath } from \"../helpers/docs-helper\";\nimport { EnvPluginContext } from \"../types/plugin\";\n\nexport interface EnvDocsFileProps extends Partial<MarkdownFileProps> {\n /**\n * The heading level offset to apply to the generated documentation.\n *\n * @remarks\n * This is useful when nesting the documentation within other markdown files.\n *\n * @defaultValue 0\n */\n levelOffset?: number;\n\n reflection: ReflectionClass<any>;\n}\n\n/**\n * Generates the environment configuration markdown documentation for the Powerlines project.\n */\nexport function EnvDocsFile(props: EnvDocsFileProps) {\n const { levelOffset = 0, reflection, ...rest } = props;\n\n const context = usePowerlines<EnvPluginContext>();\n\n return (\n <MarkdownFile\n path={joinPaths(getDocsOutputPath(context), \"env.md\")}\n {...rest}>\n <Heading level={1 + levelOffset}>Environment Configuration</Heading>\n {code`Below is a list of environment variables used by the`}\n <Show when={!!context.packageJson.name}>\n <Link\n href={`https://www.npmjs.com/package/${context.packageJson.name}`}\n title={context.packageJson.name!}\n />\n </Show>\n {code`package. These values can be updated in the \\`.env\\` file in the root of the project.`}\n <hbr />\n <Heading level={2 + levelOffset}>Environment Variables</Heading>\n {code`The below list of environment variables are used as configuration parameters to drive the processing of the application. The data contained in these variables are **not** considered sensitive or confidential. Any values provided in these variables will be available in plain text to the public.`}\n <hbr />\n <MarkdownTable\n data={\n reflection\n ?.getProperties()\n .filter(\n property => property.getNameAsString() !== \"__STORM_INJECTED__\"\n )\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n )\n .map(reflectionProperty => {\n return {\n name: reflectionProperty.getNameAsString().trim(),\n description: (reflectionProperty.getDescription() ?? \"\").trim(),\n type: stringifyType(reflectionProperty.getType())\n .trim()\n .replaceAll(\" | \", \", or \"),\n defaultValue: reflectionProperty.hasDefault()\n ? String(reflectionProperty.getDefaultValue())?.includes('\"')\n ? reflectionProperty.getDefaultValue()\n : `\\`${reflectionProperty.getDefaultValue()}\\``\n : \"\",\n required: reflectionProperty.isValueRequired() ? \"\" : \"✔\"\n };\n }) ?? []\n }\n />\n </MarkdownFile>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;AAmDA,SAAgBU,YAAYC,OAAyB;CACnD,MAAM,EAAEC,cAAc,GAAGC,YAAY,GAAGC,SAASH;CAEjD,MAAMI,UAAUV,eAAiC;AAEjD,QAAAW,gBACGV,cAAYW,WAAA,EAAA,IACXC,OAAI;AAAA,SAAEV,UAAUC,kBAAkBM,QAAQ,EAAE,SAAS;IAAA,EACjDD,MAAI,EAAA,IAAAK,WAAA;AAAA,SAAA;GAAAH,gBACPd,SAAO;IAACkB,OAAO,IAAIR;IAAWO,UAAA;IAAA,CAAA;GAC9BnB,IAAI;GAAsDgB,gBAC1Df,MAAI;IAAA,IAACoB,OAAI;AAAA,YAAE,CAAC,CAACN,QAAQO,YAAYC;;IAAI,IAAAJ,WAAA;AAAA,YAAAH,gBACnCb,MAAI;MAAA,IACHqB,OAAI;AAAA,cAAE,iCAAiCT,QAAQO,YAAYC;;MAAM,IACjEE,QAAK;AAAA,cAAEV,QAAQO,YAAYC;;MAAI,CAAA;;IAAA,CAAA;GAGlCvB,IAAI;GAAuF0B,gBAAA,OAAA,EAAA,CAAA;GAAAV,gBAE3Fd,SAAO;IAACkB,OAAO,IAAIR;IAAWO,UAAA;IAAA,CAAA;GAC9BnB,IAAI;GAAwS0B,gBAAA,OAAA,EAAA,CAAA;GAAAV,gBAE5ST,eAAa,EAAA,IACZoB,OAAI;AAAA,WACFd,YACIe,eAAe,CAChBC,QACCC,aAAYA,SAASC,iBAAiB,KAAK,qBAC5C,CACAC,MAAMC,GAAGC,MACRD,EAAEF,iBAAiB,CAACI,cAAcD,EAAEH,iBAAiB,CACvD,CAAC,CACAK,KAAIC,uBAAsB;AACzB,YAAO;MACLd,MAAMc,mBAAmBN,iBAAiB,CAACO,MAAM;MACjDC,cAAcF,mBAAmBG,gBAAgB,IAAI,IAAIF,MAAM;MAC/DG,MAAMrC,cAAciC,mBAAmBK,SAAS,CAAC,CAC9CJ,MAAM,CACNK,WAAW,OAAO,QAAQ;MAC7BC,cAAcP,mBAAmBQ,YAAY,GACzCC,OAAOT,mBAAmBU,iBAAiB,CAAC,EAAEC,SAAS,KAAI,GACzDX,mBAAmBU,iBAAiB,GACpC,KAAKV,mBAAmBU,iBAAiB,CAAA,MAC3C;MACJE,UAAUZ,mBAAmBa,iBAAiB,GAAG,KAAK;MACvD;MACD,IAAI,EAAE;MAAA,CAAA;GAAA;IAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"docs.mjs","names":["code","Show","Heading","Link","stringifyType","Spacing","usePowerlines","MarkdownFile","MarkdownTable","joinPaths","getDocsOutputPath","EnvDocsFile","props","levelOffset","reflection","rest","context","_$createComponent","_$mergeProps","path","children","level","when","packageJson","name","href","title","data","getProperties","filter","property","getNameAsString","sort","a","b","localeCompare","map","reflectionProperty","trim","description","getDescription","type","getType","replaceAll","defaultValue","hasDefault","String","getDefaultValue","includes","required","isValueRequired"],"sources":["../../src/components/docs.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { code, Show } from \"@alloy-js/core\";\nimport { Heading, Link } from \"@alloy-js/markdown\";\nimport {\n ReflectionClass,\n stringifyType\n} from \"@powerlines/deepkit/vendor/type\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport {\n MarkdownFile,\n MarkdownFileProps\n} from \"@powerlines/plugin-alloy/markdown/components/markdown-file\";\nimport { MarkdownTable } from \"@powerlines/plugin-alloy/markdown/components/markdown-table\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { getDocsOutputPath } from \"../helpers/docs-helper\";\nimport { EnvPluginContext } from \"../types/plugin\";\n\nexport interface EnvDocsFileProps extends Partial<MarkdownFileProps> {\n /**\n * The heading level offset to apply to the generated documentation.\n *\n * @remarks\n * This is useful when nesting the documentation within other markdown files.\n *\n * @defaultValue 0\n */\n levelOffset?: number;\n\n reflection: ReflectionClass<any>;\n}\n\n/**\n * Generates the environment configuration markdown documentation for the Powerlines project.\n */\nexport function EnvDocsFile(props: EnvDocsFileProps) {\n const { levelOffset = 0, reflection, ...rest } = props;\n\n const context = usePowerlines<EnvPluginContext>();\n\n return (\n <MarkdownFile\n path={joinPaths(getDocsOutputPath(context), \"env.md\")}\n {...rest}>\n <Heading level={1 + levelOffset}>Environment Configuration</Heading>\n {code`Below is a list of environment variables used by the`}\n <Show when={!!context.packageJson.name}>\n <Link\n href={`https://www.npmjs.com/package/${context.packageJson.name}`}\n title={context.packageJson.name!}\n />\n </Show>\n {code`package. These values can be updated in the \\`.env\\` file in the root of the project.`}\n <Spacing />\n <Heading level={2 + levelOffset}>Environment Variables</Heading>\n <Spacing />\n {code`The below list of environment variables are used as configuration parameters to drive the processing of the application. The data contained in these variables are **not** considered sensitive or confidential. Any values provided in these variables will be available in plain text to the public.`}\n <Spacing />\n <MarkdownTable\n data={\n reflection\n ?.getProperties()\n .filter(\n property =>\n property.getNameAsString() !== \"__POWERLINES_INJECTED__\"\n )\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n )\n .map(reflectionProperty => {\n return {\n name: reflectionProperty.getNameAsString().trim(),\n description: (reflectionProperty.getDescription() ?? \"\").trim(),\n type: stringifyType(reflectionProperty.getType())\n .trim()\n .replaceAll(\" | \", \", or \"),\n defaultValue: reflectionProperty.hasDefault()\n ? String(reflectionProperty.getDefaultValue())?.includes('\"')\n ? reflectionProperty.getDefaultValue()\n : `\\`${reflectionProperty.getDefaultValue()}\\``\n : \"\",\n required: reflectionProperty.isValueRequired() ? \"\" : \"✔\"\n };\n }) ?? []\n }\n />\n </MarkdownFile>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;AAoDA,SAAgBW,YAAYC,OAAyB;CACnD,MAAM,EAAEC,cAAc,GAAGC,YAAY,GAAGC,SAASH;CAEjD,MAAMI,UAAUV,eAAiC;AAEjD,QAAAW,gBACGV,cAAYW,WAAA,EAAA,IACXC,OAAI;AAAA,SAAEV,UAAUC,kBAAkBM,QAAQ,EAAE,SAAS;IAAA,EACjDD,MAAI,EAAA,IAAAK,WAAA;AAAA,SAAA;GAAAH,gBACPf,SAAO;IAACmB,OAAO,IAAIR;IAAWO,UAAA;IAAA,CAAA;GAC9BpB,IAAI;GAAsDiB,gBAC1DhB,MAAI;IAAA,IAACqB,OAAI;AAAA,YAAE,CAAC,CAACN,QAAQO,YAAYC;;IAAI,IAAAJ,WAAA;AAAA,YAAAH,gBACnCd,MAAI;MAAA,IACHsB,OAAI;AAAA,cAAE,iCAAiCT,QAAQO,YAAYC;;MAAM,IACjEE,QAAK;AAAA,cAAEV,QAAQO,YAAYC;;MAAI,CAAA;;IAAA,CAAA;GAGlCxB,IAAI;GAAuFiB,gBAC3FZ,SAAO,EAAA,CAAA;GAAAY,gBACPf,SAAO;IAACmB,OAAO,IAAIR;IAAWO,UAAA;IAAA,CAAA;GAAAH,gBAC9BZ,SAAO,EAAA,CAAA;GACPL,IAAI;GAAwSiB,gBAC5SZ,SAAO,EAAA,CAAA;GAAAY,gBACPT,eAAa,EAAA,IACZmB,OAAI;AAAA,WACFb,YACIc,eAAe,CAChBC,QACCC,aACEA,SAASC,iBAAiB,KAAK,0BAClC,CACAC,MAAMC,GAAGC,MACRD,EAAEF,iBAAiB,CAACI,cAAcD,EAAEH,iBAAiB,CACvD,CAAC,CACAK,KAAIC,uBAAsB;AACzB,YAAO;MACLb,MAAMa,mBAAmBN,iBAAiB,CAACO,MAAM;MACjDC,cAAcF,mBAAmBG,gBAAgB,IAAI,IAAIF,MAAM;MAC/DG,MAAMrC,cAAciC,mBAAmBK,SAAS,CAAC,CAC9CJ,MAAM,CACNK,WAAW,OAAO,QAAQ;MAC7BC,cAAcP,mBAAmBQ,YAAY,GACzCC,OAAOT,mBAAmBU,iBAAiB,CAAC,EAAEC,SAAS,KAAI,GACzDX,mBAAmBU,iBAAiB,GACpC,KAAKV,mBAAmBU,iBAAiB,CAAA,MAC3C;MACJE,UAAUZ,mBAAmBa,iBAAiB,GAAG,KAAK;MACvD;MACD,IAAI,EAAE;MAAA,CAAA;GAAA;IAAA,CAAA,CAAA"}
@@ -5,9 +5,9 @@ let __powerlines_deepkit_vendor_type = require("@powerlines/deepkit/vendor/type"
5
5
  let __stryke_string_format_title_case = require("@stryke/string-format/title-case");
6
6
  let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
7
7
  let __alloy_js_core = require("@alloy-js/core");
8
+ let __powerlines_plugin_alloy_core_components_spacing = require("@powerlines/plugin-alloy/core/components/spacing");
8
9
  let __powerlines_plugin_alloy_core_contexts_context = require("@powerlines/plugin-alloy/core/contexts/context");
9
10
  let __alloy_js_typescript = require("@alloy-js/typescript");
10
- let __powerlines_plugin_alloy_core_components_spacing = require("@powerlines/plugin-alloy/core/components/spacing");
11
11
  let __powerlines_plugin_alloy_helpers_refkey = require("@powerlines/plugin-alloy/helpers/refkey");
12
12
  let __powerlines_plugin_alloy_typescript_components_builtin_file = require("@powerlines/plugin-alloy/typescript/components/builtin-file");
13
13
  let __powerlines_plugin_alloy_typescript_components_interface_declaration = require("@powerlines/plugin-alloy/typescript/components/interface-declaration");
@@ -276,18 +276,16 @@ function EnvBuiltin(props) {
276
276
  name: "constructor",
277
277
  "public": true,
278
278
  doc: "Initializes a new instance of the `EnvSerializer` class.",
279
- children: __alloy_js_core.code`
280
- super("env");
279
+ children: __alloy_js_core.code`super("env");
281
280
 
282
- this.deserializeRegistry.register(
283
- ReflectionKind.boolean,
284
- (type: Type, state: TemplateState) => {
285
- state.addSetter(
286
- \`typeof \${state.accessor.toString()} !== "boolean" ? \${state.accessor.toString()} === 1 || \${state.accessor.toString()} === "1" || \${state.accessor.toString()}.toLowerCase() === "t" || \${state.accessor.toString()}.toLowerCase() === "true" || \${state.accessor.toString()}.toLowerCase() === "y" || \${state.accessor.toString()}.toLowerCase() === "yes" : \${state.accessor.toString()}\`
287
- );
288
- }
289
- );
290
- `
281
+ this.deserializeRegistry.register(
282
+ ReflectionKind.boolean,
283
+ (type: Type, state: TemplateState) => {
284
+ state.addSetter(
285
+ \`typeof \${state.accessor.toString()} !== "boolean" ? \${state.accessor.toString()} === 1 || \${state.accessor.toString()} === "1" || \${state.accessor.toString()}.toLowerCase() === "t" || \${state.accessor.toString()}.toLowerCase() === "true" || \${state.accessor.toString()}.toLowerCase() === "y" || \${state.accessor.toString()}.toLowerCase() === "yes" : \${state.accessor.toString()}\`
286
+ );
287
+ }
288
+ ); `
291
289
  });
292
290
  }
293
291
  }),
@@ -4,9 +4,9 @@ import { ReflectionClass, ReflectionKind } from "@powerlines/deepkit/vendor/type
4
4
  import { titleCase } from "@stryke/string-format/title-case";
5
5
  import { createComponent, createIntrinsic, memo, mergeProps } from "@alloy-js/core/jsx-runtime";
6
6
  import { For, Show, code, computed, splitProps } from "@alloy-js/core";
7
+ import { Spacing } from "@powerlines/plugin-alloy/core/components/spacing";
7
8
  import { usePowerlines } from "@powerlines/plugin-alloy/core/contexts/context";
8
9
  import { ClassDeclaration, ClassMethod, ElseIfClause, FunctionDeclaration, IfStatement, NewExpression, TypeDeclaration, VarDeclaration } from "@alloy-js/typescript";
9
- import { Spacing } from "@powerlines/plugin-alloy/core/components/spacing";
10
10
  import { refkey } from "@powerlines/plugin-alloy/helpers/refkey";
11
11
  import { BuiltinFile } from "@powerlines/plugin-alloy/typescript/components/builtin-file";
12
12
  import { InterfaceDeclaration } from "@powerlines/plugin-alloy/typescript/components/interface-declaration";
@@ -275,18 +275,16 @@ function EnvBuiltin(props) {
275
275
  name: "constructor",
276
276
  "public": true,
277
277
  doc: "Initializes a new instance of the `EnvSerializer` class.",
278
- children: code`
279
- super("env");
278
+ children: code`super("env");
280
279
 
281
- this.deserializeRegistry.register(
282
- ReflectionKind.boolean,
283
- (type: Type, state: TemplateState) => {
284
- state.addSetter(
285
- \`typeof \${state.accessor.toString()} !== "boolean" ? \${state.accessor.toString()} === 1 || \${state.accessor.toString()} === "1" || \${state.accessor.toString()}.toLowerCase() === "t" || \${state.accessor.toString()}.toLowerCase() === "true" || \${state.accessor.toString()}.toLowerCase() === "y" || \${state.accessor.toString()}.toLowerCase() === "yes" : \${state.accessor.toString()}\`
286
- );
287
- }
288
- );
289
- `
280
+ this.deserializeRegistry.register(
281
+ ReflectionKind.boolean,
282
+ (type: Type, state: TemplateState) => {
283
+ state.addSetter(
284
+ \`typeof \${state.accessor.toString()} !== "boolean" ? \${state.accessor.toString()} === 1 || \${state.accessor.toString()} === "1" || \${state.accessor.toString()}.toLowerCase() === "t" || \${state.accessor.toString()}.toLowerCase() === "true" || \${state.accessor.toString()}.toLowerCase() === "y" || \${state.accessor.toString()}.toLowerCase() === "yes" : \${state.accessor.toString()}\`
285
+ );
286
+ }
287
+ ); `
290
288
  });
291
289
  }
292
290
  }),
@@ -1 +1 @@
1
- {"version":3,"file":"env.mjs","names":["code","computed","For","Show","splitProps","ClassDeclaration","ClassMethod","ElseIfClause","FunctionDeclaration","IfStatement","NewExpression","TypeDeclaration","VarDeclaration","ReflectionClass","ReflectionKind","Spacing","usePowerlines","refkey","BuiltinFile","InterfaceDeclaration","ObjectDeclaration","TSDoc","TSDocExample","TSDocLink","TSDocParam","TSDocRemarks","TSDocReturns","TSDocThrows","titleCase","defu","loadEnvFromContext","EnvTypeDefinition","props","defaultValue","reflection","context","_$createComponent","name","heading","children","config","env","prefix","map","replace","join","ConfigPropertyConditional","sort","a","b","startsWith","localeCompare","toLowerCase","ConfigPropertyGet","property","index","condition","getNameAsString","when","_$memo","getAlias","length","each","joiner","alias","ConfigPropertySet","createEnvRefkey","envRefkey","envSerializerRefkey","EnvBuiltin","defaultConfig","rest","process","envInstance","result","kind","objectLiteral","description","types","reflectionGetProperties","getProperties","filter","isIgnored","reflectionSetProperties","isReadonly","_$mergeProps","id","imports","Boolean","value","_$createIntrinsic","type","doc","initializer","args","target","entryPath","async","parameters","optional","default","returnType","ender"],"sources":["../../src/components/env.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n Children,\n code,\n computed,\n For,\n Show,\n splitProps\n} from \"@alloy-js/core\";\nimport {\n ClassDeclaration,\n ClassMethod,\n ElseIfClause,\n FunctionDeclaration,\n IfStatement,\n NewExpression,\n TypeDeclaration,\n VarDeclaration\n} from \"@alloy-js/typescript\";\nimport {\n ReflectionClass,\n ReflectionKind,\n ReflectionProperty\n} from \"@powerlines/deepkit/vendor/type\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport { refkey } from \"@powerlines/plugin-alloy/helpers/refkey\";\nimport { ComponentProps } from \"@powerlines/plugin-alloy/types/components\";\nimport {\n BuiltinFile,\n BuiltinFileProps\n} from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport type { InterfaceDeclarationProps } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { InterfaceDeclaration } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { ObjectDeclaration } from \"@powerlines/plugin-alloy/typescript/components/object-declaration\";\nimport {\n TSDoc,\n TSDocExample,\n TSDocLink,\n TSDocParam,\n TSDocRemarks,\n TSDocReturns,\n TSDocThrows\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport defu from \"defu\";\nimport { loadEnvFromContext } from \"../helpers/load\";\nimport { EnvPluginContext } from \"../types/plugin\";\n\n/**\n * Generates the environment configuration typescript definition for the Powerlines project.\n */\nexport function EnvTypeDefinition(\n props: Omit<InterfaceDeclarationProps, \"name\">\n) {\n const [{ defaultValue, reflection }] = splitProps(props, [\n \"defaultValue\",\n \"reflection\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n\n return (\n <>\n <InterfaceDeclaration\n name=\" EnvBase\"\n defaultValue={defaultValue}\n reflection={reflection}\n export={true}\n />\n <Spacing />\n <TSDoc heading=\"The environment configuration object with prefixed keys.\">\n <TSDocRemarks>\n {`The \\`Env\\` type extends the \\`EnvBase\\` interface by including additional keys that are prefixed according to the project's configuration. This allows for flexibility in accessing environment variables with different naming conventions.`}\n </TSDocRemarks>\n </TSDoc>\n <TypeDeclaration name=\"Env\" export={true}>\n {code` {\n [Key in keyof EnvBase as Key ${context.config.env.prefix\n .map(prefix => `| \\`${prefix.replace(/_$/g, \"\")}_\\${Key}\\``)\n .join(\" \")}]: EnvBase[Key];\n}\n`}\n </TypeDeclaration>\n <Spacing />\n </>\n );\n}\n\ninterface ConfigPropertyConditionalProps extends ComponentProps {\n context: EnvPluginContext;\n name: string;\n}\n\nfunction ConfigPropertyConditional(props: ConfigPropertyConditionalProps) {\n const [{ context, name }] = splitProps(props, [\"context\", \"name\"]);\n\n return code`propertyName === \"${name}\" || propertyName.replace(/^(${context.config.env.prefix\n .sort((a, b) =>\n a.startsWith(b) ? -1 : b.startsWith(a) ? 1 : a.localeCompare(b)\n )\n .map(prefix => `${prefix.replace(/_$/, \"\")}_`)\n .join(\"|\")})/g, \"\").toLowerCase().replace(/[\\\\s\\\\-_]+/g, \"\") === \"${name\n .toLowerCase()\n .replace(/[\\s\\-_]+/g, \"\")}\"`;\n}\n\ninterface ConfigPropertyProps extends ComponentProps {\n index: number;\n context: EnvPluginContext;\n property: ReflectionProperty;\n}\n\nfunction ConfigPropertyGet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nfunction ConfigPropertySet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nexport interface EnvBuiltinProps extends Omit<BuiltinFileProps, \"id\"> {\n defaultConfig?: Children;\n reflection: ReflectionClass<any>;\n}\n\nconst createEnvRefkey = refkey(\"createEnv\");\nconst envRefkey = refkey(\"env\");\nconst envSerializerRefkey = refkey(\"EnvSerializer\");\n\n/**\n * Generates the environment configuration module for the Powerlines project.\n */\nexport function EnvBuiltin(props: EnvBuiltinProps) {\n const [{ defaultConfig, reflection, children }, rest] = splitProps(props, [\n \"defaultConfig\",\n \"reflection\",\n \"children\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n const defaultValue = computed(\n () => context && loadEnvFromContext(context, process.env)\n );\n\n const envInstance = computed(() => {\n const result = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n description: `The initial environment configuration state for the ${titleCase(\n context?.config?.name\n )} project.`,\n types: []\n },\n reflection\n );\n\n return result;\n });\n\n const reflectionGetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n const reflectionSetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored() && !property.isReadonly())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n\n return (\n <BuiltinFile\n id=\"env\"\n description=\"The environment configuration module provides an interface to define environment configuration parameters.\"\n {...rest}\n imports={defu(\n {\n \"@powerlines/deepkit/vendor/type\": [\n \"stringify\",\n \"serializer\",\n \"serializeFunction\",\n \"deserializeFunction\",\n \"ReflectionKind\",\n \"Serializer\",\n \"TemplateState\",\n \"Type\",\n \"TypeProperty\",\n \"TypePropertySignature\"\n ]\n },\n rest.imports ?? {}\n )}>\n <Show when={Boolean(reflection)}>\n <EnvTypeDefinition\n defaultValue={defaultValue.value}\n reflection={reflection}\n />\n <hbr />\n <hbr />\n </Show>\n\n <ObjectDeclaration\n name=\"initialEnv\"\n type=\"Partial<EnvBase>\"\n defaultValue={defaultValue}\n reflection={envInstance}\n export={true}\n const={true}\n doc=\"The initial environment configuration object values for the runtime.\"\n />\n <Spacing />\n\n <TSDoc heading=\"The environment configuration serializer for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <ClassDeclaration\n refkey={envSerializerRefkey}\n name=\"EnvSerializer\"\n extends=\"Serializer\"\n export={true}>\n <ClassMethod\n name=\"constructor\"\n public={true}\n doc=\"Initializes a new instance of the `EnvSerializer` class.\">\n {code`\n super(\"env\");\n\n this.deserializeRegistry.register(\n ReflectionKind.boolean,\n (type: Type, state: TemplateState) => {\n state.addSetter(\n \\`typeof \\${state.accessor.toString()} !== \"boolean\" ? \\${state.accessor.toString()} === 1 || \\${state.accessor.toString()} === \"1\" || \\${state.accessor.toString()}.toLowerCase() === \"t\" || \\${state.accessor.toString()}.toLowerCase() === \"true\" || \\${state.accessor.toString()}.toLowerCase() === \"y\" || \\${state.accessor.toString()}.toLowerCase() === \"yes\" : \\${state.accessor.toString()}\\`\n );\n }\n );\n`}\n </ClassMethod>\n </ClassDeclaration>\n <Spacing />\n\n <TSDoc heading=\"A {@link EnvSerializer | environment configuration serializer} instance for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n name=\"envSerializer\"\n export={false}\n const={true}\n initializer={<NewExpression args={[]} target=\"EnvSerializer\" />}\n />\n <Spacing />\n\n <TSDoc heading=\"Serialize a environment configuration object to JSON data objects (not a JSON string).\">\n <TSDocRemarks>\n {`The resulting JSON object can be stringified using \\`JSON.stringify()\\`.`}\n </TSDocRemarks>\n <TSDocExample>{`const json = serializeEnv(env);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when serialization or validation fails.`}\n </TSDocThrows>\n </TSDoc>\n <VarDeclaration\n name=\"serializeEnv\"\n export={true}\n const={true}\n initializer={\"serializeFunction<EnvBase>(envSerializer)\"}\n />\n <Spacing />\n\n <TSDoc heading=\"Deserialize a environment configuration object from JSON data objects to JavaScript objects, without running any validators.\">\n <TSDocRemarks>\n {`Types that are already correct will be used as-is.`}\n </TSDocRemarks>\n <TSDocExample>{`const env = deserializeEnv(json);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when deserialization fails.`}\n </TSDocThrows>\n </TSDoc>\n <VarDeclaration\n name=\"deserializeEnv\"\n export={true}\n const={true}\n initializer=\"deserializeFunction<EnvBase>(envSerializer)\"\n />\n <Spacing />\n\n <TSDoc heading=\"Initializes the Powerlines environment configuration module.\">\n <TSDocRemarks>\n {`This function initializes the Powerlines environment configuration object.`}\n </TSDocRemarks>\n <TSDocParam name=\"environmentConfig\">\n {`The dynamic/runtime configuration - this could include the current environment variables or any other environment-specific settings provided by the runtime.`}\n </TSDocParam>\n <TSDocReturns>\n {`The initialized Powerlines configuration object.`}\n </TSDocReturns>\n </TSDoc>\n <Show when={Boolean(context?.entryPath)}>\n <FunctionDeclaration\n refkey={createEnvRefkey}\n async={false}\n export={true}\n name=\"createEnv\"\n parameters={[\n {\n name: \"environmentConfig\",\n type: `Partial<Env>`,\n optional: false,\n default: \"{}\"\n }\n ]}\n returnType=\"Env\">\n {code`\n return new Proxy<Env>(\n deserializeEnv({\n ...initialEnv,\n ...environmentConfig\n }) as Env,\n {\n get: (target: EnvBase, propertyName: string) => { `}\n <hbr />\n\n <For each={reflectionGetProperties}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertyGet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n {code`\n return undefined;\n }, `}\n\n <Spacing />\n {code` set: (target: EnvBase, propertyName: string, newValue: any) => { `}\n <hbr />\n\n <For each={reflectionSetProperties} ender={code` else `}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertySet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n\n <hbr />\n {code`return false;\n }\n }\n );\n`}\n </FunctionDeclaration>\n </Show>\n <Spacing />\n <hbr />\n\n <TSDoc heading=\"The environment configuration object.\">\n <TSDocRemarks>\n {`This object provides access to the environment configuration parameters in the application runtime.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n refkey={envRefkey}\n name=\"env\"\n type=\"Env\"\n export={true}\n const={true}\n initializer={\n <>{code`createEnv(${defaultConfig || \"{}\"} as Partial<Env>);`}</>\n }\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isCI\"\n doc=\"Detect if the application is running in a continuous integration (CI) environment.\"\n initializer={code`Boolean(\n env.CI ||\n env.RUN_ID ||\n env.AGOLA_GIT_REF ||\n env.AC_APPCIRCLE ||\n env.APPVEYOR ||\n env.CODEBUILD ||\n env.TF_BUILD ||\n env.bamboo_planKey ||\n env.BITBUCKET_COMMIT ||\n env.BITRISE_IO ||\n env.BUDDY_WORKSPACE_ID ||\n env.BUILDKITE ||\n env.CIRCLECI ||\n env.CIRRUS_CI ||\n env.CF_BUILD_ID ||\n env.CM_BUILD_ID ||\n env.CI_NAME ||\n env.DRONE ||\n env.DSARI ||\n env.EARTHLY_CI ||\n env.EAS_BUILD ||\n env.GERRIT_PROJECT ||\n env.GITEA_ACTIONS ||\n env.GITHUB_ACTIONS ||\n env.GITLAB_CI ||\n env.GOCD ||\n env.BUILDER_OUTPUT ||\n env.HARNESS_BUILD_ID ||\n env.JENKINS_URL ||\n env.LAYERCI ||\n env.MAGNUM ||\n env.NETLIFY ||\n env.NEVERCODE ||\n env.PROW_JOB_ID ||\n env.RELEASE_BUILD_ID ||\n env.RENDER ||\n env.SAILCI ||\n env.HUDSON ||\n env.SCREWDRIVER ||\n env.SEMAPHORE ||\n env.SOURCEHUT ||\n env.STRIDER ||\n env.TASK_ID ||\n env.RUN_ID ||\n env.TEAMCITY_VERSION ||\n env.TRAVIS ||\n env.VELA ||\n env.NOW_BUILDER ||\n env.APPCENTER_BUILD_ID ||\n env.CI_XCODE_PROJECT ||\n env.XCS || false\n );\n `}\n />\n <Spacing />\n\n <TSDoc heading=\"Detect the \\`mode\\` of the current runtime environment.\">\n <TSDocRemarks>\n {code`The \\`mode\\` is determined by the \\`MODE\\` environment variable, or falls back to the \\`NEXT_PUBLIC_VERCEL_ENV\\`, \\`NODE_ENV\\`, or defaults to \\`production\\`. While the value can potentially be any string, it is generally recommended to only allow a value in the following list:\n - \\`production\\`\n - \\`test\\`\n - \\`development\\`\n `}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n export\n const\n name=\"mode\"\n initializer={code`String(env.MODE) || \"production\"; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isProduction\"\n doc='Detect if the application is running in `\"production\"` mode'\n initializer={code`[\"prd\", \"prod\", \"production\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isTest\"\n doc='Detect if the application is running in `\"test\"` mode'\n initializer={code`[\"tst\", \"test\", \"testing\", \"stg\", \"stage\", \"staging\"].includes(mode.toLowerCase()) || env.TEST; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDevelopment\"\n doc='Detect if the application is running in `\"development\"` mode'\n initializer={code`[\"dev\", \"development\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDebug\"\n doc=\"Detect if the application is currently being debugged\"\n initializer={code`Boolean(isDevelopment && env.DEBUG); `}\n />\n <Spacing />\n <Show when={Boolean(children)}>{children}</Show>\n </BuiltinFile>\n );\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"env.mjs","names":["code","computed","For","Show","splitProps","ClassDeclaration","ClassMethod","ElseIfClause","FunctionDeclaration","IfStatement","NewExpression","TypeDeclaration","VarDeclaration","ReflectionClass","ReflectionKind","Spacing","usePowerlines","refkey","BuiltinFile","InterfaceDeclaration","ObjectDeclaration","TSDoc","TSDocExample","TSDocLink","TSDocParam","TSDocRemarks","TSDocReturns","TSDocThrows","titleCase","defu","loadEnvFromContext","EnvTypeDefinition","props","defaultValue","reflection","context","_$createComponent","name","heading","children","config","env","prefix","map","replace","join","ConfigPropertyConditional","sort","a","b","startsWith","localeCompare","toLowerCase","ConfigPropertyGet","property","index","condition","getNameAsString","when","_$memo","getAlias","length","each","joiner","alias","ConfigPropertySet","createEnvRefkey","envRefkey","envSerializerRefkey","EnvBuiltin","defaultConfig","rest","process","envInstance","result","kind","objectLiteral","description","types","reflectionGetProperties","getProperties","filter","isIgnored","reflectionSetProperties","isReadonly","_$mergeProps","id","imports","Boolean","value","_$createIntrinsic","type","doc","initializer","args","target","entryPath","async","parameters","optional","default","returnType","ender"],"sources":["../../src/components/env.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n Children,\n code,\n computed,\n For,\n Show,\n splitProps\n} from \"@alloy-js/core\";\nimport {\n ClassDeclaration,\n ClassMethod,\n ElseIfClause,\n FunctionDeclaration,\n IfStatement,\n NewExpression,\n TypeDeclaration,\n VarDeclaration\n} from \"@alloy-js/typescript\";\nimport {\n ReflectionClass,\n ReflectionKind,\n ReflectionProperty\n} from \"@powerlines/deepkit/vendor/type\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components/spacing\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport { refkey } from \"@powerlines/plugin-alloy/helpers/refkey\";\nimport { ComponentProps } from \"@powerlines/plugin-alloy/types/components\";\nimport {\n BuiltinFile,\n BuiltinFileProps\n} from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport type { InterfaceDeclarationProps } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { InterfaceDeclaration } from \"@powerlines/plugin-alloy/typescript/components/interface-declaration\";\nimport { ObjectDeclaration } from \"@powerlines/plugin-alloy/typescript/components/object-declaration\";\nimport {\n TSDoc,\n TSDocExample,\n TSDocLink,\n TSDocParam,\n TSDocRemarks,\n TSDocReturns,\n TSDocThrows\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport defu from \"defu\";\nimport { loadEnvFromContext } from \"../helpers/load\";\nimport { EnvPluginContext } from \"../types/plugin\";\n\n/**\n * Generates the environment configuration typescript definition for the Powerlines project.\n */\nexport function EnvTypeDefinition(\n props: Omit<InterfaceDeclarationProps, \"name\">\n) {\n const [{ defaultValue, reflection }] = splitProps(props, [\n \"defaultValue\",\n \"reflection\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n\n return (\n <>\n <InterfaceDeclaration\n name=\" EnvBase\"\n defaultValue={defaultValue}\n reflection={reflection}\n export={true}\n />\n <Spacing />\n <TSDoc heading=\"The environment configuration object with prefixed keys.\">\n <TSDocRemarks>\n {`The \\`Env\\` type extends the \\`EnvBase\\` interface by including additional keys that are prefixed according to the project's configuration. This allows for flexibility in accessing environment variables with different naming conventions.`}\n </TSDocRemarks>\n </TSDoc>\n <TypeDeclaration name=\"Env\" export={true}>\n {code` {\n [Key in keyof EnvBase as Key ${context.config.env.prefix\n .map(prefix => `| \\`${prefix.replace(/_$/g, \"\")}_\\${Key}\\``)\n .join(\" \")}]: EnvBase[Key];\n}\n`}\n </TypeDeclaration>\n <Spacing />\n </>\n );\n}\n\ninterface ConfigPropertyConditionalProps extends ComponentProps {\n context: EnvPluginContext;\n name: string;\n}\n\nfunction ConfigPropertyConditional(props: ConfigPropertyConditionalProps) {\n const [{ context, name }] = splitProps(props, [\"context\", \"name\"]);\n\n return code`propertyName === \"${name}\" || propertyName.replace(/^(${context.config.env.prefix\n .sort((a, b) =>\n a.startsWith(b) ? -1 : b.startsWith(a) ? 1 : a.localeCompare(b)\n )\n .map(prefix => `${prefix.replace(/_$/, \"\")}_`)\n .join(\"|\")})/g, \"\").toLowerCase().replace(/[\\\\s\\\\-_]+/g, \"\") === \"${name\n .toLowerCase()\n .replace(/[\\s\\-_]+/g, \"\")}\"`;\n}\n\ninterface ConfigPropertyProps extends ComponentProps {\n index: number;\n context: EnvPluginContext;\n property: ReflectionProperty;\n}\n\nfunction ConfigPropertyGet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`return target[\"${property.getNameAsString()}\"];`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nfunction ConfigPropertySet(props: ConfigPropertyProps) {\n const [{ context, property, index }] = splitProps(props, [\n \"context\",\n \"property\",\n \"index\"\n ]);\n\n return (\n <>\n {index === 0 ? (\n <IfStatement\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </IfStatement>\n ) : (\n <ElseIfClause\n condition={\n <>\n <ConfigPropertyConditional\n name={property.getNameAsString()}\n context={context}\n />\n <Show\n when={property.getAlias() && property.getAlias().length > 0}>\n {code` || `}\n <For each={property.getAlias()} joiner={code` || `}>\n {alias => (\n <ConfigPropertyConditional name={alias} context={context} />\n )}\n </For>\n </Show>\n </>\n }>\n {code`\n target[\"${property.getNameAsString()}\"] = newValue;\n return true;\n`}\n </ElseIfClause>\n )}\n </>\n );\n}\n\nexport interface EnvBuiltinProps extends Omit<BuiltinFileProps, \"id\"> {\n defaultConfig?: Children;\n reflection: ReflectionClass<any>;\n}\n\nconst createEnvRefkey = refkey(\"createEnv\");\nconst envRefkey = refkey(\"env\");\nconst envSerializerRefkey = refkey(\"EnvSerializer\");\n\n/**\n * Generates the environment configuration module for the Powerlines project.\n */\nexport function EnvBuiltin(props: EnvBuiltinProps) {\n const [{ defaultConfig, reflection, children }, rest] = splitProps(props, [\n \"defaultConfig\",\n \"reflection\",\n \"children\"\n ]);\n\n const context = usePowerlines<EnvPluginContext>();\n const defaultValue = computed(\n () => context && loadEnvFromContext(context, process.env)\n );\n\n const envInstance = computed(() => {\n const result = new ReflectionClass(\n {\n kind: ReflectionKind.objectLiteral,\n description: `The initial environment configuration state for the ${titleCase(\n context?.config?.name\n )} project.`,\n types: []\n },\n reflection\n );\n\n return result;\n });\n\n const reflectionGetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n const reflectionSetProperties = computed(\n () =>\n reflection\n ?.getProperties()\n .filter(property => !property.isIgnored() && !property.isReadonly())\n .sort((a, b) =>\n a.getNameAsString().localeCompare(b.getNameAsString())\n ) ?? []\n );\n\n return (\n <BuiltinFile\n id=\"env\"\n description=\"The environment configuration module provides an interface to define environment configuration parameters.\"\n {...rest}\n imports={defu(\n {\n \"@powerlines/deepkit/vendor/type\": [\n \"stringify\",\n \"serializer\",\n \"serializeFunction\",\n \"deserializeFunction\",\n \"ReflectionKind\",\n \"Serializer\",\n \"TemplateState\",\n \"Type\",\n \"TypeProperty\",\n \"TypePropertySignature\"\n ]\n },\n rest.imports ?? {}\n )}>\n <Show when={Boolean(reflection)}>\n <EnvTypeDefinition\n defaultValue={defaultValue.value}\n reflection={reflection}\n />\n <hbr />\n <hbr />\n </Show>\n\n <ObjectDeclaration\n name=\"initialEnv\"\n type=\"Partial<EnvBase>\"\n defaultValue={defaultValue}\n reflection={envInstance}\n export={true}\n const={true}\n doc=\"The initial environment configuration object values for the runtime.\"\n />\n <Spacing />\n\n <TSDoc heading=\"The environment configuration serializer for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <ClassDeclaration\n refkey={envSerializerRefkey}\n name=\"EnvSerializer\"\n extends=\"Serializer\"\n export={true}>\n <ClassMethod\n name=\"constructor\"\n public={true}\n doc=\"Initializes a new instance of the `EnvSerializer` class.\">\n {code`super(\"env\");\n\n this.deserializeRegistry.register(\n ReflectionKind.boolean,\n (type: Type, state: TemplateState) => {\n state.addSetter(\n \\`typeof \\${state.accessor.toString()} !== \"boolean\" ? \\${state.accessor.toString()} === 1 || \\${state.accessor.toString()} === \"1\" || \\${state.accessor.toString()}.toLowerCase() === \"t\" || \\${state.accessor.toString()}.toLowerCase() === \"true\" || \\${state.accessor.toString()}.toLowerCase() === \"y\" || \\${state.accessor.toString()}.toLowerCase() === \"yes\" : \\${state.accessor.toString()}\\`\n );\n }\n ); `}\n </ClassMethod>\n </ClassDeclaration>\n <Spacing />\n\n <TSDoc heading=\"A {@link EnvSerializer | environment configuration serializer} instance for the Powerlines application.\">\n <TSDocLink>\n {`https://deepkit.io/docs/serialization/serializers`}\n </TSDocLink>\n <TSDocLink>\n {`https://github.com/marcj/untitled-code/blob/master/packages/type/src/serializer.ts#L1918`}\n </TSDocLink>\n <TSDocRemarks>\n {`This serializer is used to serialize and deserialize the Powerlines environment configuration.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n name=\"envSerializer\"\n export={false}\n const={true}\n initializer={<NewExpression args={[]} target=\"EnvSerializer\" />}\n />\n <Spacing />\n\n <TSDoc heading=\"Serialize a environment configuration object to JSON data objects (not a JSON string).\">\n <TSDocRemarks>\n {`The resulting JSON object can be stringified using \\`JSON.stringify()\\`.`}\n </TSDocRemarks>\n <TSDocExample>{`const json = serializeEnv(env);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when serialization or validation fails.`}\n </TSDocThrows>\n </TSDoc>\n <VarDeclaration\n name=\"serializeEnv\"\n export={true}\n const={true}\n initializer={\"serializeFunction<EnvBase>(envSerializer)\"}\n />\n <Spacing />\n\n <TSDoc heading=\"Deserialize a environment configuration object from JSON data objects to JavaScript objects, without running any validators.\">\n <TSDocRemarks>\n {`Types that are already correct will be used as-is.`}\n </TSDocRemarks>\n <TSDocExample>{`const env = deserializeEnv(json);`}</TSDocExample>\n <TSDocThrows>\n {`ValidationError when deserialization fails.`}\n </TSDocThrows>\n </TSDoc>\n <VarDeclaration\n name=\"deserializeEnv\"\n export={true}\n const={true}\n initializer=\"deserializeFunction<EnvBase>(envSerializer)\"\n />\n <Spacing />\n\n <TSDoc heading=\"Initializes the Powerlines environment configuration module.\">\n <TSDocRemarks>\n {`This function initializes the Powerlines environment configuration object.`}\n </TSDocRemarks>\n <TSDocParam name=\"environmentConfig\">\n {`The dynamic/runtime configuration - this could include the current environment variables or any other environment-specific settings provided by the runtime.`}\n </TSDocParam>\n <TSDocReturns>\n {`The initialized Powerlines configuration object.`}\n </TSDocReturns>\n </TSDoc>\n <Show when={Boolean(context?.entryPath)}>\n <FunctionDeclaration\n refkey={createEnvRefkey}\n async={false}\n export={true}\n name=\"createEnv\"\n parameters={[\n {\n name: \"environmentConfig\",\n type: `Partial<Env>`,\n optional: false,\n default: \"{}\"\n }\n ]}\n returnType=\"Env\">\n {code`\n return new Proxy<Env>(\n deserializeEnv({\n ...initialEnv,\n ...environmentConfig\n }) as Env,\n {\n get: (target: EnvBase, propertyName: string) => { `}\n <hbr />\n\n <For each={reflectionGetProperties}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertyGet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n {code`\n return undefined;\n }, `}\n\n <Spacing />\n {code` set: (target: EnvBase, propertyName: string, newValue: any) => { `}\n <hbr />\n\n <For each={reflectionSetProperties} ender={code` else `}>\n {(property: ReflectionProperty, index: number) => (\n <ConfigPropertySet\n index={index}\n context={context}\n property={property}\n />\n )}\n </For>\n\n <hbr />\n {code`return false;\n }\n }\n );\n`}\n </FunctionDeclaration>\n </Show>\n <Spacing />\n <hbr />\n\n <TSDoc heading=\"The environment configuration object.\">\n <TSDocRemarks>\n {`This object provides access to the environment configuration parameters in the application runtime.`}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n refkey={envRefkey}\n name=\"env\"\n type=\"Env\"\n export={true}\n const={true}\n initializer={\n <>{code`createEnv(${defaultConfig || \"{}\"} as Partial<Env>);`}</>\n }\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isCI\"\n doc=\"Detect if the application is running in a continuous integration (CI) environment.\"\n initializer={code`Boolean(\n env.CI ||\n env.RUN_ID ||\n env.AGOLA_GIT_REF ||\n env.AC_APPCIRCLE ||\n env.APPVEYOR ||\n env.CODEBUILD ||\n env.TF_BUILD ||\n env.bamboo_planKey ||\n env.BITBUCKET_COMMIT ||\n env.BITRISE_IO ||\n env.BUDDY_WORKSPACE_ID ||\n env.BUILDKITE ||\n env.CIRCLECI ||\n env.CIRRUS_CI ||\n env.CF_BUILD_ID ||\n env.CM_BUILD_ID ||\n env.CI_NAME ||\n env.DRONE ||\n env.DSARI ||\n env.EARTHLY_CI ||\n env.EAS_BUILD ||\n env.GERRIT_PROJECT ||\n env.GITEA_ACTIONS ||\n env.GITHUB_ACTIONS ||\n env.GITLAB_CI ||\n env.GOCD ||\n env.BUILDER_OUTPUT ||\n env.HARNESS_BUILD_ID ||\n env.JENKINS_URL ||\n env.LAYERCI ||\n env.MAGNUM ||\n env.NETLIFY ||\n env.NEVERCODE ||\n env.PROW_JOB_ID ||\n env.RELEASE_BUILD_ID ||\n env.RENDER ||\n env.SAILCI ||\n env.HUDSON ||\n env.SCREWDRIVER ||\n env.SEMAPHORE ||\n env.SOURCEHUT ||\n env.STRIDER ||\n env.TASK_ID ||\n env.RUN_ID ||\n env.TEAMCITY_VERSION ||\n env.TRAVIS ||\n env.VELA ||\n env.NOW_BUILDER ||\n env.APPCENTER_BUILD_ID ||\n env.CI_XCODE_PROJECT ||\n env.XCS || false\n );\n `}\n />\n <Spacing />\n\n <TSDoc heading=\"Detect the \\`mode\\` of the current runtime environment.\">\n <TSDocRemarks>\n {code`The \\`mode\\` is determined by the \\`MODE\\` environment variable, or falls back to the \\`NEXT_PUBLIC_VERCEL_ENV\\`, \\`NODE_ENV\\`, or defaults to \\`production\\`. While the value can potentially be any string, it is generally recommended to only allow a value in the following list:\n - \\`production\\`\n - \\`test\\`\n - \\`development\\`\n `}\n </TSDocRemarks>\n </TSDoc>\n <VarDeclaration\n export\n const\n name=\"mode\"\n initializer={code`String(env.MODE) || \"production\"; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isProduction\"\n doc='Detect if the application is running in `\"production\"` mode'\n initializer={code`[\"prd\", \"prod\", \"production\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isTest\"\n doc='Detect if the application is running in `\"test\"` mode'\n initializer={code`[\"tst\", \"test\", \"testing\", \"stg\", \"stage\", \"staging\"].includes(mode.toLowerCase()) || env.TEST; `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDevelopment\"\n doc='Detect if the application is running in `\"development\"` mode'\n initializer={code`[\"dev\", \"development\"].includes(mode.toLowerCase()); `}\n />\n <Spacing />\n\n <VarDeclaration\n export\n const\n name=\"isDebug\"\n doc=\"Detect if the application is currently being debugged\"\n initializer={code`Boolean(isDevelopment && env.DEBUG); `}\n />\n <Spacing />\n <Show when={Boolean(children)}>{children}</Show>\n </BuiltinFile>\n );\n}\n"],"mappings":"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"}
@@ -4,7 +4,7 @@ const require_types_plugin = require('../types/plugin.cjs');
4
4
  /**
5
5
  * Creates a reflection resource for the environment configuration.
6
6
  *
7
- * @param context - The environment plugin context.
7
+ * @param _context - The environment plugin context.
8
8
  * @returns A resource that provides the reflection of the environment configuration.
9
9
  */
10
10
  function createReflection(_context) {
@@ -5,7 +5,7 @@ import { EnvPluginContext } from "../types/plugin.cjs";
5
5
  /**
6
6
  * Creates a reflection resource for the environment configuration.
7
7
  *
8
- * @param context - The environment plugin context.
8
+ * @param _context - The environment plugin context.
9
9
  * @returns A resource that provides the reflection of the environment configuration.
10
10
  */
11
11
  declare function createReflection(_context: EnvPluginContext): {};
@@ -5,7 +5,7 @@ import { EnvPluginContext } from "../types/plugin.mjs";
5
5
  /**
6
6
  * Creates a reflection resource for the environment configuration.
7
7
  *
8
- * @param context - The environment plugin context.
8
+ * @param _context - The environment plugin context.
9
9
  * @returns A resource that provides the reflection of the environment configuration.
10
10
  */
11
11
  declare function createReflection(_context: EnvPluginContext): {};
@@ -4,7 +4,7 @@ import { __ΩEnvPluginContext } from "../types/plugin.mjs";
4
4
  /**
5
5
  * Creates a reflection resource for the environment configuration.
6
6
  *
7
- * @param context - The environment plugin context.
7
+ * @param _context - The environment plugin context.
8
8
  * @returns A resource that provides the reflection of the environment configuration.
9
9
  */
10
10
  function createReflection(_context) {
@@ -1 +1 @@
1
- {"version":3,"file":"create-reflection-resource.mjs","names":[],"sources":["../../src/helpers/create-reflection-resource.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { EnvPluginContext } from \"../types/plugin\";\n\n/**\n * Creates a reflection resource for the environment configuration.\n *\n * @param context - The environment plugin context.\n * @returns A resource that provides the reflection of the environment configuration.\n */\nexport function createReflection(_context: EnvPluginContext) {\n // const defaultValue = computed(\n // () => context && loadEnvFromContext(context, process.env)\n // );\n\n return {};\n\n // return computed(() => {\n // result.getProperties().forEach(prop => {\n // const aliases = prop.getAlias();\n // aliases.filter(Boolean).forEach(alias => {\n // result.addProperty({\n // name: alias,\n // optional: prop.isOptional() ? true : undefined,\n // readonly: prop.isReadonly() ? true : undefined,\n // description: prop.getDescription(),\n // visibility: prop.getVisibility(),\n // type: prop.getType(),\n // default: prop.getDefaultValue(),\n // tags: {\n // hidden: prop.isHidden(),\n // ignore: prop.isIgnored(),\n // internal: prop.isInternal(),\n // alias: prop\n // .getAlias()\n // .filter(a => a !== alias)\n // .concat(prop.name),\n // title: prop.getTitle() || titleCase(prop.name),\n // readonly: prop.isReadonly(),\n // permission: prop.getPermission(),\n // domain: prop.getDomain()\n // }\n // });\n // });\n // });\n\n // result.getProperties().forEach(prop => {\n // prop.setDefaultValue(\n // (defaultValue.value as Record<string, any>)?.[prop.getNameAsString()] ??\n // prop\n // .getAlias()\n // .reduce(\n // (ret, alias) =>\n // ret ?? (defaultValue.value as Record<string, any>)?.[alias],\n // undefined\n // ) ??\n // prop.getDefaultValue()\n // );\n // });\n // });\n}\n"],"mappings":";;;;;;;;;;AAYI,QAAO,EAAE;;AA4Cb,iBAAiB,SAAS;OAAO;CAAK;CAAA;CAAA;CAAA;CAAA"}
1
+ {"version":3,"file":"create-reflection-resource.mjs","names":[],"sources":["../../src/helpers/create-reflection-resource.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { EnvPluginContext } from \"../types/plugin\";\n\n/**\n * Creates a reflection resource for the environment configuration.\n *\n * @param _context - The environment plugin context.\n * @returns A resource that provides the reflection of the environment configuration.\n */\nexport function createReflection(_context: EnvPluginContext) {\n // const defaultValue = computed(\n // () => context && loadEnvFromContext(context, process.env)\n // );\n\n return {};\n\n // return computed(() => {\n // result.getProperties().forEach(prop => {\n // const aliases = prop.getAlias();\n // aliases.filter(Boolean).forEach(alias => {\n // result.addProperty({\n // name: alias,\n // optional: prop.isOptional() ? true : undefined,\n // readonly: prop.isReadonly() ? true : undefined,\n // description: prop.getDescription(),\n // visibility: prop.getVisibility(),\n // type: prop.getType(),\n // default: prop.getDefaultValue(),\n // tags: {\n // hidden: prop.isHidden(),\n // ignore: prop.isIgnored(),\n // internal: prop.isInternal(),\n // alias: prop\n // .getAlias()\n // .filter(a => a !== alias)\n // .concat(prop.name),\n // title: prop.getTitle() || titleCase(prop.name),\n // readonly: prop.isReadonly(),\n // permission: prop.getPermission(),\n // domain: prop.getDomain()\n // }\n // });\n // });\n // });\n\n // result.getProperties().forEach(prop => {\n // prop.setDefaultValue(\n // (defaultValue.value as Record<string, any>)?.[prop.getNameAsString()] ??\n // prop\n // .getAlias()\n // .reduce(\n // (ret, alias) =>\n // ret ?? (defaultValue.value as Record<string, any>)?.[alias],\n // undefined\n // ) ??\n // prop.getDefaultValue()\n // );\n // });\n // });\n}\n"],"mappings":";;;;;;;;;;AAYI,QAAO,EAAE;;AA4Cb,iBAAiB,SAAS;OAAO;CAAK;CAAA;CAAA;CAAA;CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-env",
3
- "version": "0.16.26",
3
+ "version": "0.16.28",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for injecting static .env configuration values to the code so that they're accessible at runtime.",
6
6
  "repository": {
@@ -305,11 +305,11 @@
305
305
  "@alloy-js/typescript": "0.23.0-dev.4",
306
306
  "@babel/core": "^7.29.0",
307
307
  "@babel/types": "^7.29.0",
308
- "@powerlines/plugin-alloy": "^0.23.39",
309
- "@powerlines/plugin-automd": "^0.1.308",
310
- "@powerlines/plugin-babel": "^0.12.314",
311
- "@powerlines/plugin-plugin": "^0.12.259",
312
- "@storm-software/config-tools": "^1.189.10",
308
+ "@powerlines/plugin-alloy": "^0.24.0",
309
+ "@powerlines/plugin-automd": "^0.1.310",
310
+ "@powerlines/plugin-babel": "^0.12.316",
311
+ "@powerlines/plugin-plugin": "^0.12.261",
312
+ "@storm-software/config-tools": "^1.189.11",
313
313
  "@stryke/capnp": "^0.12.68",
314
314
  "@stryke/env": "^0.20.60",
315
315
  "@stryke/fs": "^0.33.43",
@@ -318,15 +318,15 @@
318
318
  "@stryke/type-checks": "^0.5.25",
319
319
  "@stryke/types": "^0.10.39",
320
320
  "automd": "^0.4.3",
321
- "powerlines": "^0.39.16"
321
+ "powerlines": "^0.39.18"
322
322
  },
323
323
  "devDependencies": {
324
- "@powerlines/deepkit": "^0.6.87",
325
- "@powerlines/plugin-deepkit": "^0.11.187",
324
+ "@powerlines/deepkit": "^0.6.89",
325
+ "@powerlines/plugin-deepkit": "^0.11.189",
326
326
  "@types/node": "^25.3.3",
327
327
  "vite": "8.0.0-beta.16"
328
328
  },
329
329
  "publishConfig": { "access": "public" },
330
330
  "types": "./dist/index.d.cts",
331
- "gitHead": "6cb21e7d12ea630876b4c15b00f76d6816907f3a"
331
+ "gitHead": "78fe488f3d8d8b26caace4107d1bd85e5afe0e6b"
332
332
  }