Commit 3422ea62 authored by rockyl's avatar rockyl

init

parent ad946193
Pipeline #175348 failed with stages
in 0 seconds
...@@ -4,13 +4,32 @@ ...@@ -4,13 +4,32 @@
* 项目发布 * 项目发布
*/ */
const fs = require('fs'); const replaceFields = ['page_title', 'container_id'];
async function pack(project, getProcesses, getScripts) { async function pack(project, options) {
let version = Date.now();
let data = JSON.parse(project.data); let data = JSON.parse(project.data);
const newTpl = await pageTemplate(data);
const newData = await packData(data, options);
return {
version,
data: newData,
tpl: newTpl,
}
}
async function packData(data, {getProcesses, getScripts}) {
let newData = {};
newData.options = data.options;
delete newData.options.tpl;
newData.views = data.views;
newData.assets = data.assets;
newData.dataMapping = data.dataMapping;
newData.processes = data.processes;
let scriptIDs = []; let scriptIDs = [];
for(let view of data.views){ for (let view of newData.views) {
traverseNode(view, (node) => { traverseNode(view, (node) => {
if (node.scripts && node.scripts.length > 0) { if (node.scripts && node.scripts.length > 0) {
for (let {script} of node.scripts) { for (let {script} of node.scripts) {
...@@ -22,7 +41,7 @@ async function pack(project, getProcesses, getScripts) { ...@@ -22,7 +41,7 @@ async function pack(project, getProcesses, getScripts) {
}); });
} }
//console.log('scriptIDs:', scriptIDs); //console.log('scriptIDs:', scriptIDs);
let scriptsContainer = data.scripts = {}; let scriptsContainer = newData.scripts = {};
const scripts = await getScripts(scriptIDs); const scripts = await getScripts(scriptIDs);
for (let scriptData of scripts) { for (let scriptData of scripts) {
let {id, code} = JSON.parse(scriptData); let {id, code} = JSON.parse(scriptData);
...@@ -31,7 +50,7 @@ async function pack(project, getProcesses, getScripts) { ...@@ -31,7 +50,7 @@ async function pack(project, getProcesses, getScripts) {
//console.log('scripts:', scriptsContainer); //console.log('scripts:', scriptsContainer);
let processIDs = []; let processIDs = [];
for (let process of data.processes) { for (let process of newData.processes) {
for (let key in process.sub) { for (let key in process.sub) {
let p = process.sub[key]; let p = process.sub[key];
if (!processIDs.includes(p.meta)) { if (!processIDs.includes(p.meta)) {
...@@ -40,15 +59,24 @@ async function pack(project, getProcesses, getScripts) { ...@@ -40,15 +59,24 @@ async function pack(project, getProcesses, getScripts) {
} }
} }
//console.log('processIDs:', processIDs); //console.log('processIDs:', processIDs);
let builtinProcesses = data.builtinProcesses = []; let builtinProcesses = newData.builtinProcesses = [];
let processes = await getProcesses(processIDs); let processes = await getProcesses(processIDs);
for(let processData of processes){ for (let processData of processes) {
let process = JSON.parse(processData); let process = JSON.parse(processData);
builtinProcesses.push(process); builtinProcesses.push(process);
} }
//console.log('processes:', data.processes); //console.log('processes:', data.processes);
fs.writeFileSync('test.json', JSON.stringify(data)); return JSON.stringify(newData);
}
async function pageTemplate(data, options) {
const {tpl,} = data.options;
let newTpl = tpl;
for (let field of replaceFields) {
newTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);
}
return newTpl;
} }
function traverseNode(root, callback) { function traverseNode(root, callback) {
......
{"version":3,"file":"index.es.js","sources":["../src/index.js"],"sourcesContent":["/**\n * Created by rockyl on 2019-11-13.\n *\n * 项目发布\n */\n\nconst fs = require('fs');\n\nexport async function pack(project, getProcesses, getScripts) {\n\tlet data = JSON.parse(project.data);\n\n\tlet scriptIDs = [];\n\tfor(let view of data.views){\n\t\ttraverseNode(view, (node) => {\n\t\t\tif (node.scripts && node.scripts.length > 0) {\n\t\t\t\tfor (let {script} of node.scripts) {\n\t\t\t\t\tif (!scriptIDs.includes(script)) {\n\t\t\t\t\t\tscriptIDs.push(script);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t//console.log('scriptIDs:', scriptIDs);\n\tlet scriptsContainer = data.scripts = {};\n\tconst scripts = await getScripts(scriptIDs);\n\tfor (let scriptData of scripts) {\n\t\tlet {id, code} = JSON.parse(scriptData);\n\t\tscriptsContainer[id] = code;\n\t}\n\t//console.log('scripts:', scriptsContainer);\n\n\tlet processIDs = [];\n\tfor (let process of data.processes) {\n\t\tfor (let key in process.sub) {\n\t\t\tlet p = process.sub[key];\n\t\t\tif (!processIDs.includes(p.meta)) {\n\t\t\t\tprocessIDs.push(p.meta);\n\t\t\t}\n\t\t}\n\t}\n\t//console.log('processIDs:', processIDs);\n\tlet builtinProcesses = data.builtinProcesses = [];\n\tlet processes = await getProcesses(processIDs);\n\tfor(let processData of processes){\n\t\tlet process = JSON.parse(processData);\n\t\tbuiltinProcesses.push(process);\n\t}\n\t//console.log('processes:', data.processes);\n\n\tfs.writeFileSync('test.json', JSON.stringify(data));\n}\n\nfunction traverseNode(root, callback) {\n\tcallback(root);\n\tif (root.children && root.children.length > 0) {\n\t\tfor (let childNode of root.children) {\n\t\t\ttraverseNode(childNode, callback);\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"AAAA;;;;;;AAMA,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;;AAEzB,AAAO,eAAe,IAAI,CAAC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE;CAC7D,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;CAEpC,IAAI,SAAS,GAAG,EAAE,CAAC;CACnB,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC;EAC1B,YAAY,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK;GAC5B,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE;IAC5C,KAAK,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE;KAClC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;MAChC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;MACvB;KACD;IACD;GACD,CAAC,CAAC;EACH;;CAED,IAAI,gBAAgB,GAAG,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;CACzC,MAAM,OAAO,GAAG,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC;CAC5C,KAAK,IAAI,UAAU,IAAI,OAAO,EAAE;EAC/B,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;EACxC,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC;EAC5B;;;CAGD,IAAI,UAAU,GAAG,EAAE,CAAC;CACpB,KAAK,IAAI,OAAO,IAAI,IAAI,CAAC,SAAS,EAAE;EACnC,KAAK,IAAI,GAAG,IAAI,OAAO,CAAC,GAAG,EAAE;GAC5B,IAAI,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;GACzB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;IACjC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IACxB;GACD;EACD;;CAED,IAAI,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;CAClD,IAAI,SAAS,GAAG,MAAM,YAAY,CAAC,UAAU,CAAC,CAAC;CAC/C,IAAI,IAAI,WAAW,IAAI,SAAS,CAAC;EAChC,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;EACtC,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;EAC/B;;;CAGD,EAAE,CAAC,aAAa,CAAC,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;CACpD;;AAED,SAAS,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE;CACrC,QAAQ,CAAC,IAAI,CAAC,CAAC;CACf,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;EAC9C,KAAK,IAAI,SAAS,IAAI,IAAI,CAAC,QAAQ,EAAE;GACpC,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;GAClC;EACD;CACD;;;;"} {"version":3,"file":"index.es.js","sources":["../src/index.js"],"sourcesContent":["/**\n * Created by rockyl on 2019-11-13.\n *\n * 项目发布\n */\n\nconst replaceFields = ['page_title', 'container_id'];\n\nexport async function pack(project, options) {\n\tlet version = Date.now();\n\tlet data = JSON.parse(project.data);\n\tconst newTpl = await pageTemplate(data, options);\n\tconst newData = await packData(data, options);\n\n\treturn {\n\t\tversion,\n\t\tdata: newData,\n\t\ttpl: newTpl,\n\t}\n}\n\nasync function packData(data, {getProcesses, getScripts}) {\n\tlet newData = {};\n\tnewData.options = data.options;\n\tdelete newData.options.tpl;\n\tnewData.views = data.views;\n\tnewData.assets = data.assets;\n\tnewData.dataMapping = data.dataMapping;\n\tnewData.processes = data.processes;\n\n\tlet scriptIDs = [];\n\tfor (let view of newData.views) {\n\t\ttraverseNode(view, (node) => {\n\t\t\tif (node.scripts && node.scripts.length > 0) {\n\t\t\t\tfor (let {script} of node.scripts) {\n\t\t\t\t\tif (!scriptIDs.includes(script)) {\n\t\t\t\t\t\tscriptIDs.push(script);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t//console.log('scriptIDs:', scriptIDs);\n\tlet scriptsContainer = newData.scripts = {};\n\tconst scripts = await getScripts(scriptIDs);\n\tfor (let scriptData of scripts) {\n\t\tlet {id, code} = JSON.parse(scriptData);\n\t\tscriptsContainer[id] = code;\n\t}\n\t//console.log('scripts:', scriptsContainer);\n\n\tlet processIDs = [];\n\tfor (let process of newData.processes) {\n\t\tfor (let key in process.sub) {\n\t\t\tlet p = process.sub[key];\n\t\t\tif (!processIDs.includes(p.meta)) {\n\t\t\t\tprocessIDs.push(p.meta);\n\t\t\t}\n\t\t}\n\t}\n\t//console.log('processIDs:', processIDs);\n\tlet builtinProcesses = newData.builtinProcesses = [];\n\tlet processes = await getProcesses(processIDs);\n\tfor (let processData of processes) {\n\t\tlet process = JSON.parse(processData);\n\t\tbuiltinProcesses.push(process);\n\t}\n\t//console.log('processes:', data.processes);\n\n\treturn JSON.stringify(newData);\n}\n\nasync function pageTemplate(data, options) {\n\tconst {tpl,} = data.options;\n\tlet newTpl = tpl;\n\tfor (let field of replaceFields) {\n\t\tnewTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);\n\t}\n\treturn newTpl;\n}\n\nfunction traverseNode(root, callback) {\n\tcallback(root);\n\tif (root.children && root.children.length > 0) {\n\t\tfor (let childNode of root.children) {\n\t\t\ttraverseNode(childNode, callback);\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"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"}
\ No newline at end of file \ No newline at end of file
...@@ -8,13 +8,32 @@ Object.defineProperty(exports, '__esModule', { value: true }); ...@@ -8,13 +8,32 @@ Object.defineProperty(exports, '__esModule', { value: true });
* 项目发布 * 项目发布
*/ */
const fs = require('fs'); const replaceFields = ['page_title', 'container_id'];
async function pack(project, getProcesses, getScripts) { async function pack(project, options) {
let version = Date.now();
let data = JSON.parse(project.data); let data = JSON.parse(project.data);
const newTpl = await pageTemplate(data);
const newData = await packData(data, options);
return {
version,
data: newData,
tpl: newTpl,
}
}
async function packData(data, {getProcesses, getScripts}) {
let newData = {};
newData.options = data.options;
delete newData.options.tpl;
newData.views = data.views;
newData.assets = data.assets;
newData.dataMapping = data.dataMapping;
newData.processes = data.processes;
let scriptIDs = []; let scriptIDs = [];
for(let view of data.views){ for (let view of newData.views) {
traverseNode(view, (node) => { traverseNode(view, (node) => {
if (node.scripts && node.scripts.length > 0) { if (node.scripts && node.scripts.length > 0) {
for (let {script} of node.scripts) { for (let {script} of node.scripts) {
...@@ -26,7 +45,7 @@ async function pack(project, getProcesses, getScripts) { ...@@ -26,7 +45,7 @@ async function pack(project, getProcesses, getScripts) {
}); });
} }
//console.log('scriptIDs:', scriptIDs); //console.log('scriptIDs:', scriptIDs);
let scriptsContainer = data.scripts = {}; let scriptsContainer = newData.scripts = {};
const scripts = await getScripts(scriptIDs); const scripts = await getScripts(scriptIDs);
for (let scriptData of scripts) { for (let scriptData of scripts) {
let {id, code} = JSON.parse(scriptData); let {id, code} = JSON.parse(scriptData);
...@@ -35,7 +54,7 @@ async function pack(project, getProcesses, getScripts) { ...@@ -35,7 +54,7 @@ async function pack(project, getProcesses, getScripts) {
//console.log('scripts:', scriptsContainer); //console.log('scripts:', scriptsContainer);
let processIDs = []; let processIDs = [];
for (let process of data.processes) { for (let process of newData.processes) {
for (let key in process.sub) { for (let key in process.sub) {
let p = process.sub[key]; let p = process.sub[key];
if (!processIDs.includes(p.meta)) { if (!processIDs.includes(p.meta)) {
...@@ -44,15 +63,24 @@ async function pack(project, getProcesses, getScripts) { ...@@ -44,15 +63,24 @@ async function pack(project, getProcesses, getScripts) {
} }
} }
//console.log('processIDs:', processIDs); //console.log('processIDs:', processIDs);
let builtinProcesses = data.builtinProcesses = []; let builtinProcesses = newData.builtinProcesses = [];
let processes = await getProcesses(processIDs); let processes = await getProcesses(processIDs);
for(let processData of processes){ for (let processData of processes) {
let process = JSON.parse(processData); let process = JSON.parse(processData);
builtinProcesses.push(process); builtinProcesses.push(process);
} }
//console.log('processes:', data.processes); //console.log('processes:', data.processes);
fs.writeFileSync('test.json', JSON.stringify(data)); return JSON.stringify(newData);
}
async function pageTemplate(data, options) {
const {tpl,} = data.options;
let newTpl = tpl;
for (let field of replaceFields) {
newTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);
}
return newTpl;
} }
function traverseNode(root, callback) { function traverseNode(root, callback) {
......
{"version":3,"file":"index.js","sources":["../src/index.js"],"sourcesContent":["/**\n * Created by rockyl on 2019-11-13.\n *\n * 项目发布\n */\n\nconst fs = require('fs');\n\nexport async function pack(project, getProcesses, getScripts) {\n\tlet data = JSON.parse(project.data);\n\n\tlet scriptIDs = [];\n\tfor(let view of data.views){\n\t\ttraverseNode(view, (node) => {\n\t\t\tif (node.scripts && node.scripts.length > 0) {\n\t\t\t\tfor (let {script} of node.scripts) {\n\t\t\t\t\tif (!scriptIDs.includes(script)) {\n\t\t\t\t\t\tscriptIDs.push(script);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t//console.log('scriptIDs:', scriptIDs);\n\tlet scriptsContainer = data.scripts = {};\n\tconst scripts = await getScripts(scriptIDs);\n\tfor (let scriptData of scripts) {\n\t\tlet {id, code} = JSON.parse(scriptData);\n\t\tscriptsContainer[id] = code;\n\t}\n\t//console.log('scripts:', scriptsContainer);\n\n\tlet processIDs = [];\n\tfor (let process of data.processes) {\n\t\tfor (let key in process.sub) {\n\t\t\tlet p = process.sub[key];\n\t\t\tif (!processIDs.includes(p.meta)) {\n\t\t\t\tprocessIDs.push(p.meta);\n\t\t\t}\n\t\t}\n\t}\n\t//console.log('processIDs:', processIDs);\n\tlet builtinProcesses = data.builtinProcesses = [];\n\tlet processes = await getProcesses(processIDs);\n\tfor(let processData of processes){\n\t\tlet process = JSON.parse(processData);\n\t\tbuiltinProcesses.push(process);\n\t}\n\t//console.log('processes:', data.processes);\n\n\tfs.writeFileSync('test.json', JSON.stringify(data));\n}\n\nfunction traverseNode(root, callback) {\n\tcallback(root);\n\tif (root.children && root.children.length > 0) {\n\t\tfor (let childNode of root.children) {\n\t\t\ttraverseNode(childNode, callback);\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";;;;AAAA;;;;;;AAMA,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;;AAEzB,AAAO,eAAe,IAAI,CAAC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE;CAC7D,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;CAEpC,IAAI,SAAS,GAAG,EAAE,CAAC;CACnB,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC;EAC1B,YAAY,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK;GAC5B,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE;IAC5C,KAAK,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE;KAClC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;MAChC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;MACvB;KACD;IACD;GACD,CAAC,CAAC;EACH;;CAED,IAAI,gBAAgB,GAAG,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;CACzC,MAAM,OAAO,GAAG,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC;CAC5C,KAAK,IAAI,UAAU,IAAI,OAAO,EAAE;EAC/B,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;EACxC,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC;EAC5B;;;CAGD,IAAI,UAAU,GAAG,EAAE,CAAC;CACpB,KAAK,IAAI,OAAO,IAAI,IAAI,CAAC,SAAS,EAAE;EACnC,KAAK,IAAI,GAAG,IAAI,OAAO,CAAC,GAAG,EAAE;GAC5B,IAAI,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;GACzB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;IACjC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IACxB;GACD;EACD;;CAED,IAAI,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;CAClD,IAAI,SAAS,GAAG,MAAM,YAAY,CAAC,UAAU,CAAC,CAAC;CAC/C,IAAI,IAAI,WAAW,IAAI,SAAS,CAAC;EAChC,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;EACtC,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;EAC/B;;;CAGD,EAAE,CAAC,aAAa,CAAC,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;CACpD;;AAED,SAAS,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE;CACrC,QAAQ,CAAC,IAAI,CAAC,CAAC;CACf,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;EAC9C,KAAK,IAAI,SAAS,IAAI,IAAI,CAAC,QAAQ,EAAE;GACpC,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;GAClC;EACD;CACD;;;;"} {"version":3,"file":"index.js","sources":["../src/index.js"],"sourcesContent":["/**\n * Created by rockyl on 2019-11-13.\n *\n * 项目发布\n */\n\nconst replaceFields = ['page_title', 'container_id'];\n\nexport async function pack(project, options) {\n\tlet version = Date.now();\n\tlet data = JSON.parse(project.data);\n\tconst newTpl = await pageTemplate(data, options);\n\tconst newData = await packData(data, options);\n\n\treturn {\n\t\tversion,\n\t\tdata: newData,\n\t\ttpl: newTpl,\n\t}\n}\n\nasync function packData(data, {getProcesses, getScripts}) {\n\tlet newData = {};\n\tnewData.options = data.options;\n\tdelete newData.options.tpl;\n\tnewData.views = data.views;\n\tnewData.assets = data.assets;\n\tnewData.dataMapping = data.dataMapping;\n\tnewData.processes = data.processes;\n\n\tlet scriptIDs = [];\n\tfor (let view of newData.views) {\n\t\ttraverseNode(view, (node) => {\n\t\t\tif (node.scripts && node.scripts.length > 0) {\n\t\t\t\tfor (let {script} of node.scripts) {\n\t\t\t\t\tif (!scriptIDs.includes(script)) {\n\t\t\t\t\t\tscriptIDs.push(script);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t//console.log('scriptIDs:', scriptIDs);\n\tlet scriptsContainer = newData.scripts = {};\n\tconst scripts = await getScripts(scriptIDs);\n\tfor (let scriptData of scripts) {\n\t\tlet {id, code} = JSON.parse(scriptData);\n\t\tscriptsContainer[id] = code;\n\t}\n\t//console.log('scripts:', scriptsContainer);\n\n\tlet processIDs = [];\n\tfor (let process of newData.processes) {\n\t\tfor (let key in process.sub) {\n\t\t\tlet p = process.sub[key];\n\t\t\tif (!processIDs.includes(p.meta)) {\n\t\t\t\tprocessIDs.push(p.meta);\n\t\t\t}\n\t\t}\n\t}\n\t//console.log('processIDs:', processIDs);\n\tlet builtinProcesses = newData.builtinProcesses = [];\n\tlet processes = await getProcesses(processIDs);\n\tfor (let processData of processes) {\n\t\tlet process = JSON.parse(processData);\n\t\tbuiltinProcesses.push(process);\n\t}\n\t//console.log('processes:', data.processes);\n\n\treturn JSON.stringify(newData);\n}\n\nasync function pageTemplate(data, options) {\n\tconst {tpl,} = data.options;\n\tlet newTpl = tpl;\n\tfor (let field of replaceFields) {\n\t\tnewTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);\n\t}\n\treturn newTpl;\n}\n\nfunction traverseNode(root, callback) {\n\tcallback(root);\n\tif (root.children && root.children.length > 0) {\n\t\tfor (let childNode of root.children) {\n\t\t\ttraverseNode(childNode, callback);\n\t\t}\n\t}\n}\n"],"names":[],"mappings":"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"}
\ No newline at end of file \ No newline at end of file
...@@ -10,13 +10,32 @@ ...@@ -10,13 +10,32 @@
* 项目发布 * 项目发布
*/ */
const fs = require('fs'); const replaceFields = ['page_title', 'container_id'];
async function pack(project, getProcesses, getScripts) { async function pack(project, options) {
let version = Date.now();
let data = JSON.parse(project.data); let data = JSON.parse(project.data);
const newTpl = await pageTemplate(data);
const newData = await packData(data, options);
return {
version,
data: newData,
tpl: newTpl,
}
}
async function packData(data, {getProcesses, getScripts}) {
let newData = {};
newData.options = data.options;
delete newData.options.tpl;
newData.views = data.views;
newData.assets = data.assets;
newData.dataMapping = data.dataMapping;
newData.processes = data.processes;
let scriptIDs = []; let scriptIDs = [];
for(let view of data.views){ for (let view of newData.views) {
traverseNode(view, (node) => { traverseNode(view, (node) => {
if (node.scripts && node.scripts.length > 0) { if (node.scripts && node.scripts.length > 0) {
for (let {script} of node.scripts) { for (let {script} of node.scripts) {
...@@ -28,7 +47,7 @@ ...@@ -28,7 +47,7 @@
}); });
} }
//console.log('scriptIDs:', scriptIDs); //console.log('scriptIDs:', scriptIDs);
let scriptsContainer = data.scripts = {}; let scriptsContainer = newData.scripts = {};
const scripts = await getScripts(scriptIDs); const scripts = await getScripts(scriptIDs);
for (let scriptData of scripts) { for (let scriptData of scripts) {
let {id, code} = JSON.parse(scriptData); let {id, code} = JSON.parse(scriptData);
...@@ -37,7 +56,7 @@ ...@@ -37,7 +56,7 @@
//console.log('scripts:', scriptsContainer); //console.log('scripts:', scriptsContainer);
let processIDs = []; let processIDs = [];
for (let process of data.processes) { for (let process of newData.processes) {
for (let key in process.sub) { for (let key in process.sub) {
let p = process.sub[key]; let p = process.sub[key];
if (!processIDs.includes(p.meta)) { if (!processIDs.includes(p.meta)) {
...@@ -46,15 +65,24 @@ ...@@ -46,15 +65,24 @@
} }
} }
//console.log('processIDs:', processIDs); //console.log('processIDs:', processIDs);
let builtinProcesses = data.builtinProcesses = []; let builtinProcesses = newData.builtinProcesses = [];
let processes = await getProcesses(processIDs); let processes = await getProcesses(processIDs);
for(let processData of processes){ for (let processData of processes) {
let process = JSON.parse(processData); let process = JSON.parse(processData);
builtinProcesses.push(process); builtinProcesses.push(process);
} }
//console.log('processes:', data.processes); //console.log('processes:', data.processes);
fs.writeFileSync('test.json', JSON.stringify(data)); return JSON.stringify(newData);
}
async function pageTemplate(data, options) {
const {tpl,} = data.options;
let newTpl = tpl;
for (let field of replaceFields) {
newTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);
}
return newTpl;
} }
function traverseNode(root, callback) { function traverseNode(root, callback) {
......
{"version":3,"file":"index.umd.js","sources":["../src/index.js"],"sourcesContent":["/**\n * Created by rockyl on 2019-11-13.\n *\n * 项目发布\n */\n\nconst fs = require('fs');\n\nexport async function pack(project, getProcesses, getScripts) {\n\tlet data = JSON.parse(project.data);\n\n\tlet scriptIDs = [];\n\tfor(let view of data.views){\n\t\ttraverseNode(view, (node) => {\n\t\t\tif (node.scripts && node.scripts.length > 0) {\n\t\t\t\tfor (let {script} of node.scripts) {\n\t\t\t\t\tif (!scriptIDs.includes(script)) {\n\t\t\t\t\t\tscriptIDs.push(script);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t//console.log('scriptIDs:', scriptIDs);\n\tlet scriptsContainer = data.scripts = {};\n\tconst scripts = await getScripts(scriptIDs);\n\tfor (let scriptData of scripts) {\n\t\tlet {id, code} = JSON.parse(scriptData);\n\t\tscriptsContainer[id] = code;\n\t}\n\t//console.log('scripts:', scriptsContainer);\n\n\tlet processIDs = [];\n\tfor (let process of data.processes) {\n\t\tfor (let key in process.sub) {\n\t\t\tlet p = process.sub[key];\n\t\t\tif (!processIDs.includes(p.meta)) {\n\t\t\t\tprocessIDs.push(p.meta);\n\t\t\t}\n\t\t}\n\t}\n\t//console.log('processIDs:', processIDs);\n\tlet builtinProcesses = data.builtinProcesses = [];\n\tlet processes = await getProcesses(processIDs);\n\tfor(let processData of processes){\n\t\tlet process = JSON.parse(processData);\n\t\tbuiltinProcesses.push(process);\n\t}\n\t//console.log('processes:', data.processes);\n\n\tfs.writeFileSync('test.json', JSON.stringify(data));\n}\n\nfunction traverseNode(root, callback) {\n\tcallback(root);\n\tif (root.children && root.children.length > 0) {\n\t\tfor (let childNode of root.children) {\n\t\t\ttraverseNode(childNode, callback);\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";;;;;;CAAA;CACA;CACA;CACA;CACA;;CAEA,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;;AAEzB,CAAO,eAAe,IAAI,CAAC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE;CAC9D,CAAC,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;;CAErC,CAAC,IAAI,SAAS,GAAG,EAAE,CAAC;CACpB,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC;CAC5B,EAAE,YAAY,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK;CAC/B,GAAG,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE;CAChD,IAAI,KAAK,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE;CACvC,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;CACtC,MAAM,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;CAC7B,MAAM;CACN,KAAK;CACL,IAAI;CACJ,GAAG,CAAC,CAAC;CACL,EAAE;CACF;CACA,CAAC,IAAI,gBAAgB,GAAG,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;CAC1C,CAAC,MAAM,OAAO,GAAG,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC;CAC7C,CAAC,KAAK,IAAI,UAAU,IAAI,OAAO,EAAE;CACjC,EAAE,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;CAC1C,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC;CAC9B,EAAE;CACF;;CAEA,CAAC,IAAI,UAAU,GAAG,EAAE,CAAC;CACrB,CAAC,KAAK,IAAI,OAAO,IAAI,IAAI,CAAC,SAAS,EAAE;CACrC,EAAE,KAAK,IAAI,GAAG,IAAI,OAAO,CAAC,GAAG,EAAE;CAC/B,GAAG,IAAI,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CAC5B,GAAG,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;CACrC,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;CAC5B,IAAI;CACJ,GAAG;CACH,EAAE;CACF;CACA,CAAC,IAAI,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,GAAG,EAAE,CAAC;CACnD,CAAC,IAAI,SAAS,GAAG,MAAM,YAAY,CAAC,UAAU,CAAC,CAAC;CAChD,CAAC,IAAI,IAAI,WAAW,IAAI,SAAS,CAAC;CAClC,EAAE,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;CACxC,EAAE,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;CACjC,EAAE;CACF;;CAEA,CAAC,EAAE,CAAC,aAAa,CAAC,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;CACrD,CAAC;;CAED,SAAS,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE;CACtC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;CAChB,CAAC,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;CAChD,EAAE,KAAK,IAAI,SAAS,IAAI,IAAI,CAAC,QAAQ,EAAE;CACvC,GAAG,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;CACrC,GAAG;CACH,EAAE;CACF,CAAC;;;;;;;;;;;;"} {"version":3,"file":"index.umd.js","sources":["../src/index.js"],"sourcesContent":["/**\n * Created by rockyl on 2019-11-13.\n *\n * 项目发布\n */\n\nconst replaceFields = ['page_title', 'container_id'];\n\nexport async function pack(project, options) {\n\tlet version = Date.now();\n\tlet data = JSON.parse(project.data);\n\tconst newTpl = await pageTemplate(data, options);\n\tconst newData = await packData(data, options);\n\n\treturn {\n\t\tversion,\n\t\tdata: newData,\n\t\ttpl: newTpl,\n\t}\n}\n\nasync function packData(data, {getProcesses, getScripts}) {\n\tlet newData = {};\n\tnewData.options = data.options;\n\tdelete newData.options.tpl;\n\tnewData.views = data.views;\n\tnewData.assets = data.assets;\n\tnewData.dataMapping = data.dataMapping;\n\tnewData.processes = data.processes;\n\n\tlet scriptIDs = [];\n\tfor (let view of newData.views) {\n\t\ttraverseNode(view, (node) => {\n\t\t\tif (node.scripts && node.scripts.length > 0) {\n\t\t\t\tfor (let {script} of node.scripts) {\n\t\t\t\t\tif (!scriptIDs.includes(script)) {\n\t\t\t\t\t\tscriptIDs.push(script);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\t//console.log('scriptIDs:', scriptIDs);\n\tlet scriptsContainer = newData.scripts = {};\n\tconst scripts = await getScripts(scriptIDs);\n\tfor (let scriptData of scripts) {\n\t\tlet {id, code} = JSON.parse(scriptData);\n\t\tscriptsContainer[id] = code;\n\t}\n\t//console.log('scripts:', scriptsContainer);\n\n\tlet processIDs = [];\n\tfor (let process of newData.processes) {\n\t\tfor (let key in process.sub) {\n\t\t\tlet p = process.sub[key];\n\t\t\tif (!processIDs.includes(p.meta)) {\n\t\t\t\tprocessIDs.push(p.meta);\n\t\t\t}\n\t\t}\n\t}\n\t//console.log('processIDs:', processIDs);\n\tlet builtinProcesses = newData.builtinProcesses = [];\n\tlet processes = await getProcesses(processIDs);\n\tfor (let processData of processes) {\n\t\tlet process = JSON.parse(processData);\n\t\tbuiltinProcesses.push(process);\n\t}\n\t//console.log('processes:', data.processes);\n\n\treturn JSON.stringify(newData);\n}\n\nasync function pageTemplate(data, options) {\n\tconst {tpl,} = data.options;\n\tlet newTpl = tpl;\n\tfor (let field of replaceFields) {\n\t\tnewTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);\n\t}\n\treturn newTpl;\n}\n\nfunction traverseNode(root, callback) {\n\tcallback(root);\n\tif (root.children && root.children.length > 0) {\n\t\tfor (let childNode of root.children) {\n\t\t\ttraverseNode(childNode, callback);\n\t\t}\n\t}\n}\n"],"names":[],"mappings":";;;;;;CAAA;CACA;CACA;CACA;CACA;;CAEA,MAAM,aAAa,GAAG,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;;AAErD,CAAO,eAAe,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE;CAC7C,CAAC,IAAI,OAAO,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;CAC1B,CAAC,IAAI,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;CACrC,CAAC,MAAM,MAAM,GAAG,MAAM,YAAY,CAAC,IAAI,AAAS,CAAC,CAAC;CAClD,CAAC,MAAM,OAAO,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;;CAE/C,CAAC,OAAO;CACR,EAAE,OAAO;CACT,EAAE,IAAI,EAAE,OAAO;CACf,EAAE,GAAG,EAAE,MAAM;CACb,EAAE;CACF,CAAC;;CAED,eAAe,QAAQ,CAAC,IAAI,EAAE,CAAC,YAAY,EAAE,UAAU,CAAC,EAAE;CAC1D,CAAC,IAAI,OAAO,GAAG,EAAE,CAAC;CAClB,CAAC,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;CAChC,CAAC,OAAO,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC;CAC5B,CAAC,OAAO,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC;CAC5B,CAAC,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;CAC9B,CAAC,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC;CACxC,CAAC,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;;CAEpC,CAAC,IAAI,SAAS,GAAG,EAAE,CAAC;CACpB,CAAC,KAAK,IAAI,IAAI,IAAI,OAAO,CAAC,KAAK,EAAE;CACjC,EAAE,YAAY,CAAC,IAAI,EAAE,CAAC,IAAI,KAAK;CAC/B,GAAG,IAAI,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE;CAChD,IAAI,KAAK,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE;CACvC,KAAK,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;CACtC,MAAM,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;CAC7B,MAAM;CACN,KAAK;CACL,IAAI;CACJ,GAAG,CAAC,CAAC;CACL,EAAE;CACF;CACA,CAAC,IAAI,gBAAgB,GAAG,OAAO,CAAC,OAAO,GAAG,EAAE,CAAC;CAC7C,CAAC,MAAM,OAAO,GAAG,MAAM,UAAU,CAAC,SAAS,CAAC,CAAC;CAC7C,CAAC,KAAK,IAAI,UAAU,IAAI,OAAO,EAAE;CACjC,EAAE,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;CAC1C,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC;CAC9B,EAAE;CACF;;CAEA,CAAC,IAAI,UAAU,GAAG,EAAE,CAAC;CACrB,CAAC,KAAK,IAAI,OAAO,IAAI,OAAO,CAAC,SAAS,EAAE;CACxC,EAAE,KAAK,IAAI,GAAG,IAAI,OAAO,CAAC,GAAG,EAAE;CAC/B,GAAG,IAAI,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;CAC5B,GAAG,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE;CACrC,IAAI,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;CAC5B,IAAI;CACJ,GAAG;CACH,EAAE;CACF;CACA,CAAC,IAAI,gBAAgB,GAAG,OAAO,CAAC,gBAAgB,GAAG,EAAE,CAAC;CACtD,CAAC,IAAI,SAAS,GAAG,MAAM,YAAY,CAAC,UAAU,CAAC,CAAC;CAChD,CAAC,KAAK,IAAI,WAAW,IAAI,SAAS,EAAE;CACpC,EAAE,IAAI,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;CACxC,EAAE,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;CACjC,EAAE;CACF;;CAEA,CAAC,OAAO,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;CAChC,CAAC;;CAED,eAAe,YAAY,CAAC,IAAI,EAAE,OAAO,EAAE;CAC3C,CAAC,MAAM,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,OAAO,CAAC;CAC7B,CAAC,IAAI,MAAM,GAAG,GAAG,CAAC;CAClB,CAAC,KAAK,IAAI,KAAK,IAAI,aAAa,EAAE;CAClC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;CAC3E,EAAE;CACF,CAAC,OAAO,MAAM,CAAC;CACf,CAAC;;CAED,SAAS,YAAY,CAAC,IAAI,EAAE,QAAQ,EAAE;CACtC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;CAChB,CAAC,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;CAChD,EAAE,KAAK,IAAI,SAAS,IAAI,IAAI,CAAC,QAAQ,EAAE;CACvC,GAAG,YAAY,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;CACrC,GAAG;CACH,EAAE;CACF,CAAC;;;;;;;;;;;;"}
\ No newline at end of file \ No newline at end of file
...@@ -4,13 +4,32 @@ ...@@ -4,13 +4,32 @@
* 项目发布 * 项目发布
*/ */
const fs = require('fs'); const replaceFields = ['page_title', 'container_id'];
export async function pack(project, getProcesses, getScripts) { export async function pack(project, options) {
let version = Date.now();
let data = JSON.parse(project.data); let data = JSON.parse(project.data);
const newTpl = await pageTemplate(data, options);
const newData = await packData(data, options);
return {
version,
data: newData,
tpl: newTpl,
}
}
async function packData(data, {getProcesses, getScripts}) {
let newData = {};
newData.options = data.options;
delete newData.options.tpl;
newData.views = data.views;
newData.assets = data.assets;
newData.dataMapping = data.dataMapping;
newData.processes = data.processes;
let scriptIDs = []; let scriptIDs = [];
for(let view of data.views){ for (let view of newData.views) {
traverseNode(view, (node) => { traverseNode(view, (node) => {
if (node.scripts && node.scripts.length > 0) { if (node.scripts && node.scripts.length > 0) {
for (let {script} of node.scripts) { for (let {script} of node.scripts) {
...@@ -22,7 +41,7 @@ export async function pack(project, getProcesses, getScripts) { ...@@ -22,7 +41,7 @@ export async function pack(project, getProcesses, getScripts) {
}); });
} }
//console.log('scriptIDs:', scriptIDs); //console.log('scriptIDs:', scriptIDs);
let scriptsContainer = data.scripts = {}; let scriptsContainer = newData.scripts = {};
const scripts = await getScripts(scriptIDs); const scripts = await getScripts(scriptIDs);
for (let scriptData of scripts) { for (let scriptData of scripts) {
let {id, code} = JSON.parse(scriptData); let {id, code} = JSON.parse(scriptData);
...@@ -31,7 +50,7 @@ export async function pack(project, getProcesses, getScripts) { ...@@ -31,7 +50,7 @@ export async function pack(project, getProcesses, getScripts) {
//console.log('scripts:', scriptsContainer); //console.log('scripts:', scriptsContainer);
let processIDs = []; let processIDs = [];
for (let process of data.processes) { for (let process of newData.processes) {
for (let key in process.sub) { for (let key in process.sub) {
let p = process.sub[key]; let p = process.sub[key];
if (!processIDs.includes(p.meta)) { if (!processIDs.includes(p.meta)) {
...@@ -40,15 +59,24 @@ export async function pack(project, getProcesses, getScripts) { ...@@ -40,15 +59,24 @@ export async function pack(project, getProcesses, getScripts) {
} }
} }
//console.log('processIDs:', processIDs); //console.log('processIDs:', processIDs);
let builtinProcesses = data.builtinProcesses = []; let builtinProcesses = newData.builtinProcesses = [];
let processes = await getProcesses(processIDs); let processes = await getProcesses(processIDs);
for(let processData of processes){ for (let processData of processes) {
let process = JSON.parse(processData); let process = JSON.parse(processData);
builtinProcesses.push(process); builtinProcesses.push(process);
} }
//console.log('processes:', data.processes); //console.log('processes:', data.processes);
fs.writeFileSync('test.json', JSON.stringify(data)); return JSON.stringify(newData);
}
async function pageTemplate(data, options) {
const {tpl,} = data.options;
let newTpl = tpl;
for (let field of replaceFields) {
newTpl = newTpl.replace(`$${field.toUpperCase()}$`, data.options[field]);
}
return newTpl;
} }
function traverseNode(root, callback) { function traverseNode(root, callback) {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
*/ */
const data = { const data = {
launchOptions: { options: {
entrySceneView: 'view1', entrySceneView: 'view1',
containerID: 'game-container', containerID: 'game-container',
designWidth: 750, designWidth: 750,
...@@ -11,6 +11,38 @@ const data = { ...@@ -11,6 +11,38 @@ const data = {
frameRate: 60, frameRate: 60,
scaleMode: 'fixedWidth', scaleMode: 'fixedWidth',
rendererType: 'webgl', rendererType: 'webgl',
tpl:` <meta charset="UTF-8">
<title>$PAGE_TITLE$</title>
<meta name="viewport"
content="width=device-width,initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="full-screen" content="true"/>
<meta name="screen-orientation" content="portrait"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="360-fullscreen" content="true"/>
<style>
html,
body {
padding: 0;
margin: 0;
border: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
background-color: white;
}
</style>
</head>
<body>
<div id="$CONTAINER_ID$" style="line-height:0;font-size:0"></div>
<script src="http://10.10.94.134:4002/dist/index.js"></script>
<script>
engine.launch('http://10.10.94.134:4002/examples/mock/test.json');
</script>
`
}, },
"views": [{ "views": [{
"name": "view1", "name": "view1",
...@@ -240,7 +272,7 @@ const data = { ...@@ -240,7 +272,7 @@ const data = {
alias: 'test', alias: 'test',
meta: 'test', meta: 'test',
props: { props: {
text: '$_linked_$', text: 'Hello',
}, },
output: { output: {
success: [], success: [],
......
...@@ -4,11 +4,19 @@ ...@@ -4,11 +4,19 @@
const projectData = require('./project'); const projectData = require('./project');
const {pack} = require('../dist/index'); const {pack} = require('../dist/index');
const fs = require('fs');
let project = projectData(); let project = projectData();
pack(project.data, getProcesses, getScripts); (async function () {
const result = await pack(project.data, {getProcesses, getScripts});
function getProcesses(ids){ const {version, data, tpl} = result;
fs.writeFileSync('test.json', data);
console.log('version:', version);
console.log('template:\n', tpl);
})();
function getProcesses(ids) {
return [ return [
JSON.stringify({ JSON.stringify({
id: 'entry', id: 'entry',
...@@ -20,7 +28,7 @@ function getProcesses(ids){ ...@@ -20,7 +28,7 @@ function getProcesses(ids){
] ]
} }
function getScripts(ids){ function getScripts(ids) {
return [ return [
JSON.stringify({ JSON.stringify({
id: 'wave', id: 'wave',
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment