gulpfile.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. const fs = require('fs')
  2. const utils = require('util')
  3. const cp = require('child_process')
  4. const exec = utils.promisify(cp.exec)
  5. const path = require('path')
  6. const gulp = require('gulp')
  7. const del = require('del')
  8. const ip = require('ip')
  9. const replace = require('gulp-replace')
  10. const outputPath = path.join(__dirname, 'static')
  11. const resourcesPath = path.join(__dirname, 'resources')
  12. const publicStaticPath = path.join(__dirname, 'public/static')
  13. const sourcePath = path.join(__dirname, 'src/main/frontend')
  14. const resourceFilePath = path.join(resourcesPath, '**')
  15. const outputFilePath = path.join(outputPath, '**')
  16. const css = {
  17. watchCSS () {
  18. return cp.spawn(`yarn css:watch`, {
  19. shell: true,
  20. stdio: 'inherit',
  21. })
  22. },
  23. watchCapacitorNewCSS () {
  24. return cp.spawn(`yarn css:capacitor-new-watch`, {
  25. shell: true,
  26. stdio: 'inherit',
  27. })
  28. },
  29. buildCSS (...params) {
  30. return gulp.series(
  31. () => exec(`yarn css:build`, {}),
  32. css._optimizeCSSForRelease,
  33. )(...params)
  34. },
  35. _optimizeCSSForRelease () {
  36. return gulp.src(path.join(outputPath, 'css', 'style.css')).
  37. pipe(gulp.dest(path.join(outputPath, 'css')))
  38. },
  39. }
  40. const common = {
  41. clean () {
  42. return del(
  43. ['./static/**/*', '!./static/yarn.lock', '!./static/node_modules'])
  44. },
  45. syncResourceFile () {
  46. return gulp.src(resourceFilePath).pipe(gulp.dest(outputPath))
  47. },
  48. // NOTE: All assets from node_modules are copied to the output directory
  49. syncAssetFiles (...params) {
  50. return gulp.series(
  51. () => gulp.src([
  52. './node_modules/@excalidraw/excalidraw/dist/excalidraw-assets/**',
  53. '!**/*/i18n-*.js',
  54. ]).pipe(gulp.dest(path.join(outputPath, 'js', 'excalidraw-assets'))),
  55. () => gulp.src([
  56. 'node_modules/katex/dist/katex.min.js',
  57. 'node_modules/katex/dist/contrib/mhchem.min.js',
  58. 'node_modules/html2canvas/dist/html2canvas.min.js',
  59. 'node_modules/interactjs/dist/interact.min.js',
  60. 'node_modules/photoswipe/dist/umd/*.js',
  61. 'node_modules/reveal.js/dist/reveal.js',
  62. 'node_modules/shepherd.js/dist/js/shepherd.min.js',
  63. 'node_modules/marked/marked.min.js',
  64. 'node_modules/@highlightjs/cdn-assets/highlight.min.js',
  65. 'node_modules/@isomorphic-git/lightning-fs/dist/lightning-fs.min.js',
  66. 'packages/amplify/dist/amplify.js',
  67. 'packages/ui/dist/ui.js',
  68. 'node_modules/@logseq/sqlite-wasm/sqlite-wasm/jswasm/sqlite3.wasm',
  69. 'node_modules/react/umd/react.production.min.js',
  70. 'node_modules/react/umd/react.development.js',
  71. 'node_modules/react-dom/umd/react-dom.production.min.js',
  72. 'node_modules/react-dom/umd/react-dom.development.js',
  73. 'node_modules/prop-types/prop-types.min.js',
  74. ]).pipe(gulp.dest(path.join(outputPath, 'js'))),
  75. () => gulp.src([
  76. 'node_modules/@tabler/icons-react/dist/umd/tabler-icons-react.min.js',
  77. ]).
  78. pipe(replace('"@tabler/icons-react"]={},a.react,',
  79. '"tablerIcons"]={},a.React,')).
  80. pipe(gulp.dest(path.join(outputPath, 'js'))),
  81. () => gulp.src([
  82. 'node_modules/@glidejs/glide/dist/glide.min.js',
  83. 'node_modules/@glidejs/glide/dist/css/glide.core.min.css',
  84. 'node_modules/@glidejs/glide/dist/css/glide.theme.min.css',
  85. ]).pipe(gulp.dest(path.join(outputPath, 'js', 'glide'))),
  86. () => gulp.src([
  87. 'node_modules/pdfjs-dist/build/pdf.js',
  88. 'node_modules/pdfjs-dist/build/pdf.worker.js',
  89. 'node_modules/pdfjs-dist/web/pdf_viewer.js',
  90. ]).pipe(gulp.dest(path.join(outputPath, 'js', 'pdfjs'))),
  91. () => gulp.src([
  92. 'node_modules/pdfjs-dist/cmaps/*.*',
  93. ]).pipe(gulp.dest(path.join(outputPath, 'js', 'pdfjs', 'cmaps'))),
  94. () => gulp.src([
  95. 'node_modules/inter-ui/inter.css',
  96. 'node_modules/reveal.js/dist/theme/fonts/source-sans-pro/**',
  97. ]).pipe(gulp.dest(path.join(outputPath, 'css'))),
  98. () => gulp.src('node_modules/inter-ui/Inter (web)/*.*').
  99. pipe(gulp.dest(path.join(outputPath, 'css', 'Inter (web)'))),
  100. () => gulp.src([
  101. 'node_modules/@tabler/icons-webfont/fonts/**',
  102. 'node_modules/katex/dist/fonts/*.woff2',
  103. ]).pipe(gulp.dest(path.join(outputPath, 'css', 'fonts'))),
  104. () => gulp.src([
  105. 'node_modules/@ionic/core/dist/ionic/**',
  106. 'node_modules/react/umd/react.production.min.js',
  107. 'node_modules/react/umd/react.development.js',
  108. 'node_modules/react-dom/umd/react-dom.production.min.js',
  109. 'node_modules/react-dom/umd/react-dom.development.js',
  110. 'node_modules/prop-types/prop-types.min.js'
  111. ]).pipe(gulp.dest(path.join(outputPath, 'capacitor', 'js'))),
  112. () => gulp.src([
  113. 'node_modules/@logseq/sqlite-wasm/sqlite-wasm/jswasm/sqlite3.wasm',
  114. ]).pipe(gulp.dest(path.join(outputPath, 'capacitor')))
  115. )(...params)
  116. },
  117. keepSyncResourceFile () {
  118. return gulp.watch(resourceFilePath, { ignoreInitial: true },
  119. common.syncResourceFile)
  120. },
  121. syncAllStatic () {
  122. return gulp.src([
  123. outputFilePath,
  124. '!' + path.join(outputPath, 'node_modules/**'),
  125. ]).pipe(gulp.dest(publicStaticPath))
  126. },
  127. syncJS_CSSinRt () {
  128. return gulp.src([
  129. path.join(outputPath, 'js/**'),
  130. path.join(outputPath, 'css/**'),
  131. ], { base: outputPath }).pipe(gulp.dest(publicStaticPath))
  132. },
  133. keepSyncStaticInRt () {
  134. return gulp.watch([
  135. path.join(outputPath, 'js/**'),
  136. path.join(outputPath, 'css/**'),
  137. ], { ignoreInitial: true }, common.syncJS_CSSinRt)
  138. },
  139. async runCapWithLocalDevServerEntry (cb) {
  140. const mode = process.env.PLATFORM || 'ios'
  141. const IP = ip.address()
  142. const LOGSEQ_APP_SERVER_URL = `http://${IP}:3001`
  143. if (typeof global.fetch === 'function') {
  144. try {
  145. await fetch(LOGSEQ_APP_SERVER_URL)
  146. } catch (e) {
  147. return cb(new Error(
  148. `/* ❌ Please check if the service is ON. (${LOGSEQ_APP_SERVER_URL}) ❌ */`))
  149. }
  150. }
  151. console.log(`------ Cap ${mode.toUpperCase()} -----`)
  152. console.log(`Dev serve at: ${LOGSEQ_APP_SERVER_URL}`)
  153. console.log(`--------------------------------------`)
  154. cp.execSync(`npx cap sync ${mode}`, {
  155. stdio: 'inherit',
  156. env: Object.assign(process.env, {
  157. LOGSEQ_APP_SERVER_URL,
  158. }),
  159. })
  160. cp.execSync(`rm -rf ios/App/App/public/static/out`, {
  161. stdio: 'inherit',
  162. })
  163. cp.execSync(`npx cap run ${mode}`, {
  164. stdio: 'inherit',
  165. env: Object.assign(process.env, {
  166. LOGSEQ_APP_SERVER_URL,
  167. }),
  168. })
  169. cb()
  170. },
  171. switchReactDevelopmentMode (cb) {
  172. const reactFrom = path.join(outputPath, 'js', 'react.development.js')
  173. const reactTo = path.join(outputPath, 'js', 'react.production.min.js')
  174. cp.execSync(`mv ${reactFrom} ${reactTo}`, { stdio: 'inherit' })
  175. const reactDomFrom = path.join(outputPath, 'js', 'react-dom.development.js')
  176. const reactDomTo = path.join(outputPath, 'js',
  177. 'react-dom.production.min.js')
  178. cp.execSync(`mv ${reactDomFrom} ${reactDomTo}`, { stdio: 'inherit' })
  179. cb()
  180. },
  181. }
  182. exports.electron = () => {
  183. if (!fs.existsSync(path.join(outputPath, 'node_modules'))) {
  184. cp.execSync('yarn', {
  185. cwd: outputPath,
  186. stdio: 'inherit',
  187. })
  188. }
  189. cp.execSync('yarn electron:dev', {
  190. cwd: outputPath,
  191. stdio: 'inherit',
  192. })
  193. }
  194. exports.electronMaker = async () => {
  195. cp.execSync('yarn cljs:release-electron', {
  196. stdio: 'inherit',
  197. })
  198. const pkgPath = path.join(outputPath, 'package.json')
  199. const pkg = require(pkgPath)
  200. const version = fs.readFileSync(
  201. path.join(__dirname, 'src/main/frontend/version.cljs')).
  202. toString().
  203. match(/[0-9.]{3,}/)[0]
  204. if (!version) {
  205. throw new Error('release version error in src/**/*/version.cljs')
  206. }
  207. pkg.version = version
  208. fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2))
  209. if (!fs.existsSync(path.join(outputPath, 'node_modules'))) {
  210. cp.execSync('yarn', {
  211. cwd: outputPath,
  212. stdio: 'inherit',
  213. })
  214. }
  215. cp.execSync('yarn electron:make', {
  216. cwd: outputPath,
  217. stdio: 'inherit',
  218. })
  219. }
  220. exports.cap = common.runCapWithLocalDevServerEntry
  221. exports.clean = common.clean
  222. exports.watch = gulp.series(common.syncResourceFile,
  223. common.syncAssetFiles, common.syncAllStatic,
  224. common.switchReactDevelopmentMode,
  225. gulp.parallel(common.keepSyncResourceFile, css.watchCSS))
  226. exports.capacitorNewWatch = gulp.series(common.syncResourceFile,
  227. common.syncAssetFiles, common.syncAllStatic,
  228. gulp.parallel(common.keepSyncResourceFile, css.watchCapacitorNewCSS))
  229. exports.build = gulp.series(common.clean, common.syncResourceFile,
  230. common.syncAssetFiles, css.buildCSS)