forked from baserproject/baserproject.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
96 lines (87 loc) · 2.28 KB
/
gulpfile.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
const gulp = require('gulp');
const puml = require('gulp-puml');
const browserSync = require('browser-sync').create();
const exec = require('child_process').exec;
/**
* ソースファイル
* @type {string}
*/
const src = 'src/puml/**/**/*.puml';
/**
* コンパイル先
* @type {string}
*/
const target = './';
/**
* Java実行対象ファイル
* 行数が多いことにより、gulp-puml がうまくいかない場合、java側で実行する
* @see https://baserproject.github.io/5/ucmitz/etc/troubleshooting#gulp-pumlにてplantumlのコンパイルが失敗する場合
* @type {string[]}
*/
const pumlAnalogTargets = [
"src/puml/5/ucmitz/svg/class/baser-core/manage_contents.puml",
"src/puml/5/ucmitz/svg/class/baser-core/manage_sites.puml",
"src/puml/5/ucmitz/svg/class/baser-core/manage_content_folders.puml",
];
/**
* browser-sync を初期化
*/
function initBs() {
browserSync.init({
proxy: 'localhost:4000'
});
}
/**
* ブラウザをリロード
*/
function bsRload(){
browserSync.reload();
}
/**
* PlantUML を書き出す
* @returns {*}
*/
function buildPuml(file) {
if (pumlAnalogTargets.includes(file)) {
path = file.replace('src/puml/', '');
fileName = path.split('\/').pop();
reg = new RegExp('\/' + fileName.replace('.', '\.'), 'g');
targetDir = '../../../../../../../' + path.replace(reg, '');
exec(`java -jar plantuml.jar -verbose -o "${targetDir}" ${file} -tsvg`,
function (error) {
if (error !== null) {
console.log('exec error: ' + error);
}
}
);
} else {
// ファイル単体で引き渡す
gulp.src([file], { base: './src/puml' })
.pipe(puml({format: 'svg'}))
.pipe(gulp.dest(target));
// ジェネレーターに時間がかかるため12秒待ってからリロード
setTimeout(function(){
browserSync.reload();
}, 12000)
}
}
/**
* ファイルを監視する
*/
function watchFiles() {
gulp.watch(src).on('change', function(file){
console.log(file);
buildPuml(file);
});
gulp.watch(['5/**/**/*.md']).on('change', function (file){
console.log(file);
// ジェネレーターに時間がかかるため12秒待ってからリロード
setTimeout(function(){
browserSync.reload();
}, 12000)
});
}
/**
* 処理実行
*/
gulp.task('default', gulp.parallel(initBs, watchFiles));