@lowdefy/build 4.0.0-alpha.10 → 4.0.0-alpha.13

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 (50) hide show
  1. package/dist/build/addDefaultPages/addDefaultPages.js +2 -3
  2. package/dist/build/buildAuth/buildAuth.js +11 -27
  3. package/dist/build/buildAuth/buildAuthPlugins.js +78 -0
  4. package/dist/build/buildAuth/buildPageAuth.js +50 -0
  5. package/dist/build/buildAuth/getPageRoles.js +1 -1
  6. package/dist/build/buildAuth/getProtectedPages.js +6 -8
  7. package/dist/build/buildAuth/validateAuthConfig.js +61 -0
  8. package/dist/build/buildConnections.js +1 -1
  9. package/dist/build/{buildIcons.js → buildImports/buildIconImports.js} +15 -23
  10. package/dist/build/buildImports/buildImports.js +30 -0
  11. package/dist/build/buildImports/buildImportsDev.js +101 -0
  12. package/dist/build/buildImports/buildImportsProd.js +53 -0
  13. package/dist/build/{buildStyles.js → buildImports/buildStyleImports.js} +7 -11
  14. package/dist/build/buildImports/defaultIconsDev.js +584 -0
  15. package/dist/build/buildImports/defaultIconsProd.js +21 -0
  16. package/dist/build/buildMenu.js +9 -13
  17. package/dist/build/buildPages/buildBlock/buildBlock.js +2 -2
  18. package/dist/build/buildPages/buildBlock/buildEvents.js +7 -9
  19. package/dist/build/buildPages/buildBlock/buildSubBlocks.js +2 -7
  20. package/dist/build/buildPages/buildPage.js +2 -2
  21. package/dist/build/buildPages/buildPages.js +3 -5
  22. package/dist/build/buildPages/buildTestPage.js +46 -0
  23. package/dist/build/buildRefs/evaluateBuildOperators.js +2 -3
  24. package/dist/build/buildTypes.js +25 -4
  25. package/dist/build/testSchema.js +4 -6
  26. package/dist/build/updateServerPackageJson.js +3 -0
  27. package/dist/build/validateApp.js +1 -1
  28. package/dist/build/validateConfig.js +1 -25
  29. package/dist/build/writeAuth.js +18 -0
  30. package/dist/build/writePages.js +1 -2
  31. package/dist/build/writePluginImports/generateImportFile.js +1 -6
  32. package/dist/build/writePluginImports/writeActionImports.js +1 -1
  33. package/dist/build/writePluginImports/writeAuthImports.js +30 -0
  34. package/dist/build/writePluginImports/writeBlockImports.js +1 -1
  35. package/dist/build/writePluginImports/writeConnectionImports.js +1 -1
  36. package/dist/build/writePluginImports/writeIconImports.js +1 -1
  37. package/dist/build/writePluginImports/writeOperatorImports.js +4 -4
  38. package/dist/build/writePluginImports/writePluginImports.js +52 -0
  39. package/dist/build/writePluginImports/writeStyleImports.js +1 -1
  40. package/dist/build/writeRequests.js +1 -2
  41. package/dist/createContext.js +54 -0
  42. package/dist/{defaultTypesMap.json → defaultTypesMap.js} +507 -229
  43. package/dist/index.js +19 -77
  44. package/dist/lowdefySchema.js +110 -58
  45. package/dist/scripts/generateDefaultTypes.js +11 -2
  46. package/dist/scripts/run.js +4 -3
  47. package/dist/test/buildRefs/testBuildRefsResolver.js +1 -1
  48. package/dist/test/testContext.js +6 -1
  49. package/dist/utils/createPluginTypesMap.js +21 -0
  50. package/package.json +44 -40
@@ -35,6 +35,9 @@ function checkAction(action, { blockId , checkDuplicateActionId , eventId , page
35
35
  function buildEvents(block, pageContext) {
36
36
  if (block.events) {
37
37
  Object.keys(block.events).map((key)=>{
38
+ if (!type.isArray(block.events[key]) && !type.isObject(block.events[key]) || type.isObject(block.events[key]) && type.isNone(block.events[key].try)) {
39
+ throw new Error(`Actions must be an array at "${block.blockId}" in event "${key}" on page "${pageContext.pageId}". Received ${JSON.stringify(block.events[key].try)}`);
40
+ }
38
41
  if (type.isArray(block.events[key])) {
39
42
  block.events[key] = {
40
43
  try: block.events[key],
@@ -42,13 +45,10 @@ function buildEvents(block, pageContext) {
42
45
  };
43
46
  }
44
47
  if (!type.isArray(block.events[key].try)) {
45
- throw new Error(`Events must be an array of actions at "${block.blockId}" in event "${key}" on page "${pageContext.pageId}". Received ${JSON.stringify(block.events[key].try)}`);
46
- }
47
- if (type.isNone(block.events[key].catch)) {
48
- block.events[key].catch = [];
48
+ throw new Error(`Try actions must be an array at "${block.blockId}" in event "${key}.try" on page "${pageContext.pageId}". Received ${JSON.stringify(block.events[key].try)}`);
49
49
  }
50
50
  if (!type.isArray(block.events[key].catch)) {
51
- throw new Error(`Catch events must be an array of actions at "${block.blockId}" in event "${key}" on page "${pageContext.pageId}". Received ${JSON.stringify(block.events[key].catch)}`);
51
+ throw new Error(`Catch actions must be an array at "${block.blockId}" in event "${key}.catch" on page "${pageContext.pageId}". Received ${JSON.stringify(block.events[key].catch)}`);
52
52
  }
53
53
  const checkDuplicateActionId = createCheckDuplicateId({
54
54
  message: 'Duplicate actionId "{{ id }}" on event "{{ eventId }}" on block "{{ blockId }}" on page "{{ pageId }}".'
@@ -59,16 +59,14 @@ function buildEvents(block, pageContext) {
59
59
  typeCounters: pageContext.typeCounters,
60
60
  pageId: pageContext.pageId,
61
61
  checkDuplicateActionId
62
- })
63
- );
62
+ }));
64
63
  block.events[key].catch.map((action)=>checkAction(action, {
65
64
  eventId: key,
66
65
  blockId: block.blockId,
67
66
  typeCounters: pageContext.typeCounters,
68
67
  pageId: pageContext.pageId,
69
68
  checkDuplicateActionId
70
- })
71
- );
69
+ }));
72
70
  });
73
71
  }
74
72
  }
@@ -14,9 +14,8 @@
14
14
  limitations under the License.
15
15
  */ import { type } from '@lowdefy/helpers';
16
16
  import buildBlock from './buildBlock.js';
17
- async function buildSubBlocks(block, pageContext) {
17
+ function buildSubBlocks(block, pageContext) {
18
18
  if (type.isObject(block.areas)) {
19
- let promises = [];
20
19
  Object.keys(block.areas).forEach((key)=>{
21
20
  if (type.isNone(block.areas[key].blocks)) {
22
21
  block.areas[key].blocks = [];
@@ -24,12 +23,8 @@ async function buildSubBlocks(block, pageContext) {
24
23
  if (!type.isArray(block.areas[key].blocks)) {
25
24
  throw new Error(`Expected blocks to be an array at ${block.blockId} in area ${key} on page ${pageContext.pageId}. Received ${JSON.stringify(block.areas[key].blocks)}`);
26
25
  }
27
- const blockPromises = block.areas[key].blocks.map(async (blk)=>{
28
- await buildBlock(blk, pageContext);
29
- });
30
- promises = promises.concat(blockPromises);
26
+ block.areas[key].blocks.map((blk)=>buildBlock(blk, pageContext));
31
27
  });
32
- await Promise.all(promises);
33
28
  }
34
29
  }
35
30
  export default buildSubBlocks;
@@ -16,7 +16,7 @@
16
16
  import buildBlock from './buildBlock/buildBlock.js';
17
17
  import createCheckDuplicateId from '../../utils/createCheckDuplicateId.js';
18
18
  import createCounter from '../../utils/createCounter.js';
19
- async function buildPage({ page , index , context , checkDuplicatePageId }) {
19
+ function buildPage({ page , index , context , checkDuplicatePageId }) {
20
20
  if (type.isUndefined(page.id)) {
21
21
  throw new Error(`Page id missing at page ${index}.`);
22
22
  }
@@ -29,7 +29,7 @@ async function buildPage({ page , index , context , checkDuplicatePageId }) {
29
29
  page.pageId = page.id;
30
30
  const requests = [];
31
31
  const operators = new Set();
32
- await buildBlock(page, {
32
+ buildBlock(page, {
33
33
  auth: page.auth,
34
34
  blockIdCounter: createCounter(),
35
35
  checkDuplicateRequestId: createCheckDuplicateId({
@@ -15,19 +15,17 @@
15
15
  */ import { type } from '@lowdefy/helpers';
16
16
  import buildPage from './buildPage.js';
17
17
  import createCheckDuplicateId from '../../utils/createCheckDuplicateId.js';
18
- async function buildPages({ components , context }) {
18
+ function buildPages({ components , context }) {
19
19
  const pages = type.isArray(components.pages) ? components.pages : [];
20
20
  const checkDuplicatePageId = createCheckDuplicateId({
21
21
  message: 'Duplicate pageId "{{ id }}".'
22
22
  });
23
- const pageBuildPromises = pages.map((page, index)=>buildPage({
23
+ pages.map((page, index)=>buildPage({
24
24
  page,
25
25
  index,
26
26
  context,
27
27
  checkDuplicatePageId
28
- })
29
- );
30
- await Promise.all(pageBuildPromises);
28
+ }));
31
29
  return components;
32
30
  }
33
31
  export default buildPages;
@@ -0,0 +1,46 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ // Used in @lowdefy/engine tests
16
+ import buildAuth from '../buildAuth/buildAuth.js';
17
+ import buildPages from './buildPages.js';
18
+ import createContext from '../../createContext.js';
19
+ function buildTestPage({ pageConfig }) {
20
+ const context = createContext({
21
+ customTypesMap: {},
22
+ directories: {},
23
+ logger: {
24
+ debug: ()=>{},
25
+ log: ()=>{},
26
+ warn: ()=>{},
27
+ error: ()=>{}
28
+ },
29
+ stage: 'test'
30
+ });
31
+ const components = {
32
+ pages: [
33
+ pageConfig
34
+ ]
35
+ };
36
+ buildAuth({
37
+ components,
38
+ context
39
+ });
40
+ buildPages({
41
+ components,
42
+ context
43
+ });
44
+ return components.pages[0];
45
+ }
46
+ export default buildTestPage;
@@ -21,13 +21,12 @@ async function evaluateBuildOperators({ context , input , refDef }) {
21
21
  });
22
22
  const { output , errors } = operatorsParser.parse({
23
23
  input,
24
- location: refDef.path,
24
+ location: refDef.path ?? refDef.resolver,
25
25
  operatorPrefix: '_build.'
26
26
  });
27
27
  if (errors.length > 0) {
28
28
  await context.logger.warn('Build operator errors.');
29
- const promises = errors.map((error)=>context.logger.warn(error.message)
30
- );
29
+ const promises = errors.map((error)=>context.logger.warn(error.message));
31
30
  await promises;
32
31
  }
33
32
  return output;
@@ -39,13 +39,16 @@ function buildTypes({ components , context }) {
39
39
  typeCounters.operators.client.increment('_not');
40
40
  typeCounters.operators.client.increment('_type');
41
41
  // Add loaders and basic
42
- basicTypes.blocks.forEach((block)=>typeCounters.blocks.increment(block)
43
- );
44
- loaderTypes.blocks.forEach((block)=>typeCounters.blocks.increment(block)
45
- );
42
+ basicTypes.blocks.forEach((block)=>typeCounters.blocks.increment(block));
43
+ loaderTypes.blocks.forEach((block)=>typeCounters.blocks.increment(block));
46
44
  typeCounters.blocks.increment('Message'); // Used for DisplayMessage in @lowdefy/client
47
45
  components.types = {
48
46
  actions: {},
47
+ auth: {
48
+ callbacks: {},
49
+ events: {},
50
+ providers: {}
51
+ },
49
52
  blocks: {},
50
53
  connections: {},
51
54
  requests: {},
@@ -60,6 +63,24 @@ function buildTypes({ components , context }) {
60
63
  store: components.types.actions,
61
64
  typeClass: 'Action'
62
65
  });
66
+ buildTypeClass(context, {
67
+ counter: typeCounters.auth.callbacks,
68
+ definitions: context.typesMap.auth.callbacks,
69
+ store: components.types.auth.callbacks,
70
+ typeClass: 'Auth callback'
71
+ });
72
+ buildTypeClass(context, {
73
+ counter: typeCounters.auth.events,
74
+ definitions: context.typesMap.auth.events,
75
+ store: components.types.auth.events,
76
+ typeClass: 'Auth event'
77
+ });
78
+ buildTypeClass(context, {
79
+ counter: typeCounters.auth.providers,
80
+ definitions: context.typesMap.auth.providers,
81
+ store: components.types.auth.providers,
82
+ typeClass: 'Auth provider'
83
+ });
63
84
  buildTypeClass(context, {
64
85
  counter: typeCounters.blocks,
65
86
  definitions: context.typesMap.blocks,
@@ -15,20 +15,18 @@
15
15
  */ import { validate } from '@lowdefy/ajv';
16
16
  import lowdefySchema from '../lowdefySchema.js';
17
17
  import formatErrorMessage from '../utils/formatErrorMessage.js';
18
- async function testSchema({ components , context }) {
18
+ function testSchema({ components , context }) {
19
19
  const { valid , errors } = validate({
20
20
  schema: lowdefySchema,
21
21
  data: components,
22
22
  returnErrors: true
23
23
  });
24
24
  if (!valid) {
25
- await context.logger.warn('Schema not valid.');
26
- const promises = errors.map((error)=>context.logger.warn(formatErrorMessage({
25
+ context.logger.warn('Schema not valid.');
26
+ errors.map((error)=>context.logger.warn(formatErrorMessage({
27
27
  error,
28
28
  components
29
- }))
30
- );
31
- await promises;
29
+ })));
32
30
  }
33
31
  }
34
32
  export default testSchema;
@@ -25,6 +25,9 @@ async function updateServerPackageJson({ components , context }) {
25
25
  });
26
26
  }
27
27
  getPackages(components.types.actions);
28
+ getPackages(components.types.auth.callbacks);
29
+ getPackages(components.types.auth.events);
30
+ getPackages(components.types.auth.providers);
28
31
  getPackages(components.types.blocks);
29
32
  getPackages(components.types.connections);
30
33
  getPackages(components.types.requests);
@@ -13,7 +13,7 @@
13
13
  See the License for the specific language governing permissions and
14
14
  limitations under the License.
15
15
  */ import { type } from '@lowdefy/helpers';
16
- async function validateApp({ components }) {
16
+ function validateApp({ components }) {
17
17
  if (type.isNone(components.app)) {
18
18
  components.app = {};
19
19
  }
@@ -13,24 +13,13 @@
13
13
  See the License for the specific language governing permissions and
14
14
  limitations under the License.
15
15
  */ import { type } from '@lowdefy/helpers';
16
- import { validate } from '@lowdefy/ajv';
17
- import lowdefySchema from '../lowdefySchema.js';
18
- async function validateConfig({ components }) {
16
+ function validateConfig({ components }) {
19
17
  if (type.isNone(components.config)) {
20
18
  components.config = {};
21
19
  }
22
20
  if (!type.isObject(components.config)) {
23
21
  throw new Error('lowdefy.config is not an object.');
24
22
  }
25
- if (type.isNone(components.config.auth)) {
26
- components.config.auth = {};
27
- }
28
- if (type.isNone(components.config.auth.pages)) {
29
- components.config.auth.pages = {};
30
- }
31
- if (type.isNone(components.config.auth.pages.roles)) {
32
- components.config.auth.pages.roles = {};
33
- }
34
23
  if (type.isNone(components.config.theme)) {
35
24
  components.config.theme = {};
36
25
  }
@@ -39,19 +28,6 @@ async function validateConfig({ components }) {
39
28
  throw Error('Base path must start with "/".');
40
29
  }
41
30
  }
42
- validate({
43
- schema: lowdefySchema.definitions.authConfig,
44
- data: components.config.auth
45
- });
46
- if (components.config.auth.pages.protected === true && components.config.auth.pages.public === true || type.isArray(components.config.auth.pages.protected) && type.isArray(components.config.auth.pages.public)) {
47
- throw new Error('Protected and public pages are mutually exclusive. When protected pages are listed, all unlisted pages are public by default and visa versa.');
48
- }
49
- if (components.config.auth.pages.protected === false) {
50
- throw new Error('Protected pages can not be set to false.');
51
- }
52
- if (components.config.auth.pages.public === false) {
53
- throw new Error('Public pages can not be set to false.');
54
- }
55
31
  return components;
56
32
  }
57
33
  export default validateConfig;
@@ -0,0 +1,18 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ async function writeAuth({ components , context }) {
16
+ await context.writeBuildArtifact('auth.json', JSON.stringify(components.auth || {}, null, 2));
17
+ }
18
+ export default writeAuth;
@@ -19,8 +19,7 @@ async function writePages({ components , context }) {
19
19
  const writePromises = components.pages.map((page)=>writePage({
20
20
  page,
21
21
  context
22
- })
23
- );
22
+ }));
24
23
  return Promise.all(writePromises);
25
24
  }
26
25
  export default writePages;
@@ -21,13 +21,8 @@ export default {
21
21
  {{ import.typeName }},
22
22
  {% endfor -%}
23
23
  };`;
24
- function generateImportFile({ types , importPath }) {
24
+ function generateImportFile({ imports , importPath }) {
25
25
  const templateFn = nunjucksFunction(template);
26
- const imports = Object.keys(types).map((typeName)=>({
27
- typeName,
28
- ...types[typeName]
29
- })
30
- );
31
26
  return templateFn({
32
27
  imports,
33
28
  importPath
@@ -15,7 +15,7 @@
15
15
  */ import generateImportFile from './generateImportFile.js';
16
16
  async function writeActionImports({ components , context }) {
17
17
  await context.writeBuildArtifact('plugins/actions.js', generateImportFile({
18
- types: components.types.actions,
18
+ imports: components.imports.actions,
19
19
  importPath: 'actions'
20
20
  }));
21
21
  }
@@ -0,0 +1,30 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import generateImportFile from './generateImportFile.js';
16
+ async function writeAuthImports({ components , context }) {
17
+ await context.writeBuildArtifact('plugins/auth/callbacks.js', generateImportFile({
18
+ imports: components.imports.auth.callbacks,
19
+ importPath: 'auth/callbacks'
20
+ }));
21
+ await context.writeBuildArtifact('plugins/auth/events.js', generateImportFile({
22
+ imports: components.imports.auth.events,
23
+ importPath: 'auth/events'
24
+ }));
25
+ await context.writeBuildArtifact('plugins/auth/providers.js', generateImportFile({
26
+ imports: components.imports.auth.providers,
27
+ importPath: 'auth/providers'
28
+ }));
29
+ }
30
+ export default writeAuthImports;
@@ -15,7 +15,7 @@
15
15
  */ import generateImportFile from './generateImportFile.js';
16
16
  async function writeBlockImports({ components , context }) {
17
17
  await context.writeBuildArtifact('plugins/blocks.js', generateImportFile({
18
- types: components.types.blocks,
18
+ imports: components.imports.blocks,
19
19
  importPath: 'blocks'
20
20
  }));
21
21
  }
@@ -15,7 +15,7 @@
15
15
  */ import generateImportFile from './generateImportFile.js';
16
16
  async function writeConnectionImports({ components , context }) {
17
17
  await context.writeBuildArtifact('plugins/connections.js', generateImportFile({
18
- types: components.types.connections,
18
+ imports: components.imports.connections,
19
19
  importPath: 'connections'
20
20
  }));
21
21
  }
@@ -25,7 +25,7 @@ export default {
25
25
  async function writeIconImports({ components , context }) {
26
26
  const templateFn = nunjucksFunction(template);
27
27
  await context.writeBuildArtifact('plugins/icons.js', templateFn({
28
- packages: components.icons
28
+ packages: components.imports.icons
29
29
  }));
30
30
  }
31
31
  export default writeIconImports;
@@ -14,12 +14,12 @@
14
14
  limitations under the License.
15
15
  */ import generateImportFile from './generateImportFile.js';
16
16
  async function writeOperatorImports({ components , context }) {
17
- await context.writeBuildArtifact('plugins/operatorsClient.js', generateImportFile({
18
- types: components.types.operators.client,
17
+ await context.writeBuildArtifact('plugins/operators/client.js', generateImportFile({
18
+ imports: components.imports.operators.client,
19
19
  importPath: 'operators/client'
20
20
  }));
21
- await context.writeBuildArtifact('plugins/operatorsServer.js', generateImportFile({
22
- types: components.types.operators.server,
21
+ await context.writeBuildArtifact('plugins/operators/server.js', generateImportFile({
22
+ imports: components.imports.operators.server,
23
23
  importPath: 'operators/server'
24
24
  }));
25
25
  }
@@ -0,0 +1,52 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import writeActionImports from './writeActionImports.js';
16
+ import writeAuthImports from './writeAuthImports.js';
17
+ import writeBlockImports from './writeBlockImports.js';
18
+ import writeConnectionImports from './writeConnectionImports.js';
19
+ import writeIconImports from './writeIconImports.js';
20
+ import writeOperatorImports from './writeOperatorImports.js';
21
+ import writeStyleImports from './writeStyleImports.js';
22
+ async function writePluginImports({ components , context }) {
23
+ await writeActionImports({
24
+ components,
25
+ context
26
+ });
27
+ await writeAuthImports({
28
+ components,
29
+ context
30
+ });
31
+ await writeBlockImports({
32
+ components,
33
+ context
34
+ });
35
+ await writeConnectionImports({
36
+ components,
37
+ context
38
+ });
39
+ await writeIconImports({
40
+ components,
41
+ context
42
+ });
43
+ await writeOperatorImports({
44
+ components,
45
+ context
46
+ });
47
+ await writeStyleImports({
48
+ components,
49
+ context
50
+ });
51
+ }
52
+ export default writePluginImports;
@@ -22,7 +22,7 @@ const template = `@import '@lowdefy/layout/style.less';
22
22
  async function writeStyleImports({ components , context }) {
23
23
  const templateFn = nunjucksFunction(template);
24
24
  await context.writeBuildArtifact('plugins/styles.less', templateFn({
25
- styles: components.styles
25
+ styles: components.imports.styles
26
26
  }));
27
27
  }
28
28
  export default writeStyleImports;
@@ -25,8 +25,7 @@ async function writeRequests({ components , context }) {
25
25
  const writePromises = components.pages.map((page)=>writeRequestsOnPage({
26
26
  page,
27
27
  context
28
- })
29
- );
28
+ }));
30
29
  return Promise.all(writePromises);
31
30
  }
32
31
  export default writeRequests;
@@ -0,0 +1,54 @@
1
+ /* eslint-disable no-console */ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import { mergeObjects } from '@lowdefy/helpers';
16
+ import createCounter from './utils/createCounter.js';
17
+ import createReadConfigFile from './utils/readConfigFile.js';
18
+ import createWriteBuildArtifact from './utils/writeBuildArtifact.js';
19
+ import defaultTypesMap from './defaultTypesMap.js';
20
+ function createContext({ customTypesMap , directories , logger , refResolver , stage ='prod' }) {
21
+ const context = {
22
+ directories,
23
+ logger,
24
+ readConfigFile: createReadConfigFile({
25
+ directories
26
+ }),
27
+ refResolver,
28
+ stage,
29
+ typeCounters: {
30
+ actions: createCounter(),
31
+ auth: {
32
+ callbacks: createCounter(),
33
+ events: createCounter(),
34
+ providers: createCounter()
35
+ },
36
+ blocks: createCounter(),
37
+ connections: createCounter(),
38
+ requests: createCounter(),
39
+ operators: {
40
+ client: createCounter(),
41
+ server: createCounter()
42
+ }
43
+ },
44
+ typesMap: mergeObjects([
45
+ defaultTypesMap,
46
+ customTypesMap
47
+ ]),
48
+ writeBuildArtifact: createWriteBuildArtifact({
49
+ directories
50
+ })
51
+ };
52
+ return context;
53
+ }
54
+ export default createContext;