@lowdefy/build 4.0.0-alpha.8 → 4.0.0-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build/addDefaultPages/404.js +1 -1
- package/dist/build/addDefaultPages/addDefaultPages.js +1 -1
- package/dist/build/buildAuth/buildAuth.js +1 -1
- package/dist/build/buildAuth/getPageRoles.js +1 -1
- package/dist/build/buildAuth/getProtectedPages.js +1 -1
- package/dist/build/buildConnections.js +1 -1
- package/dist/build/buildIcons.js +1 -1
- package/dist/build/buildMenu.js +1 -1
- package/dist/build/buildPages/buildBlock/buildBlock.js +6 -2
- package/dist/build/buildPages/buildBlock/buildEvents.js +1 -1
- package/dist/build/buildPages/buildBlock/buildRequests.js +1 -1
- package/dist/build/buildPages/buildBlock/buildSubBlocks.js +1 -1
- package/dist/build/buildPages/buildBlock/countBlockOperators.js +2 -2
- package/dist/build/buildPages/buildBlock/countBlockTypes.js +18 -0
- package/dist/build/buildPages/buildBlock/moveSkeletonBlocksToArea.js +35 -0
- package/dist/build/buildPages/buildBlock/moveSubBlocksToArea.js +1 -1
- package/dist/build/buildPages/buildBlock/setBlockId.js +1 -1
- package/dist/build/buildPages/buildBlock/validateBlock.js +2 -3
- package/dist/build/buildPages/buildPage.js +1 -1
- package/dist/build/buildPages/buildPages.js +1 -1
- package/dist/build/buildRefs/buildRefs.js +1 -1
- package/dist/build/buildRefs/evaluateBuildOperators.js +1 -1
- package/dist/build/buildRefs/getConfigFile.js +1 -1
- package/dist/build/buildRefs/getRefContent.js +1 -1
- package/dist/build/buildRefs/getRefPath.js +1 -1
- package/dist/build/buildRefs/getRefsFromFile.js +1 -1
- package/dist/build/buildRefs/getUserJavascriptFunction.js +1 -1
- package/dist/build/buildRefs/makeRefDefinition.js +1 -1
- package/dist/build/buildRefs/parseNunjucks.js +1 -1
- package/dist/build/buildRefs/parseRefContent.js +1 -1
- package/dist/build/buildRefs/populateRefs.js +1 -1
- package/dist/build/buildRefs/recursiveBuild.js +1 -1
- package/dist/build/buildRefs/runRefResolver.js +1 -1
- package/dist/build/buildRefs/runTransformer.js +1 -1
- package/dist/build/buildStyles.js +1 -1
- package/dist/build/buildTypes.js +11 -2
- package/dist/build/cleanBuildDirectory.js +1 -1
- package/dist/build/copyPublicFolder.js +1 -1
- package/dist/build/testSchema.js +1 -1
- package/dist/build/updateServerPackageJson.js +1 -1
- package/dist/build/validateApp.js +1 -1
- package/dist/build/validateConfig.js +1 -1
- package/dist/build/writeApp.js +1 -1
- package/dist/build/writeConfig.js +1 -1
- package/dist/build/writeConnections.js +1 -1
- package/dist/build/writeGlobal.js +1 -1
- package/dist/build/writeMenus.js +1 -1
- package/dist/build/writePages.js +1 -1
- package/dist/build/writePluginImports/generateImportFile.js +1 -1
- package/dist/build/writePluginImports/writeActionImports.js +1 -1
- package/dist/build/writePluginImports/writeBlockImports.js +1 -1
- package/dist/build/writePluginImports/writeConnectionImports.js +1 -1
- package/dist/build/writePluginImports/writeIconImports.js +1 -1
- package/dist/build/writePluginImports/writeOperatorImports.js +1 -1
- package/dist/build/writePluginImports/writeStyleImports.js +2 -1
- package/dist/build/writeRequests.js +1 -1
- package/dist/build/writeTypes.js +1 -1
- package/dist/defaultTypesMap.json +328 -229
- package/dist/index.js +1 -1
- package/dist/lowdefySchema.js +3 -2
- package/dist/scripts/generateDefaultTypes.js +2 -2
- package/dist/scripts/run.js +1 -1
- package/dist/test/buildRefs/testBuildRefsAsyncFunction.js +1 -1
- package/dist/test/buildRefs/testBuildRefsErrorResolver.js +1 -1
- package/dist/test/buildRefs/testBuildRefsNullResolver.js +1 -1
- package/dist/test/buildRefs/testBuildRefsParsingResolver.js +1 -1
- package/dist/test/buildRefs/testBuildRefsResolver.js +1 -1
- package/dist/test/buildRefs/testBuildRefsTransform.js +1 -1
- package/dist/test/buildRefs/testBuildRefsTransformIdentity.js +1 -1
- package/dist/test/testContext.js +1 -1
- package/dist/utils/countOperators.js +1 -1
- package/dist/utils/createCheckDuplicateId.js +1 -1
- package/dist/utils/createCounter.js +1 -1
- package/dist/utils/createPluginTypesMap.js +1 -1
- package/dist/utils/formatErrorMessage.js +1 -1
- package/dist/utils/readConfigFile.js +1 -1
- package/dist/utils/writeBuildArtifact.js +1 -1
- package/package.json +29 -29
package/dist/build/buildIcons.js
CHANGED
package/dist/build/buildMenu.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -16,16 +16,20 @@
|
|
|
16
16
|
import buildRequests from './buildRequests.js';
|
|
17
17
|
import buildSubBlocks from './buildSubBlocks.js';
|
|
18
18
|
import countBlockOperators from './countBlockOperators.js';
|
|
19
|
+
import countBlockTypes from './countBlockTypes.js';
|
|
19
20
|
import moveSubBlocksToArea from './moveSubBlocksToArea.js';
|
|
21
|
+
import moveSkeletonBlocksToArea from './moveSkeletonBlocksToArea.js';
|
|
20
22
|
import setBlockId from './setBlockId.js';
|
|
21
23
|
import validateBlock from './validateBlock.js';
|
|
22
24
|
async function buildBlock(block, pageContext) {
|
|
23
25
|
validateBlock(block, pageContext);
|
|
24
|
-
countBlockOperators(block, pageContext);
|
|
25
26
|
setBlockId(block, pageContext);
|
|
27
|
+
countBlockOperators(block, pageContext);
|
|
26
28
|
buildEvents(block, pageContext);
|
|
27
29
|
buildRequests(block, pageContext);
|
|
28
30
|
moveSubBlocksToArea(block, pageContext);
|
|
31
|
+
moveSkeletonBlocksToArea(block, pageContext);
|
|
32
|
+
countBlockTypes(block, pageContext);
|
|
29
33
|
await buildSubBlocks(block, pageContext);
|
|
30
34
|
}
|
|
31
35
|
export default buildBlock;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
*/ import countOperators from '../../../utils/countOperators.js';
|
|
16
16
|
function countBlockOperators(block, { typeCounters }) {
|
|
17
17
|
// eslint-disable-next-line no-unused-vars
|
|
18
|
-
const { requests ,
|
|
18
|
+
const { requests , areas , blocks , ...webBlock } = block;
|
|
19
19
|
countOperators(webBlock, {
|
|
20
20
|
counter: typeCounters.operators.client
|
|
21
21
|
});
|
|
@@ -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
|
+
*/ function countBlockTypes(block, { typeCounters }) {
|
|
16
|
+
typeCounters.blocks.increment(block.type);
|
|
17
|
+
}
|
|
18
|
+
export default countBlockTypes;
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { set, type } from '@lowdefy/helpers';
|
|
16
|
+
function recMoveSkeletonBlocksToArea(block1, blockId, pageId) {
|
|
17
|
+
if (!type.isNone(block1.blocks)) {
|
|
18
|
+
if (!type.isArray(block1.blocks)) {
|
|
19
|
+
throw new Error(`Skeleton blocks at ${blockId} on page ${pageId} is not an array. Received ${JSON.stringify(block1.blocks)}`);
|
|
20
|
+
}
|
|
21
|
+
set(block1, 'areas.content.blocks', block1.blocks);
|
|
22
|
+
delete block1.blocks;
|
|
23
|
+
}
|
|
24
|
+
Object.keys(block1.areas || {}).forEach((area)=>{
|
|
25
|
+
block1.areas[area].blocks.forEach((block, i)=>{
|
|
26
|
+
recMoveSkeletonBlocksToArea(block, `${blockId}.areas.${area}.${i}.blocks`, pageId);
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
function moveSkeletonBlocksToArea(block, pageContext) {
|
|
31
|
+
if (type.isObject(block.skeleton)) {
|
|
32
|
+
recMoveSkeletonBlocksToArea(block.skeleton, `${block.blockId}.skeleton`, pageContext.pageId);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
export default moveSkeletonBlocksToArea;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -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
|
-
function validateBlock(block, { pageId
|
|
16
|
+
function validateBlock(block, { pageId }) {
|
|
17
17
|
if (!type.isObject(block)) {
|
|
18
18
|
throw new Error(`Expected block to be an object on page "${pageId}". Received ${JSON.stringify(block)}.`);
|
|
19
19
|
}
|
|
@@ -29,7 +29,6 @@ function validateBlock(block, { pageId , typeCounters }) {
|
|
|
29
29
|
if (!type.isString(block.type)) {
|
|
30
30
|
throw new Error(`Block type is not a string at "${block.id}" on page "${pageId}". Received ${JSON.stringify(block.type)}.`);
|
|
31
31
|
}
|
|
32
|
-
typeCounters.blocks.increment(block.type);
|
|
33
32
|
if (!type.isNone(block.requests)) {
|
|
34
33
|
if (!type.isArray(block.requests)) {
|
|
35
34
|
throw new Error(`Requests is not an array at "${block.id}" on page "${pageId}". Received ${JSON.stringify(block.requests)}`);
|
package/dist/build/buildTypes.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
13
|
See the License for the specific language governing permissions and
|
|
14
14
|
limitations under the License.
|
|
15
|
-
*/
|
|
15
|
+
*/ import basicTypes from '@lowdefy/blocks-basic/types';
|
|
16
|
+
import loaderTypes from '@lowdefy/blocks-loaders/types';
|
|
17
|
+
function buildTypeClass(context, { counter , definitions , store , typeClass , warnIfMissing =false }) {
|
|
16
18
|
const counts = counter.getCounts();
|
|
17
19
|
Object.keys(counts).forEach((typeName)=>{
|
|
18
20
|
if (!definitions[typeName]) {
|
|
@@ -32,9 +34,16 @@
|
|
|
32
34
|
}
|
|
33
35
|
function buildTypes({ components , context }) {
|
|
34
36
|
const { typeCounters } = context;
|
|
37
|
+
// Add Mandatory Types
|
|
35
38
|
// Add operators used by form validation
|
|
36
39
|
typeCounters.operators.client.increment('_not');
|
|
37
40
|
typeCounters.operators.client.increment('_type');
|
|
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
|
+
);
|
|
46
|
+
typeCounters.blocks.increment('Message'); // Used for DisplayMessage in @lowdefy/client
|
|
38
47
|
components.types = {
|
|
39
48
|
actions: {},
|
|
40
49
|
blocks: {},
|
package/dist/build/testSchema.js
CHANGED
package/dist/build/writeApp.js
CHANGED
package/dist/build/writeMenus.js
CHANGED
package/dist/build/writePages.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
limitations under the License.
|
|
15
15
|
*/ import { nunjucksFunction } from '@lowdefy/nunjucks';
|
|
16
16
|
const template = `@import '@lowdefy/layout/style.less';
|
|
17
|
+
@import '@lowdefy/client/style.less';
|
|
17
18
|
{% for style in styles -%}
|
|
18
19
|
@import '{{ style }}';
|
|
19
20
|
{% endfor -%}
|
package/dist/build/writeTypes.js
CHANGED