This repository was archived by the owner on Aug 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathhelper.js
1290 lines (1041 loc) · 38.5 KB
/
helper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************************************************************************************************************
*
* HELPER
*
**************************************************************************************************************************************************************/
'use strict';
/**
* Dependencies
*/
const Autoprefixer = require('autoprefixer');
const Postcss = require('postcss');
const Sass = require('node-sass');
const Chalk = require(`chalk`);
const Path = require(`path`);
const Fs = require(`fs`);
const Os = require(`os`);
const PKG = require( Path.normalize(`${ process.cwd() }/package.json`) );
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
// GLOBALS
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
/**
* Create a path if it doesn’t exist
*
* @param {string} dir - The path to be checked and created if not found
*/
const CreateDir = ( dir ) => {
const splitPath = dir.split('/');
splitPath.reduce( ( path, subPath ) => {
let currentPath;
if( subPath != '.' ) {
currentPath = `${ path }/${ subPath }`;
if( !Fs.existsSync( currentPath ) ){
Fs.mkdirSync( currentPath );
}
}
else {
currentPath = subPath;
}
return currentPath;
}, '');
};
/**
* Copy the temp folder to a destination and replace files inside
*
* @param {string} source - The temp folder path
* @param {string} destination - The path for where to copy the temp folder to
* @param {object} replacements - The replacement object
*/
const CopyTemp = ( source, destination, replacements ) => {
CreateDir( destination );
const files = Fs.readdirSync( source ); // create target folder
for( let file of files ) {
if( !file.startsWith('.') || file === '.babelrc' ) { // don’t copy hidden files
const current = Fs.lstatSync( Path.join( source, file ) );
if( current.isDirectory() ) {
CopyTemp( Path.join( source, file ), Path.join( destination, file ), replacements ); // call self
}
else {
CopyFile( Path.join( source, file ), Path.join( destination, file ) ); // copy file over
ReplaceFileContent( replacements, Path.join( destination, file ) ); // replace all placeholders
}
}
}
};
/**
* Copy a file
*
* @param {string} source - The path to the file to move
* @param {string} target - The path to move it to
*/
const CopyFile = ( source, target ) => {
if( !Fs.existsSync( source ) ) {
return false;
}
const data = Fs.readFileSync( source, 'utf-8');
Fs.writeFileSync( target, data );
HELPER.log.success(`Moved file to ${ Chalk.yellow( target ) }`);
};
/**
* Replace a string with a another globally in the file
*
* @param {object} searches - What is replaced with what, Key = the text to be replaced, value = the replacement text.
* @param {string} FileName - The file to be converted
*/
const ReplaceFileContent = ( searches, fileName ) => {
let content = Fs.readFileSync( fileName, 'utf-8');
for( const replacing of Object.keys( searches ) ) { // replace all searches
content = content.split( replacing ).join( searches[ replacing ] ); // replacing globally without regex
}
Fs.writeFileSync( fileName, content, ( error ) => {
if( error ) {
HELPER.log.error(`Doh! ${ error }`);
return;
}
});
HELPER.log.success(`Replaced file strings inside ${ Chalk.yellow( fileName ) }`);
};
/**
* Generate a dependency representation of a module inside an object by calling this function repeatedly
*
* @param {string} name - The name of the module
*
* @return {object} - An object of the dependency tree
*/
const GetDepTree = ( name ) => {
let tree = {};
const pkgPath = Path.normalize(`${ process.cwd() }/../${ name.substring( 8 ) }/package.json`);
const pkg = require( pkgPath, 'utf-8'); // we use require because we like the caching here
if( Object.keys( pkg.peerDependencies ).length > 0 ) {
for( const module of Object.keys( pkg.peerDependencies ) ) {
tree[ module.substring( 8 ) ] = GetDepTree( module );
}
}
return tree;
};
/**
* Get all modules within a given path.
* Module is folder with package.json
*
* @param {string} thisPath - The path that contains the desired folders
* @param {boolean} verbose - Verbose flag either undefined or true
*
* @return {array} - An array of names of each folder
*/
const GetModules = ( thisPath, verbose ) => {
try {
let folders = Fs.readdirSync( thisPath ).filter(
thisFile => {
let path = `${ thisPath }/${ thisFile }`;
return Fs.statSync(path).isDirectory() && Fs.existsSync(`${path}/package.json`)
}
).filter(
thisFile => thisFile !== 'core'
);
return ['core', ...folders ]; // moving core to top
}
catch( error ) {
return [];
}
};
/**
* Compile Sass code into CSS
*
* @param {string} scss - The Sass file to be compiled
* @param {string} css - The location where the CSS should be written to
*/
const Sassify = ( scss, css ) => {
const compiled = Sass.renderSync({
file: scss,
indentType: 'tab',
precision: 8,
includePaths: [ './lib/sass/' ],
outputStyle: 'compressed',
});
Fs.writeFileSync( css, compiled.css );
HELPER.log.success(`Compiled Sass ${ Chalk.yellow( scss ) }`);
};
/**
* Autoprefix a css file
*
* @param {string} file - The file to be prefixed
*/
const Autoprefix = ( file ) => {
const data = Fs.readFileSync( file, 'utf-8' );
Postcss([ Autoprefixer({ browsers: ['last 2 versions', 'ie 8', 'ie 9', 'ie 10'] }) ])
.process( data, { from: file, to: file } )
.then( ( prefixed ) => {
prefixed
.warnings()
.forEach( ( warn ) => {
console.warn( warn.toString() );
});
Fs.writeFileSync( file, prefixed.css );
HELPER.log.success(`Autoprefixed file ${ Chalk.yellow( file ) }`);
});
};
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
// Constructor
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
const HELPER = (() => { // constructor factory
return {
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
// Settings
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
NAME: PKG.name,
VERSION: PKG.version,
DEPENDENCIES: PKG.peerDependencies,
TEMPLATES: Path.normalize(`${ __dirname }/../.templates`),
URL: `https://auds.service.gov.au`,
GITHUB: `https://github.com/govau/design-system-components/`,
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
// Log to console.log
//
// @method success Log success info
// @param [text] {string} The sting you want to log
// @return [ansi] output
//
// @method error Log error info
// @param [text] {string} The sting you want to log
// @return [ansi] output
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
log: {
success: ( text ) => {
console.log( Chalk.green(`✔︎ ${text}`));
},
error: ( text ) => {
console.error( Chalk.red(`✗ ${text}`));
},
},
}
})();
/***************************************************************************************************************************************************************
*
* PRECOMPILE MODULE
*
* Replace tags and move files from src/ to lib/
*
**************************************************************************************************************************************************************/
/**
* Dependencies
*/
const Babel = require('@babel/core');
const Treeify = require('treeify');
HELPER.precompile = (() => {
/**
* PUBLIC METHODS
*/
return {
/**
* Starting off precompile
*/
init: () => {
HELPER.precompile.sass();
HELPER.precompile.readme();
HELPER.precompile.js();
HELPER.precompile.reactSass();
HELPER.precompile.react();
},
/**
* Move files from src/ to lib/ and replace placeholders inside
*/
sass: () => {
const _hasSass = Fs.existsSync( `${ process.cwd() }/src/sass/_module.scss` );
if( _hasSass ) {
// 1. create path
CreateDir('./lib/sass/');
// 2. copy files
CopyFile('./src/sass/_globals.scss', './lib/sass/_globals.scss');
CopyFile('./src/sass/_module.scss', './lib/sass/_module.scss');
CopyFile('./src/sass/_print.scss', './lib/sass/_print.scss');
// Rethingiemajiging the peer dependencies for sass
let dependencies = [];
for( const module of Object.keys( HELPER.DEPENDENCIES ) ) {
dependencies.push(`("${ module }", "${ HELPER.DEPENDENCIES[ module ].replace('^', '').replace('>', '') }"),`);
}
// 3.replace strings inside new files in lib
const searches = {
'[replace-name]': HELPER.NAME,
'[replace-version]': HELPER.VERSION,
'[replace-dependencies]': dependencies.join(`\n\t`),
};
ReplaceFileContent( searches, './lib/sass/_globals.scss' );
ReplaceFileContent( searches, './lib/sass/_module.scss' );
ReplaceFileContent( searches, './lib/sass/_print.scss' );
}
},
/**
* Inject the current dependency tree into the readme file
*/
readme: () => {
const depTree = GetDepTree( HELPER.NAME );
const prettyTree = `${ HELPER.NAME.substring( 8 ) }\n${ Treeify.asTree( depTree ) }`;
let readme = Fs.readFileSync( `./README.md`, `utf-8`);
readme = readme.replace(/## Dependency graph\n\n```shell[\s\S]*?```/, `## Dependency graph\n\n\`\`\`shell\n${ prettyTree }\`\`\``);
Fs.writeFileSync( `./README.md`, readme, `utf-8` );
HELPER.log.success(`Injected dependency tree into ${ Chalk.yellow('README.md') }`);
},
js: () => {
const _hasJS = Fs.existsSync( `${ process.cwd() }/src/js/module.js` );
const _hasJquery = Fs.existsSync( `${ process.cwd() }/src/js/jquery.js` );
const _hasReact = Fs.existsSync( `${ process.cwd() }/src/js/react.js` );
// 1. create path
if( _hasJS || _hasJquery || _hasReact ) {
CreateDir(`./lib/js/`);
}
// 2. copy files
if( _hasJS ) {
CopyFile(`./src/js/module.js`, `./lib/js/module.js`);
}
if( _hasJquery ) {
CopyFile(`./src/js/jquery.js`, `./lib/js/jquery.js`);
}
if( _hasReact ) {
CopyFile(`./src/js/react.js`, `./lib/js/react.js`);
CopyFile(`./src/js/react.js`, `./tests/react/${ HELPER.NAME.substring( 8 ) }.js`);
}
// 3.replace strings inside new files in lib
const searches = {
'[replace-name]': HELPER.NAME,
'[replace-version]': HELPER.VERSION,
'// ES6 dependency: ': '',
};
if( _hasJS ) {
ReplaceFileContent( searches, `./lib/js/module.js` );
}
if( _hasJquery ) {
ReplaceFileContent( searches, `./lib/js/jquery.js` );
}
if( _hasReact ) {
ReplaceFileContent( searches, `./lib/js/react.js` );
ReplaceFileContent( searches, `./tests/react/${ HELPER.NAME.substring( 8 ) }.js` );
}
},
img: () => {
},
svg: () => {
},
/**
* Compile and autoprefix Sass
*/
reactSass: () => {
if( Fs.existsSync(`${ process.cwd() }/lib/js/react.js`) ) {
// 1. create directory
CreateDir('./lib/css/');
// 2. compile scss
Sassify('./src/sass/_dependencies.scss', './lib/css/styles.css');
// 3. autoprefixer
Autoprefix('./lib/css/styles.css');
}
},
/**
* Transpile react to es5, compile css file and include it into our react component
*/
react: () => {
if( Fs.existsSync(`${ process.cwd() }/lib/js/react.js`) ) {
const reactOptions = {
ast: false,
compact: true,
minified: true,
presets: [
`@babel/preset-env`,
`@babel/preset-react`
],
sourceMaps: "both"
};
const searches = {
'[replace-name]': HELPER.NAME,
'[replace-version]': HELPER.VERSION,
'// ES5 dependency: ': '',
'// [replace-imports]': `import '../css/styles.css';`,
};
// 1. Copy files
CopyFile('./src/js/react.js', './lib/js/react.es5.js');
// 2. Replace the comment with an import statement
ReplaceFileContent( searches, `${ process.cwd() }/lib/js/react.es5.js` );
// 3. Compile /lib/react.js to react.es5.js
Babel.transformFile( `./lib/js/react.es5.js`, reactOptions, ( error, result ) => {
if( error ) {
HELPER.log.error(`We encountered an error when transpiling the react file in ${ Chalk.yellow( `${ process.cwd() }/lib/js/react.es5.js` ) }`);
HELPER.log.error( error );
}
else {
Fs.writeFileSync( `./lib/js/react.es5.js`, result.code );
Fs.writeFileSync( `./lib/js/react.es5.js.map`, JSON.stringify( result.map, null, 2 ) );
}
});
}
},
}
})();
/***************************************************************************************************************************************************************
*
* COMPILE MODULE
*
* Compile assets for tests
*
**************************************************************************************************************************************************************/
/**
* Dependencies
*/
const Semver = require('semver');
HELPER.compile = (() => {
/**
* PRIVATE
* Flatten a deep object into a one level array
*
* @param {object} object - The object to be flattened
*
* @return {array} - The resulting flat array
*/
const flatten = object => {
return [].concat( ...Object.keys( object ).map( key =>
Object.keys( object[ key ] ).length > 0 ?
[ key, ...flatten( object[ key ] ) ] :
key
)
);
};
/**
* PRIVATE
* Get js from all dependencies for a module and write to a file
*
* @param {string} from - The file to read from
* @param {string} to - The file to write to
*/
const getAllJs = ( from, to ) => {
if( Fs.existsSync( Path.normalize(`${ process.cwd() }${ from }`) ) ) {
const allDependencies = GetDepTree( HELPER.NAME );
const dependencies = [ ...new Set( flatten( allDependencies ) ) ];
let code = '';
dependencies.forEach( dependency => {
if( Fs.existsSync( Path.normalize(`${ process.cwd() }/../${ dependency }${ from }`) ) ) {
// 1. get all dependencies
code += `\n\n/* ${ dependency } */\n` + Fs.readFileSync( Path.normalize(`${ process.cwd() }/../${ dependency }${ from }`), 'utf-8');
}
});
code += `\n\n/* ${ HELPER.NAME } */\n` + Fs.readFileSync( Path.normalize(`${ process.cwd() }${ from }`), 'utf-8');
// 2. write files
Fs.writeFileSync( `.${ to }`, code, `utf-8` );
HELPER.log.success(`Written script ${ Chalk.yellow( `.${ to }` ) }`);
}
};
/**
* PRIVATE
* Get react from all dependencies for a module and copy them all over
*
* @param {string} from - The file to read from
* @param {string} to - The file to write to
*/
const getAllReact = ( from, to ) => {
if( Fs.existsSync( Path.normalize(`${ process.cwd() }${ from }`) ) ) {
const allDependencies = GetDepTree( HELPER.NAME );
const dependencies = [ ...new Set( flatten( allDependencies ) ) ];
let code = '';
dependencies.forEach( dependency => {
if( Fs.existsSync( Path.normalize(`${ process.cwd() }/../${ dependency }${ from }`) ) ) {
const fileLocation = Path.normalize(`${ to }/${ dependency }.js`);
CopyFile( Path.normalize(`${ process.cwd() }/../${ dependency }${ from }`), `.${ fileLocation }` );
HELPER.log.success(`Written file ${ Chalk.yellow( `.${ fileLocation }` ) }`);
}
});
}
};
/**
* PUBLIC METHODS
*/
return {
/**
* Starting off compile
*/
init: () => {
HELPER.compile.sass();
HELPER.compile.js();
},
/**
* Compile and autoprefix Sass
*/
sass: () => {
let _hasJs = Fs.existsSync( Path.normalize(`${ process.cwd() }/lib/js/module.js`) );
// 1. compile scss
Sassify('./tests/site/test.scss', './tests/site/style.css');
if( _hasJs ) {
Sassify('./tests/jquery/test.scss', './tests/jquery/style.css');
}
// 2. autoprefixer
Autoprefix('./tests/site/style.css');
if( _hasJs ) {
Autoprefix('./tests/jquery/style.css');
}
},
js: () => {
// get all js for module.js
getAllJs( '/lib/js/module.js', '/tests/site/script.js' );
// get all js for jquery.js
getAllJs( '/lib/js/jquery.js', '/tests/jquery/jquery.js' );
getAllJs( '/lib/js/module.js', '/tests/jquery/script.js' );
// get all react scripts
getAllReact( '/lib/js/react.js', '/tests/react/' );
},
img: () => {
},
svg: () => {
},
}
})();
/***************************************************************************************************************************************************************
*
* GENERATE MODULE
*
* Generate a json file with all current modules and their versions.
*
**************************************************************************************************************************************************************/
/**
* Dependencies
*/
HELPER.generate = (() => {
/**
* PUBLIC METHODS
*/
return {
/**
* Starting off generate
*/
init: () => {
const packagesPath = Path.normalize(`${ __dirname }/../packages/`);
const allModules = GetModules( packagesPath );
HELPER.generate.json( allModules );
HELPER.generate.index( allModules );
HELPER.generate.readme( allModules );
},
/**
* Write json file
*
* @param {array} allModules - An array of all modules
*/
json: ( allModules ) => {
const packagesPath = Path.normalize(`${ __dirname }/../packages/`);
let audsJson = {}; // the auds.json object
// iterate over all packages
if( allModules !== undefined && allModules.length > 0 ) {
for( let module of allModules ) {
const packageJson = require( Path.normalize( `${ packagesPath }/${ module }/package.json` ) );
audsJson[ packageJson.name ] = { // add to auds.json
name: packageJson.name,
version: packageJson.version,
peerDependencies: HELPER.generate.getAllDependencies( packageJson.dependencies ),
'pancake-module': packageJson.pancake['pancake-module'],
};
}
}
Fs.writeFile( Path.normalize(`${ __dirname }/../auds.json`), JSON.stringify( audsJson ), 'utf8', ( error ) => { // write file
if( error ) {
console.error( error );
}
HELPER.log.success(`Written ${ Chalk.yellow('auds.json') }`);
});
},
/**
* Get all the dependencies and their child dependencies
*
* @param {object} dependencies - An object containing dependency
* @param {object} dependencies[ name ] - The version string with the name as the key
* @param {object} dependencyBundle - An empty object to add the found dependencies to
*
* @return {array} dependencyBundle - An object containing all of the dependencies found
*/
getAllDependencies: ( dependencies, dependencyBundle = {} ) => {
const packagesPath = Path.normalize( `${ __dirname }/../packages/` );
// For each dependency received go through each of the keys
for( const dependency of Object.keys( dependencies ) ) {
const trimmedDepedency = dependency.replace( '@gov.au/', '' );
const dependencyPackagePath = Path.normalize( `${ packagesPath }/${ trimmedDepedency }/package.json` );
// If there is a package.json file
if( Fs.existsSync( dependencyPackagePath ) ) {
// Get the data inside the package.json
const packageJson = require( dependencyPackagePath );
// Add the dependency information to the bundle
dependencyBundle[ dependency ] = dependencies[ dependency ];
// Iterate over new dependencies
HELPER.generate.getAllDependencies( packageJson.dependencies, dependencyBundle );
}
};
return dependencyBundle;
},
/**
* Write json file
*
* @param {array} allModules - An array of all modules
*/
index: ( allModules ) => {
let index = Fs.readFileSync( Path.normalize(`${ __dirname }/../.templates/index/index.html`), 'utf-8'); // this will be the index file
let replacement = '';
// iterate over all packages
if( allModules !== undefined && allModules.length > 0 ) {
for( let module of allModules ) {
const pkg = require( Path.normalize(`${ __dirname }/../packages/${ module }/package.json`) );
let jquery = '';
let react = '';
if( pkg.pancake['pancake-module'].jquery ) {
jquery = `<a class="link" href="packages/${ module }/tests/jquery/">jquery</a>`;
}
if( pkg.pancake['pancake-module'].react ) {
react = `<a class="link" href="packages/${ module }/tests/react/">react</a>`;
}
replacement += `<li>` +
` <a class="module-list__headline" href="packages/${ module }/tests/">${ module }</a>` +
`<img class="badge badge--version" src="https://img.shields.io/npm/v/@gov.au/${ module }.svg?label=%20&colorA=ffffff&colorB=00698f&style=flat-square" alt="${ module } version">` +
` <br>` +
` <a class="link" href="packages/${ module }/tests/site/">site</a> ${ jquery } ${ react }` +
` <a class="link" href="https://github.com/govau/design-system-components/blob/master/packages/${ module }/README.md">readme</a>` +
`</li>\n`;
}
}
index = index.replace('[-auds-modules-]', replacement);
Fs.writeFile(`${ __dirname }/../index.html`, index, 'utf8', ( error ) => { // write file
if( error ) {
console.error( error );
return;
}
HELPER.log.success(`Written ${ Chalk.yellow('index.html') }`);
});
},
/**
* Inject a list of all modules into the main readme file
*
* @param {array} allModules - An array of all modules
*/
readme: ( allModules ) => {
let list = ``;
if( allModules !== undefined && allModules.length > 0 ) {
for( let module of allModules ) {
let tree = Treeify.asTree( GetDepTree(`@gov.au/${ module }`) );
list += `<details>\n`;
list += ` <summary>@gov.au/${ module }</summary>\n`;
list += ` <br><code>npm install @gov.au/${ module }</code><br>\n`;
list += ` <br>See the <a href="${ HELPER.URL }/packages/${ module }/tests/site/">visual test file for ${ module }</a>\n`;
list += ` <br>See the <a href="${ HELPER.GITHUB }blob/master/packages/${ module }/README.md">readme file for ${ module }</a><br><br>\n`;
if( tree === '' ) {
list += ` <i>No dependencies</i>\n\n----------\n`;
}
else {
list += ` Dependencies:\n <br>\n\n`;
list += `\`\`\`shell\n${ tree }\`\`\`\n----------\n`;
}
list += `</details>\n\n`;
}
}
const pkgPath = Path.normalize(`${ __dirname }/../README.md`);
let readme = Fs.readFileSync( pkgPath, `utf-8`);
readme = readme.replace(/## Modules\n\n[\s\S]*?back to top]/, `## Modules\n\n${ list }<br>\n\n**[⬆ back to top]`);
Fs.writeFileSync( pkgPath, readme, `utf-8` );
HELPER.log.success(`Injected modules into main readme file`);
}
}
})();
/***************************************************************************************************************************************************************
*
* SCAFFOLDING MODULE
*
* Create a new module fast
*
**************************************************************************************************************************************************************/
/**
* Dependencies
*/
const Inquirer = require('inquirer');
HELPER.scaffolding = (() => {
/**
* PUBLIC METHODS
*/
return {
init: () => {
Inquirer.prompt([
{
type: 'input',
name: 'name',
message: `What's the name of the module?`
},
{
type: 'input',
name: 'description',
message: `What's the description of the module?`
},
{
type: 'input',
name: 'contributor_name',
message: `Please provide your name for contributor details:`
},
{
type: 'input',
name: 'contributor_email',
message: `Please provide your email for contributor details:`
},
{
type: 'input',
name: 'contributor_website',
message: `Please provide your website for contributor details:`
}
]).then(( answers ) => {
const template = `${ HELPER.TEMPLATES }/new-module/`;
const destination = Path.normalize(`${ __dirname }/../packages/${ answers.name }`);
const replacements = {
'[-replace-name-]': answers.name,
'[-replace-name-capital-]':
answers.name
.split('')
.reduce(
( lastCharacter, thisCharacter, i ) => lastCharacter +
( i === 0 ?
thisCharacter.toUpperCase() :
thisCharacter
), ''
),
'[-replace-contrib-name-]': answers.contributor_name,
'[-replace-contrib-email-]': answers.contributor_email,
'[-replace-contrib-website-]': answers.contributor_website,
'[-replace-description-]': answers.description,
'[-replace-URL-]': `${ HELPER.URL }/packages/${ answers.name }/tests/site/`,
'[-replace-version-]': '0.1.0',
};
CopyTemp( template, destination, replacements ); // copy all files and replace placeholders inside of them
});
},
}
})();
/***************************************************************************************************************************************************************
*
* TEST MODULE
*
* Testing dependencies
*
**************************************************************************************************************************************************************/
/**
* Dependencies
*/
HELPER.test = (() => {
/**
* PRIVATE
*/
const some = ( thisPath, verbose ) => {
};
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
// PUBLIC METHODS
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
return {
init: () => {
const packagesPath = Path.normalize(`${ __dirname }/../packages/`);
const allModules = GetModules( packagesPath );
HELPER.test.dependencies( allModules );
HELPER.test.packagejson( allModules );
HELPER.test.changelog( allModules );
},
/**
* Test all dependencies
*
* @param {array} allModules - An array of all modules
*/
dependencies: ( allModules ) => {
let pancakes = {};
let dependencies = [];
if( allModules !== undefined && allModules.length > 0 ) {
for( let module of allModules ) {
const packagesPKG = require( Path.normalize(`${ __dirname }/../packages/${ module }/package.json`) );
pancakes[ packagesPKG.name ] = packagesPKG.version; // adding to our library of pancakes
for( const module of Object.keys( packagesPKG.peerDependencies ) ) {
let version = packagesPKG.peerDependencies[ module ];
dependencies.push({
name: module,
version: version,
from: packagesPKG.name,
})
}
}
}
for( const module of dependencies ) {
if( !Semver.satisfies( pancakes[ module.name ], module.version ) ) {
HELPER.log.error(`Peer Dependencies ${ module.name }:${ module.version } failed for ${ module.from }`);
console.log('\n');
process.exit( 1 );
}
}
HELPER.log.success(`All pancakes without dependency conflicts`);
},
/**
* Test all package.json files
*
* @param {array} allModules - An array of all modules
*/
packagejson: ( allModules ) => {
let error = ''; // let’s assume the best
if( allModules !== undefined && allModules.length > 0 ) {
for( let module of allModules ) {
const packagesPKG = require( Path.normalize(`${ __dirname }/../packages/${ module }/package.json`) );
const hasSass = Fs.existsSync( Path.normalize(`${ __dirname }/../packages/${ module }/src/sass/_module.scss`) );
const hasJS = Fs.existsSync( Path.normalize(`${ __dirname }/../packages/${ module }/src/js/module.js`) );
const hasReact = Fs.existsSync( Path.normalize(`${ __dirname }/../packages/${ module }/src/js/react.js`) );
// const hasJQuery = Fs.existsSync( Path.normalize(`${ __dirname }/../packages/${ module }/src/js/jquery.js`) );
// testing lifecycle script
if( packagesPKG.scripts.postinstall !== 'pancake' ) {
error += `The module ${ module } is missing the postinstall lifecycle script "pancake".\n`;
}
// testing pancake object
if( packagesPKG.pancake === undefined ) {
error += `The module ${ module } is missing the pancake object.\n`;
packagesPKG.pancake = {};
packagesPKG.pancake['pancake-module'] = {};
packagesPKG.pancake['pancake-module'].plugins = [];
}
// testing build scripts
if( hasReact && !packagesPKG.scripts['build:react'] ) {
error += `The module ${ module } is missing the "build:react" script.\n`;
}
if( hasReact && !packagesPKG.scripts['build'].includes('npm run build:react') ) {
error += `The module ${ module } is missing the "build:react" task inside the build script.\n`;
}
// testing pancake plugins
if( !packagesPKG.pancake['pancake-module'].plugins.includes('@gov.au/pancake-json') ) {
error += `The module ${ module } is missing the "pancake-json" plugin inside the pancake object.\n`;
}
if( hasSass && !packagesPKG.pancake['pancake-module'].plugins.includes('@gov.au/pancake-sass') ) {
error += `The module ${ module } is missing the "pancake-sass" plugin inside the pancake object.\n`;
}
if( hasJS && !packagesPKG.pancake['pancake-module'].plugins.includes('@gov.au/pancake-js') ) {
error += `The module ${ module } is missing the "pancake-js" plugin inside the pancake object.\n`;
}
if( hasReact && !packagesPKG.pancake['pancake-module'].plugins.includes('@gov.au/pancake-react') ) {
error += `The module ${ module } is missing the "pancake-js" plugin inside the pancake object.\n`;
}
// testing pancake plugin settings
if( hasSass && packagesPKG.pancake['pancake-module'].sass === undefined ) {
error += `The module ${ module } is missing the "pancake-sass" plugin settings inside the pancake object.\n`;