Merge pull request #2450 from syuilo/develop

8.8.0
This commit is contained in:
syuilo 2018-08-24 15:02:21 +09:00 committed by GitHub
commit 806dabe58b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 270 additions and 95 deletions

View File

@ -946,22 +946,17 @@ desktop/views/pages/admin/admin.chart.vue:
notes: "投稿" notes: "投稿"
users: "ユーザー" users: "ユーザー"
drive: "ドライブ" drive: "ドライブ"
local-notes: "ローカルの投稿の増減" charts:
remote-notes: "リモートの投稿の増減" notes: "投稿の増減 (統合)"
local-notes-total: "ローカルの投稿の累計" local-notes: "投稿の増減 (ローカル)"
remote-notes-total: "リモートの投稿の累計" remote-notes: "投稿の増減 (リモート)"
local-users: "ローカルのユーザーの増減" notes-total: "投稿の累計"
remote-users: "リモートのユーザーの増減" users: "ユーザーの増減"
local-users-total: "ローカルのユーザーの累計" users-total: "ユーザーの累計"
remote-users-total: "リモートのユーザーの累計" drive: "ドライブ使用量の増減"
local-drive: "ローカルのドライブ使用量の増減" drive-total: "ドライブ使用量の累計"
remote-drive: "リモートのドライブ使用量の増減" drive-files: "ドライブのファイル数の増減"
local-drive-total: "ローカルのドライブ使用量の累計" drive-files-total: "ドライブのファイル数の累計"
remote-drive-total: "リモートのドライブ使用量の累計"
local-drive-files: "ローカルのドライブのファイル数の増減"
remote-drive-files: "リモートのドライブのファイル数の増減"
local-drive-files-total: "ローカルのドライブのファイル数の累計"
remote-drive-files-total: "リモートのドライブのファイル数の累計"
desktop/views/pages/deck/deck.tl-column.vue: desktop/views/pages/deck/deck.tl-column.vue:
is-media-only: "メディア投稿のみ" is-media-only: "メディア投稿のみ"

View File

@ -1,8 +1,8 @@
{ {
"name": "misskey", "name": "misskey",
"author": "syuilo <i@syuilo.com>", "author": "syuilo <i@syuilo.com>",
"version": "8.7.0", "version": "8.8.0",
"clientVersion": "1.0.8840", "clientVersion": "1.0.8842",
"codename": "nighthike", "codename": "nighthike",
"main": "./built/index.js", "main": "./built/index.js",
"private": true, "private": true,

View File

@ -4,30 +4,24 @@
<b>%i18n:@title%:</b> <b>%i18n:@title%:</b>
<select v-model="chartType"> <select v-model="chartType">
<optgroup label="%i18n:@users%"> <optgroup label="%i18n:@users%">
<option value="local-users">%i18n:@local-users%</option> <option value="users">%i18n:@charts.users%</option>
<option value="remote-users">%i18n:@remote-users%</option> <option value="users-total">%i18n:@charts.users-total%</option>
<option value="local-users-total">%i18n:@local-users-total%</option>
<option value="remote-users-total">%i18n:@remote-users-total%</option>
</optgroup> </optgroup>
<optgroup label="%i18n:@notes%"> <optgroup label="%i18n:@notes%">
<option value="local-notes">%i18n:@local-notes%</option> <option value="notes">%i18n:@charts.notes%</option>
<option value="remote-notes">%i18n:@remote-notes%</option> <option value="local-notes">%i18n:@charts.local-notes%</option>
<option value="local-notes-total">%i18n:@local-notes-total%</option> <option value="remote-notes">%i18n:@charts.remote-notes%</option>
<option value="remote-notes-total">%i18n:@remote-notes-total%</option> <option value="notes-total">%i18n:@charts.notes-total%</option>
</optgroup> </optgroup>
<optgroup label="%i18n:@drive%"> <optgroup label="%i18n:@drive%">
<option value="local-drive-files">%i18n:@local-drive-files%</option> <option value="drive-files">%i18n:@charts.drive-files%</option>
<option value="remote-drive-files">%i18n:@remote-drive-files%</option> <option value="drive-files-total">%i18n:@charts.drive-files-total%</option>
<option value="local-drive-files-total">%i18n:@local-drive-files-total%</option> <option value="drive">%i18n:@charts.drive%</option>
<option value="remote-drive-files-total">%i18n:@remote-drive-files-total%</option> <option value="drive-total">%i18n:@charts.drive-total%</option>
<option value="local-drive">%i18n:@local-drive%</option>
<option value="remote-drive">%i18n:@remote-drive%</option>
<option value="local-drive-total">%i18n:@local-drive-total%</option>
<option value="remote-drive-total">%i18n:@remote-drive-total%</option>
</optgroup> </optgroup>
</select> </select>
<div> <div>
<a @click="span = 'day'">%i18n:@per-day%</a> | <a @click="span = 'hour'">%i18n:@per-hour%</a> <span @click="span = 'day'" :class="{ active: span == 'day' }">%i18n:@per-day%</span> | <span @click="span = 'hour'" :class="{ active: span == 'hour' }">%i18n:@per-hour%</span>
</div> </div>
</header> </header>
<div> <div>
@ -47,7 +41,7 @@ export default Vue.extend({
data() { data() {
return { return {
chart: null, chart: null,
chartType: 'local-notes', chartType: 'notes',
span: 'hour' span: 'hour'
}; };
}, },
@ -55,22 +49,16 @@ export default Vue.extend({
data(): any { data(): any {
if (this.chart == null) return null; if (this.chart == null) return null;
switch (this.chartType) { switch (this.chartType) {
case 'local-users': return this.usersChart(true, false); case 'users': return this.usersChart(false);
case 'remote-users': return this.usersChart(false, false); case 'users-total': return this.usersChart(true);
case 'local-users-total': return this.usersChart(true, true); case 'notes': return this.notesChart('combined');
case 'remote-users-total': return this.usersChart(false, true); case 'local-notes': return this.notesChart('local');
case 'local-notes': return this.notesChart(true); case 'remote-notes': return this.notesChart('remote');
case 'remote-notes': return this.notesChart(false); case 'notes-total': return this.notesTotalChart();
case 'local-notes-total': return this.notesTotalChart(true); case 'drive': return this.driveChart(false);
case 'remote-notes-total': return this.notesTotalChart(false); case 'drive-total': return this.driveChart(true);
case 'local-drive': return this.driveChart(true, false); case 'drive-files': return this.driveFilesChart(false);
case 'remote-drive': return this.driveChart(false, false); case 'drive-files-total': return this.driveFilesChart(true);
case 'local-drive-total': return this.driveChart(true, true);
case 'remote-drive-total': return this.driveChart(false, true);
case 'local-drive-files': return this.driveFilesChart(true, false);
case 'remote-drive-files': return this.driveFilesChart(false, false);
case 'local-drive-files-total': return this.driveFilesChart(true, true);
case 'remote-drive-files-total': return this.driveFilesChart(false, true);
} }
}, },
stats(): any[] { stats(): any[] {
@ -87,13 +75,13 @@ export default Vue.extend({
}); });
}, },
methods: { methods: {
notesChart(local: boolean): any { notesChart(type: string): any {
const data = this.stats.slice().reverse().map(x => ({ const data = this.stats.slice().reverse().map(x => ({
date: new Date(x.date), date: new Date(x.date),
normal: local ? x.notes.local.diffs.normal : x.notes.remote.diffs.normal, normal: type == 'local' ? x.notes.local.diffs.normal : type == 'remote' ? x.notes.remote.diffs.normal : x.notes.local.diffs.normal + x.notes.remote.diffs.normal,
reply: local ? x.notes.local.diffs.reply : x.notes.remote.diffs.reply, reply: type == 'local' ? x.notes.local.diffs.reply : type == 'remote' ? x.notes.remote.diffs.reply : x.notes.local.diffs.reply + x.notes.remote.diffs.reply,
renote: local ? x.notes.local.diffs.renote : x.notes.remote.diffs.renote, renote: type == 'local' ? x.notes.local.diffs.renote : type == 'remote' ? x.notes.remote.diffs.renote : x.notes.local.diffs.renote + x.notes.remote.diffs.renote,
all: local ? x.notes.local.diff : x.notes.remote.diff all: type == 'local' ? x.notes.local.diff : type == 'remote' ? x.notes.remote.diff : x.notes.local.diff + x.notes.remote.diff
})); }));
return [{ return [{
@ -107,14 +95,14 @@ export default Vue.extend({
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.all })) data: data.map(x => ({ t: x.date, y: x.all }))
}, { }, {
label: 'Normal', label: 'Renotes',
fill: true, fill: true,
backgroundColor: 'rgba(65, 221, 222, 0.1)', backgroundColor: 'rgba(161, 222, 65, 0.1)',
borderColor: '#41ddde', borderColor: '#a1de41',
borderWidth: 2, borderWidth: 2,
pointBackgroundColor: '#fff', pointBackgroundColor: '#fff',
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.normal })) data: data.map(x => ({ t: x.date, y: x.renote }))
}, { }, {
label: 'Replies', label: 'Replies',
fill: true, fill: true,
@ -125,78 +113,185 @@ export default Vue.extend({
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.reply })) data: data.map(x => ({ t: x.date, y: x.reply }))
}, { }, {
label: 'Renotes', label: 'Normal',
fill: true, fill: true,
backgroundColor: 'rgba(161, 222, 65, 0.1)', backgroundColor: 'rgba(65, 221, 222, 0.1)',
borderColor: '#a1de41', borderColor: '#41ddde',
borderWidth: 2, borderWidth: 2,
pointBackgroundColor: '#fff', pointBackgroundColor: '#fff',
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.renote })) data: data.map(x => ({ t: x.date, y: x.normal }))
}] }]
}, {
scales: {
yAxes: [{
ticks: {
callback: value => {
return Vue.filter('number')(value);
}
}
}]
},
tooltips: {
callbacks: {
label: (tooltipItem, data) => {
const label = data.datasets[tooltipItem.datasetIndex].label || '';
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
}
}
}
}]; }];
}, },
notesTotalChart(local: boolean): any { notesTotalChart(): any {
const data = this.stats.slice().reverse().map(x => ({ const data = this.stats.slice().reverse().map(x => ({
date: new Date(x.date), date: new Date(x.date),
count: local ? x.notes.local.total : x.notes.remote.total, localCount: x.notes.local.total,
remoteCount: x.notes.remote.total
})); }));
return [{ return [{
datasets: [{ datasets: [{
label: local ? 'Local Notes' : 'Remote Notes', label: 'Notes',
fill: false,
borderColor: '#555',
borderWidth: 2,
borderDash: [4, 4],
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteCount + x.localCount }))
}, {
label: 'Remote Notes',
fill: true,
backgroundColor: 'rgba(65, 221, 222, 0.1)',
borderColor: '#41ddde',
borderWidth: 2,
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteCount }))
}, {
label: 'Local Notes',
fill: true, fill: true,
backgroundColor: 'rgba(246, 88, 79, 0.1)', backgroundColor: 'rgba(246, 88, 79, 0.1)',
borderColor: '#f6584f', borderColor: '#f6584f',
borderWidth: 2, borderWidth: 2,
pointBackgroundColor: '#fff', pointBackgroundColor: '#fff',
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.count })) data: data.map(x => ({ t: x.date, y: x.localCount }))
}] }]
}, {
scales: {
yAxes: [{
ticks: {
callback: value => {
return Vue.filter('number')(value);
}
}
}]
},
tooltips: {
callbacks: {
label: (tooltipItem, data) => {
const label = data.datasets[tooltipItem.datasetIndex].label || '';
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
}
}
}
}]; }];
}, },
usersChart(local: boolean, total: boolean): any { usersChart(total: boolean): any {
const data = this.stats.slice().reverse().map(x => ({ const data = this.stats.slice().reverse().map(x => ({
date: new Date(x.date), date: new Date(x.date),
count: local ? localCount: total ? x.users.local.total : x.users.local.diff,
total ? x.users.local.total : x.users.local.diff : remoteCount: total ? x.users.remote.total : x.users.remote.diff
total ? x.users.remote.total : x.users.remote.diff
})); }));
return [{ return [{
datasets: [{ datasets: [{
label: local ? 'Local Users' : 'Remote Users', label: 'Users',
fill: false,
borderColor: '#555',
borderWidth: 2,
borderDash: [4, 4],
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteCount + x.localCount }))
}, {
label: 'Remote Users',
fill: true,
backgroundColor: 'rgba(65, 221, 222, 0.1)',
borderColor: '#41ddde',
borderWidth: 2,
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteCount }))
}, {
label: 'Local Users',
fill: true, fill: true,
backgroundColor: 'rgba(246, 88, 79, 0.1)', backgroundColor: 'rgba(246, 88, 79, 0.1)',
borderColor: '#f6584f', borderColor: '#f6584f',
borderWidth: 2, borderWidth: 2,
pointBackgroundColor: '#fff', pointBackgroundColor: '#fff',
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.count })) data: data.map(x => ({ t: x.date, y: x.localCount }))
}] }]
}, {
scales: {
yAxes: [{
ticks: {
callback: value => {
return Vue.filter('number')(value);
}
}
}]
},
tooltips: {
callbacks: {
label: (tooltipItem, data) => {
const label = data.datasets[tooltipItem.datasetIndex].label || '';
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
}
}
}
}]; }];
}, },
driveChart(local: boolean, total: boolean): any { driveChart(total: boolean): any {
const data = this.stats.slice().reverse().map(x => ({ const data = this.stats.slice().reverse().map(x => ({
date: new Date(x.date), date: new Date(x.date),
size: local ? localSize: total ? x.drive.local.totalSize : x.drive.local.diffSize,
total ? x.drive.local.totalSize : x.drive.local.diffSize : remoteSize: total ? x.drive.remote.totalSize : x.drive.remote.diffSize
total ? x.drive.remote.totalSize : x.drive.remote.diffSize
})); }));
return [{ return [{
datasets: [{ datasets: [{
label: local ? 'Local Drive Usage' : 'Remote Drive Usage', label: 'Drive Usage',
fill: false,
borderColor: '#555',
borderWidth: 2,
borderDash: [4, 4],
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteSize + x.localSize }))
}, {
label: 'Remote Drive Usage',
fill: true,
backgroundColor: 'rgba(65, 221, 222, 0.1)',
borderColor: '#41ddde',
borderWidth: 2,
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteSize }))
}, {
label: 'Local Drive Usage',
fill: true, fill: true,
backgroundColor: 'rgba(246, 88, 79, 0.1)', backgroundColor: 'rgba(246, 88, 79, 0.1)',
borderColor: '#f6584f', borderColor: '#f6584f',
borderWidth: 2, borderWidth: 2,
pointBackgroundColor: '#fff', pointBackgroundColor: '#fff',
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.size })) data: data.map(x => ({ t: x.date, y: x.localSize }))
}] }]
}, { }, {
scales: { scales: {
@ -210,35 +305,71 @@ export default Vue.extend({
}, },
tooltips: { tooltips: {
callbacks: { callbacks: {
label: tooltipItem => { label: (tooltipItem, data) => {
return Vue.filter('bytes')(tooltipItem.yLabel); const label = data.datasets[tooltipItem.datasetIndex].label || '';
return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel)}`;
} }
} }
} }
}]; }];
}, },
driveFilesChart(local: boolean, total: boolean): any { driveFilesChart(total: boolean): any {
const data = this.stats.slice().reverse().map(x => ({ const data = this.stats.slice().reverse().map(x => ({
date: new Date(x.date), date: new Date(x.date),
count: local ? localCount: total ? x.drive.local.totalCount : x.drive.local.diffCount,
total ? x.drive.local.totalCount : x.drive.local.diffCount : remoteCount: total ? x.drive.remote.totalCount : x.drive.remote.diffCount
total ? x.drive.remote.totalCount : x.drive.remote.diffCount
})); }));
return [{ return [{
datasets: [{ datasets: [{
label: local ? 'Local Drive Files' : 'Remote Drive Files', label: 'Drive Files',
fill: false,
borderColor: '#555',
borderWidth: 2,
borderDash: [4, 4],
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteCount + x.localCount }))
}, {
label: 'Remote Drive Files',
fill: true,
backgroundColor: 'rgba(65, 221, 222, 0.1)',
borderColor: '#41ddde',
borderWidth: 2,
pointBackgroundColor: '#fff',
lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.remoteCount }))
}, {
label: 'Local Drive Files',
fill: true, fill: true,
backgroundColor: 'rgba(246, 88, 79, 0.1)', backgroundColor: 'rgba(246, 88, 79, 0.1)',
borderColor: '#f6584f', borderColor: '#f6584f',
borderWidth: 2, borderWidth: 2,
pointBackgroundColor: '#fff', pointBackgroundColor: '#fff',
lineTension: 0, lineTension: 0,
data: data.map(x => ({ t: x.date, y: x.count })) data: data.map(x => ({ t: x.date, y: x.localCount }))
}] }]
}, {
scales: {
yAxes: [{
ticks: {
callback: value => {
return Vue.filter('number')(value);
}
}
}]
},
tooltips: {
callbacks: {
label: (tooltipItem, data) => {
const label = data.datasets[tooltipItem.datasetIndex].label || '';
return `${label}: ${Vue.filter('number')(tooltipItem.yLabel)}`;
}
}
}
}]; }];
}, }
} }
}); });
</script> </script>
@ -259,6 +390,11 @@ export default Vue.extend({
> *:last-child > *:last-child
margin-left auto margin-left auto
*
&:not(.active)
color $theme-color
cursor pointer
> div > div
> * > *
display block display block

View File

@ -6,8 +6,8 @@ export const meta = {
}; };
export default (params: any) => new Promise(async (res, rej) => { export default (params: any) => new Promise(async (res, rej) => {
const daysRange = 90; const daysRange = 30;
const hoursRange = 24; const hoursRange = 30;
const now = new Date(); const now = new Date();
const y = now.getFullYear(); const y = now.getFullYear();
@ -65,9 +65,53 @@ export default (params: any) => new Promise(async (res, rej) => {
} else { // 隙間埋め } else { // 隙間埋め
const mostRecent = src.find(s => s.date.getTime() < current.getTime()); const mostRecent = src.find(s => s.date.getTime() < current.getTime());
if (mostRecent) { if (mostRecent) {
chart.unshift(Object.assign({}, mostRecent, { chart.unshift({
date: current date: current,
})); users: {
local: {
total: mostRecent.users.local.total,
diff: 0
},
remote: {
total: mostRecent.users.remote.total,
diff: 0
}
},
notes: {
local: {
total: mostRecent.notes.local.total,
diff: 0,
diffs: {
normal: 0,
reply: 0,
renote: 0
}
},
remote: {
total: mostRecent.notes.remote.total,
diff: 0,
diffs: {
normal: 0,
reply: 0,
renote: 0
}
}
},
drive: {
local: {
totalCount: mostRecent.drive.local.totalCount,
totalSize: mostRecent.drive.local.totalSize,
diffCount: 0,
diffSize: 0
},
remote: {
totalCount: mostRecent.drive.remote.totalCount,
totalSize: mostRecent.drive.remote.totalSize,
diffCount: 0,
diffSize: 0
}
}
});
} else { } else {
chart.unshift({ chart.unshift({
date: current, date: current,