summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-04-22 19:36:28 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-04-22 19:36:28 +0900
commit6e3ee05cb6b88fce13d1c73aea0085d09cf3f0ba (patch)
tree0f9ce1b9fa890c4f31c0b474758210a1633499c2
parentNew Crowdin translations (#6281) (diff)
downloadsharkey-6e3ee05cb6b88fce13d1c73aea0085d09cf3f0ba.tar.gz
sharkey-6e3ee05cb6b88fce13d1c73aea0085d09cf3f0ba.tar.bz2
sharkey-6e3ee05cb6b88fce13d1c73aea0085d09cf3f0ba.zip
refactor(client): :sparkles:
-rw-r--r--package.json2
-rw-r--r--src/client/app.vue5
-rw-r--r--src/client/pages/index.home.vue3
-rw-r--r--src/client/scripts/select-drive-file.ts16
-rw-r--r--src/client/scripts/select-drive-folder.ts16
-rw-r--r--webpack.config.ts21
-rw-r--r--yarn.lock12
7 files changed, 28 insertions, 47 deletions
diff --git a/package.json b/package.json
index 9380c7c7c6..a56a8c25a7 100644
--- a/package.json
+++ b/package.json
@@ -189,7 +189,6 @@
"postcss-loader": "3.0.0",
"prismjs": "1.20.0",
"probe-image-size": "5.0.0",
- "progress-bar-webpack-plugin": "2.1.0",
"promise-limit": "2.7.0",
"promise-sequential": "1.1.1",
"pug": "2.0.4",
@@ -223,7 +222,6 @@
"syslog-pro": "1.0.0",
"systeminformation": "4.23.3",
"syuilo-password-strength": "0.0.1",
- "terser-webpack-plugin": "2.3.5",
"textarea-caret": "3.1.0",
"three": "0.115.0",
"tinycolor2": "1.4.1",
diff --git a/src/client/app.vue b/src/client/app.vue
index f3f99fe282..4bc5710212 100644
--- a/src/client/app.vue
+++ b/src/client/app.vue
@@ -163,7 +163,6 @@ import { v4 as uuid } from 'uuid';
import i18n from './i18n';
import { host, instanceName } from './config';
import { search } from './scripts/search';
-import MkToast from './components/toast.vue';
const DESKTOP_THRESHOLD = 1100;
@@ -535,14 +534,14 @@ export default Vue.extend({
});
},
- onNotification(notification) {
+ async onNotification(notification) {
// TODO: ユーザーが画面を見てないと思われるとき(ブラウザやタブがアクティブじゃないなど)は送信しない
if (true) {
this.$root.stream.send('readNotification', {
id: notification.id
});
- this.$root.new(MkToast, {
+ this.$root.new(await import('./components/toast.vue').then(m => m.default), {
notification
});
}
diff --git a/src/client/pages/index.home.vue b/src/client/pages/index.home.vue
index 60035da929..17d07e6084 100644
--- a/src/client/pages/index.home.vue
+++ b/src/client/pages/index.home.vue
@@ -29,7 +29,6 @@ import { faAngleDown, faAngleUp, faHome, faShareAlt, faGlobe, faListUl, faSatell
import { faComments } from '@fortawesome/free-regular-svg-icons';
import Progress from '../scripts/loading';
import XTimeline from '../components/timeline.vue';
-import XTutorial from './index.home.tutorial.vue';
import XPostForm from '../components/post-form.vue';
export default Vue.extend({
@@ -41,7 +40,7 @@ export default Vue.extend({
components: {
XTimeline,
- XTutorial,
+ XTutorial: () => import('./index.home.tutorial.vue').then(m => m.default),
XPostForm,
},
diff --git a/src/client/scripts/select-drive-file.ts b/src/client/scripts/select-drive-file.ts
index 798c270e3f..3a4ac70007 100644
--- a/src/client/scripts/select-drive-file.ts
+++ b/src/client/scripts/select-drive-file.ts
@@ -1,13 +1,13 @@
-import DriveWindow from '../components/drive-window.vue';
-
export function selectDriveFile($root: any, multiple) {
return new Promise((res, rej) => {
- const w = $root.new(DriveWindow, {
- type: 'file',
- multiple
- });
- w.$once('selected', files => {
- res(multiple ? files : files[0]);
+ import('../components/drive-window.vue').then(m => m.default).then(dialog => {
+ const w = $root.new(dialog, {
+ type: 'file',
+ multiple
+ });
+ w.$once('selected', files => {
+ res(multiple ? files : files[0]);
+ });
});
});
}
diff --git a/src/client/scripts/select-drive-folder.ts b/src/client/scripts/select-drive-folder.ts
index 68516e1010..313d552e3a 100644
--- a/src/client/scripts/select-drive-folder.ts
+++ b/src/client/scripts/select-drive-folder.ts
@@ -1,13 +1,13 @@
-import DriveWindow from '../components/drive-window.vue';
-
export function selectDriveFolder($root: any, multiple) {
return new Promise((res, rej) => {
- const w = $root.new(DriveWindow, {
- type: 'folder',
- multiple
- });
- w.$once('selected', folders => {
- res(multiple ? folders : (folders.length === 0 ? null : folders[0]));
+ import('../components/drive-window.vue').then(m => m.default).then(dialog => {
+ const w = $root.new(dialog, {
+ type: 'folder',
+ multiple
+ });
+ w.$once('selected', folders => {
+ res(multiple ? folders : (folders.length === 0 ? null : folders[0]));
+ });
});
});
}
diff --git a/webpack.config.ts b/webpack.config.ts
index c6dc0dbabe..1c6692da29 100644
--- a/webpack.config.ts
+++ b/webpack.config.ts
@@ -4,10 +4,7 @@
import * as fs from 'fs';
import * as webpack from 'webpack';
-import * as chalk from 'chalk';
const { VueLoaderPlugin } = require('vue-loader');
-const ProgressBarPlugin = require('progress-bar-webpack-plugin');
-const TerserPlugin = require('terser-webpack-plugin');
class WebpackOnBuildPlugin {
constructor(readonly callback: (stats: any) => void) {
@@ -118,10 +115,7 @@ module.exports = {
}]
},
plugins: [
- new ProgressBarPlugin({
- format: chalk` {cyan.bold Yes we can} {bold [}:bar{bold ]} {green.bold :percent} {gray :elapseds}`,
- clear: false
- }),
+ new webpack.ProgressPlugin({}),
new webpack.DefinePlugin({
_VERSION_: JSON.stringify(meta.version),
_LANGS_: JSON.stringify(Object.entries(locales).map(([k, v]: [string, any]) => [k, v._lang_])),
@@ -135,7 +129,6 @@ module.exports = {
output: {
path: __dirname + '/built/client/assets',
filename: `[name].${meta.version}.js`,
- chunkFilename: '[fullhash].[id].js',
publicPath: `/assets/`
},
resolve: {
@@ -149,13 +142,13 @@ module.exports = {
resolveLoader: {
modules: ['node_modules']
},
- externals: {
- moment: 'moment'
- },
- optimization: {
- minimizer: [new TerserPlugin()]
+ cache: {
+ type: 'filesystem',
+
+ buildDependencies: {
+ config: [__filename]
+ }
},
- cache: false,
devtool: false, //'source-map',
mode: isProduction ? 'production' : 'development'
};
diff --git a/yarn.lock b/yarn.lock
index 5638c27897..422e002784 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7565,15 +7565,7 @@ process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-progress-bar-webpack-plugin@2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/progress-bar-webpack-plugin/-/progress-bar-webpack-plugin-2.1.0.tgz#f7f8c8c461f40b87a8ff168443f494289b07ee65"
- integrity sha512-UtlZbnxpYk1wufEWfhIjRn2U52zlY38uvnzFhs8rRxJxC1hSqw88JNR2Mbpqq9Kix8L1nGb3uQ+/1BiUWbigAg==
- dependencies:
- chalk "^3.0.0"
- progress "^2.0.3"
-
-progress@^2.0.0, progress@^2.0.3:
+progress@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
@@ -9246,7 +9238,7 @@ tar@^6.0.1:
mkdirp "^1.0.3"
yallist "^4.0.0"
-terser-webpack-plugin@2.3.5, terser-webpack-plugin@^2.3.1:
+terser-webpack-plugin@^2.3.1:
version "2.3.5"
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81"
integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==