/libraries/fertilizer/source/event/flow/html-nwjs/Build.js

http://github.com/martensms/lycheeJS · JavaScript · 276 lines · 153 code · 106 blank · 17 comment · 34 complexity · 3c88b1617877648f6588e4f1c4800e77 MD5 · raw file

  1. lychee.define('fertilizer.event.flow.html-nwjs.Build').includes([
  2. 'fertilizer.event.Flow'
  3. ]).exports((lychee, global, attachments) => {
  4. const _Flow = lychee.import('fertilizer.event.Flow');
  5. const _INDEX = {
  6. application: attachments['index.html'],
  7. library: attachments['index.js']
  8. };
  9. const _META = attachments['package.json'];
  10. /*
  11. * HELPERS
  12. */
  13. const _build_index = function(variant, stuff) {
  14. stuff = stuff instanceof Stuff ? stuff : null;
  15. if (stuff !== null) {
  16. let code = stuff.buffer.toString('utf8');
  17. if (code.includes('${blob}') === false) {
  18. code = _INDEX[variant].buffer.toString('utf8');
  19. }
  20. let env = this.__environment;
  21. if (env !== null) {
  22. let lines = code.split('\n');
  23. let blob = JSON.stringify(env.serialize(), null, '\t');
  24. let blob_line = lines.find(line => line.includes('${blob}')) || null;
  25. if (blob_line !== null) {
  26. let indent = blob_line.substr(0, blob_line.indexOf(blob_line.trim()));
  27. if (indent !== '') {
  28. blob = blob.split('\n').map((line, l) => {
  29. return l === 0 ? line : indent + line;
  30. }).join('\n');
  31. }
  32. }
  33. let profile = JSON.stringify(this.__profile, null, '\t');
  34. let profile_line = lines.find(line => line.includes('{$profile}')) || null;
  35. if (profile_line !== null) {
  36. let indent = profile_line.substr(0, profile_line.indexOf(profile_line.trim()));
  37. if (indent !== '') {
  38. profile = profile.split('\n').map((line, l) => {
  39. return l === 0 ? line : indent + line;
  40. }).join('\n');
  41. }
  42. }
  43. stuff.buffer = Buffer.from(code.replaceObject({
  44. id: env.id,
  45. blob: blob,
  46. profile: profile
  47. }), 'utf8');
  48. }
  49. }
  50. };
  51. const _build_meta = function(variant, asset) {
  52. let buffer = asset.buffer;
  53. if (buffer instanceof Object) {
  54. let env = this.__environment;
  55. if (env !== null) {
  56. let date = new Date();
  57. let today = (date.getUTCMonth() + 1) + '/' + date.getUTCDate();
  58. let version = lychee.VERSION + '/' + today;
  59. asset.buffer = JSON.parse(JSON.stringify(buffer).replaceObject({
  60. id: env.id,
  61. version: version
  62. }));
  63. }
  64. }
  65. };
  66. const _create_index = function(variant) {
  67. let template = null;
  68. if (variant === 'application') {
  69. template = lychee.serialize(_INDEX.application);
  70. } else if (variant === 'library') {
  71. template = lychee.serialize(_INDEX.library);
  72. }
  73. if (template !== null) {
  74. let asset = lychee.deserialize(template);
  75. if (asset !== null) {
  76. let base = asset.url.split('/').pop();
  77. let name = base.split('.').slice(1).join('.');
  78. asset.url = './' + name;
  79. }
  80. return asset;
  81. }
  82. return null;
  83. };
  84. const _create_meta = function(variant) {
  85. let template = lychee.serialize(_META);
  86. if (template !== null) {
  87. let asset = lychee.deserialize(template);
  88. if (asset !== null) {
  89. let base = asset.url.split('/').pop();
  90. let name = base.split('.').slice(1).join('.');
  91. asset.url = './' + name;
  92. }
  93. return asset;
  94. }
  95. return null;
  96. };
  97. /*
  98. * IMPLEMENTATION
  99. */
  100. const Composite = function(data) {
  101. let states = Object.assign({}, data);
  102. _Flow.call(this, states);
  103. states = null;
  104. /*
  105. * INITIALIZATION
  106. */
  107. this.unbind('build-assets');
  108. this.bind('build-assets', function(oncomplete) {
  109. let action = this.action;
  110. let project = this.project;
  111. if (action !== null && project !== null) {
  112. console.log('fertilizer: ' + action + '/BUILD-ASSETS "' + project + '"');
  113. let env = this.__environment;
  114. if (env !== null) {
  115. let base_index = '*';
  116. let variant = env.variant;
  117. if (variant === 'application') {
  118. base_index = 'index.html';
  119. } else if (variant === 'library') {
  120. base_index = 'index.js';
  121. }
  122. let meta = this.assets.find(asset => asset.url.endsWith('/package.json')) || null;
  123. if (meta === null || meta.buffer === null) {
  124. meta = _create_meta.call(this, variant);
  125. _build_meta.call(this, variant, meta);
  126. this.assets.push(meta);
  127. } else {
  128. _build_meta.call(this, variant, meta);
  129. }
  130. let index = this.assets.find(asset => asset.url.endsWith('/' + base_index)) || null;
  131. if (index === null || index.buffer === null) {
  132. index = _create_index.call(this, variant);
  133. _build_index.call(this, variant, index);
  134. this.assets.push(index);
  135. } else {
  136. _build_index.call(this, variant, index);
  137. }
  138. oncomplete(true);
  139. } else {
  140. oncomplete(false);
  141. }
  142. } else {
  143. oncomplete(true);
  144. }
  145. }, this);
  146. /*
  147. * FLOW
  148. */
  149. // this.then('configure-project');
  150. this.then('read-package');
  151. this.then('read-assets');
  152. this.then('read-assets-crux');
  153. this.then('build-environment');
  154. this.then('build-assets');
  155. this.then('write-assets');
  156. this.then('build-project');
  157. // this.then('package-runtime');
  158. // this.then('package-project');
  159. // this.then('publish-project');
  160. };
  161. Composite.prototype = {
  162. // deserialize: function(blob) {},
  163. serialize: function() {
  164. let data = _Flow.prototype.serialize.call(this);
  165. data['constructor'] = 'fertilizer.event.flow.html-nwjs.Build';
  166. return data;
  167. }
  168. };
  169. return Composite;
  170. });