2019-02-16 02:58:44 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<ui-container v-if="user.pinnedNotes && user.pinnedNotes.length > 0" :body-togglable="true">
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #header><fa icon="thumbtack"/> {{ $t('pinned-notes') }}</template>
|
2019-02-16 02:58:44 +01:00
|
|
|
<div>
|
2019-02-25 11:45:00 +01:00
|
|
|
<mk-note v-for="n in user.pinnedNotes" :key="n.id" :note="n"/>
|
2019-02-16 02:58:44 +01:00
|
|
|
</div>
|
|
|
|
</ui-container>
|
2019-02-24 02:38:53 +01:00
|
|
|
<ui-container v-if="images.length > 0" :body-togglable="true"
|
|
|
|
:expanded="$store.state.device.expandUsersPhotos"
|
|
|
|
@toggle="expanded => $store.commit('device/set', { key: 'expandUsersPhotos', value: expanded })">
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #header><fa :icon="['far', 'images']"/> {{ $t('images') }}</template>
|
2019-02-16 02:58:44 +01:00
|
|
|
<div class="sainvnaq">
|
|
|
|
<router-link v-for="image in images"
|
|
|
|
:style="`background-image: url(${image.thumbnailUrl})`"
|
|
|
|
:key="`${image.id}:${image._note.id}`"
|
|
|
|
:to="image._note | notePage"
|
|
|
|
:title="`${image.name}\n${(new Date(image.createdAt)).toLocaleString()}`"
|
|
|
|
></router-link>
|
|
|
|
</div>
|
|
|
|
</ui-container>
|
2019-02-24 02:38:53 +01:00
|
|
|
<ui-container :body-togglable="true"
|
|
|
|
:expanded="$store.state.device.expandUsersActivity"
|
|
|
|
@toggle="expanded => $store.commit('device/set', { key: 'expandUsersActivity', value: expanded })">
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #header><fa :icon="['far', 'chart-bar']"/> {{ $t('activity') }}</template>
|
2019-02-16 02:58:44 +01:00
|
|
|
<div>
|
|
|
|
<div ref="chart"></div>
|
|
|
|
</div>
|
|
|
|
</ui-container>
|
|
|
|
<ui-container>
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #header><fa :icon="['far', 'comment-alt']"/> {{ $t('timeline') }}</template>
|
2019-02-16 02:58:44 +01:00
|
|
|
<div>
|
2019-02-18 01:17:55 +01:00
|
|
|
<x-notes ref="timeline" :make-promise="makePromise" @inited="() => $emit('loaded')"/>
|
2019-02-16 02:58:44 +01:00
|
|
|
</div>
|
|
|
|
</ui-container>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import i18n from '../../../i18n';
|
|
|
|
import XNotes from './deck.notes.vue';
|
|
|
|
import { concat } from '../../../../../prelude/array';
|
|
|
|
import ApexCharts from 'apexcharts';
|
|
|
|
|
|
|
|
const fetchLimit = 10;
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
i18n: i18n('deck/deck.user-column.vue'),
|
2019-02-18 01:17:55 +01:00
|
|
|
|
2019-02-16 02:58:44 +01:00
|
|
|
components: {
|
|
|
|
XNotes,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
withFiles: false,
|
|
|
|
images: [],
|
2019-02-21 17:56:07 +01:00
|
|
|
makePromise: null,
|
|
|
|
chart: null as ApexCharts
|
2019-02-20 14:21:12 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
user() {
|
2019-02-21 17:56:07 +01:00
|
|
|
this.fetch();
|
2019-02-20 14:21:12 +01:00
|
|
|
this.genPromiseMaker();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
this.genPromiseMaker();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
genPromiseMaker() {
|
|
|
|
this.makePromise = cursor => this.$root.api('users/notes', {
|
2019-02-18 01:17:55 +01:00
|
|
|
userId: this.user.id,
|
|
|
|
limit: fetchLimit + 1,
|
|
|
|
untilId: cursor ? cursor : undefined,
|
|
|
|
withFiles: this.withFiles,
|
|
|
|
includeMyRenotes: this.$store.state.settings.showMyRenotes,
|
|
|
|
includeRenotedMyNotes: this.$store.state.settings.showRenotedMyNotes,
|
|
|
|
includeLocalRenotes: this.$store.state.settings.showLocalRenotes
|
|
|
|
}).then(notes => {
|
|
|
|
if (notes.length == fetchLimit + 1) {
|
|
|
|
notes.pop();
|
|
|
|
return {
|
|
|
|
notes: notes,
|
2019-04-08 07:17:44 +02:00
|
|
|
more: true
|
2019-02-18 01:17:55 +01:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
notes: notes,
|
2019-04-08 07:17:44 +02:00
|
|
|
more: false
|
2019-02-18 01:17:55 +01:00
|
|
|
};
|
|
|
|
}
|
2019-02-20 14:21:12 +01:00
|
|
|
});
|
|
|
|
},
|
2019-02-16 02:58:44 +01:00
|
|
|
|
|
|
|
fetch() {
|
|
|
|
const image = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
'image/gif'
|
|
|
|
];
|
|
|
|
|
|
|
|
this.$root.api('users/notes', {
|
|
|
|
userId: this.user.id,
|
|
|
|
fileType: image,
|
|
|
|
excludeNsfw: !this.$store.state.device.alwaysShowNsfw,
|
|
|
|
limit: 9,
|
|
|
|
untilDate: new Date().getTime() + 1000 * 86400 * 365
|
|
|
|
}).then(notes => {
|
|
|
|
for (const note of notes) {
|
|
|
|
for (const file of note.files) {
|
|
|
|
file._note = note;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const files = concat(notes.map((n: any): any[] => n.files));
|
|
|
|
this.images = files.filter(f => image.includes(f.type)).slice(0, 9);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$root.api('charts/user/notes', {
|
|
|
|
userId: this.user.id,
|
|
|
|
span: 'day',
|
|
|
|
limit: 21
|
|
|
|
}).then(stats => {
|
|
|
|
const normal = [];
|
|
|
|
const reply = [];
|
|
|
|
const renote = [];
|
|
|
|
|
|
|
|
const now = new Date();
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
|
|
|
|
|
|
|
for (let i = 0; i < 21; i++) {
|
|
|
|
const x = new Date(y, m, d - i);
|
|
|
|
normal.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.normal[i]
|
|
|
|
]);
|
|
|
|
reply.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.reply[i]
|
|
|
|
]);
|
|
|
|
renote.push([
|
|
|
|
x,
|
|
|
|
stats.diffs.renote[i]
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2019-02-21 17:56:07 +01:00
|
|
|
if (this.chart) this.chart.destroy();
|
|
|
|
|
|
|
|
this.chart = new ApexCharts(this.$refs.chart, {
|
2019-02-16 02:58:44 +01:00
|
|
|
chart: {
|
|
|
|
type: 'bar',
|
|
|
|
stacked: true,
|
|
|
|
height: 100,
|
|
|
|
sparkline: {
|
|
|
|
enabled: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plotOptions: {
|
|
|
|
bar: {
|
2019-03-14 17:43:11 +01:00
|
|
|
columnWidth: '80%'
|
2019-02-16 02:58:44 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
clipMarkers: false,
|
|
|
|
padding: {
|
|
|
|
top: 16,
|
|
|
|
right: 16,
|
|
|
|
bottom: 16,
|
|
|
|
left: 16
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tooltip: {
|
|
|
|
shared: true,
|
|
|
|
intersect: false
|
|
|
|
},
|
|
|
|
series: [{
|
|
|
|
name: 'Normal',
|
|
|
|
data: normal
|
|
|
|
}, {
|
|
|
|
name: 'Reply',
|
|
|
|
data: reply
|
|
|
|
}, {
|
|
|
|
name: 'Renote',
|
|
|
|
data: renote
|
|
|
|
}],
|
|
|
|
xaxis: {
|
|
|
|
type: 'datetime',
|
|
|
|
crosshairs: {
|
|
|
|
width: 1,
|
|
|
|
opacity: 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-21 17:56:07 +01:00
|
|
|
this.chart.render();
|
2019-02-16 02:58:44 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.sainvnaq
|
|
|
|
display grid
|
|
|
|
grid-template-columns 1fr 1fr 1fr
|
|
|
|
gap 8px
|
|
|
|
padding 16px
|
|
|
|
|
|
|
|
> *
|
|
|
|
height 70px
|
|
|
|
background-position center center
|
|
|
|
background-size cover
|
|
|
|
background-clip content-box
|
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
</style>
|