iceshrimp-legacy/src/client/app/desktop/views/components/home.vue

397 lines
8.5 KiB
Vue
Raw Normal View History

2018-02-09 01:46:23 +01:00
<template>
2018-02-11 05:02:35 +01:00
<div class="mk-home" :data-customize="customize">
2018-02-09 05:11:30 +01:00
<div class="customize" v-if="customize">
<router-link to="/"><fa icon="check"/>{{ $t('done') }}</router-link>
2018-02-09 05:11:30 +01:00
<div>
<div class="adder">
<p>{{ $t('add-widget') }}</p>
2018-02-11 05:02:35 +01:00
<select v-model="widgetAdderSelected">
<option value="profile">{{ $t('@.widgets.profile') }}</option>
<option value="analog-clock">{{ $t('@.widgets.analog-clock') }}</option>
<option value="calendar">{{ $t('@.widgets.calendar') }}</option>
<option value="timemachine">{{ $t('@.widgets.timemachine') }}</option>
<option value="activity">{{ $t('@.widgets.activity') }}</option>
<option value="rss">{{ $t('@.widgets.rss') }}</option>
<option value="trends">{{ $t('@.widgets.trends') }}</option>
<option value="photo-stream">{{ $t('@.widgets.photo-stream') }}</option>
<option value="slideshow">{{ $t('@.widgets.slideshow') }}</option>
<option value="version">{{ $t('@.widgets.version') }}</option>
<option value="broadcast">{{ $t('@.widgets.broadcast') }}</option>
<option value="notifications">{{ $t('@.widgets.notifications') }}</option>
<option value="users">{{ $t('@.widgets.users') }}</option>
<option value="polls">{{ $t('@.widgets.polls') }}</option>
<option value="post-form">{{ $t('@.widgets.post-form') }}</option>
<option value="messaging">{{ $t('@.widgets.messaging') }}</option>
<option value="memo">{{ $t('@.widgets.memo') }}</option>
<option value="hashtags">{{ $t('@.widgets.hashtags') }}</option>
<option value="posts-monitor">{{ $t('@.widgets.posts-monitor') }}</option>
<option value="server">{{ $t('@.widgets.server') }}</option>
<option value="nav">{{ $t('@.widgets.nav') }}</option>
<option value="tips">{{ $t('@.widgets.tips') }}</option>
2018-02-09 05:11:30 +01:00
</select>
<button @click="addWidget">{{ $t('add') }}</button>
2018-02-09 05:11:30 +01:00
</div>
<div class="trash">
2018-02-21 16:07:37 +01:00
<x-draggable v-model="trash" :options="{ group: 'x' }" @add="onTrash"></x-draggable>
<p>{{ $t('@.trash') }}</p>
2018-02-09 05:11:30 +01:00
</div>
</div>
</div>
2018-10-14 23:03:15 +02:00
<div class="main" :class="{ side: widgets.left.length == 0 || widgets.right.length == 0 }">
2018-02-21 16:07:37 +01:00
<template v-if="customize">
<x-draggable v-for="place in ['left', 'right']"
:list="widgets[place]"
:class="place"
:data-place="place"
:options="{ group: 'x', animation: 150 }"
@sort="onWidgetSort"
:key="place"
>
<div v-for="widget in widgets[place]" class="customize-container" :key="widget.id" @contextmenu.stop.prevent="onWidgetContextmenu(widget.id)">
<component :is="`mkw-${widget.name}`" :widget="widget" :ref="widget.id" :is-customize-mode="true" platform="desktop"/>
2018-02-21 16:07:37 +01:00
</div>
</x-draggable>
<div class="main">
<a @click="hint">{{ $t('@.customization-tips.title') }}</a>
2018-02-22 18:06:35 +01:00
<div>
2018-05-27 06:49:09 +02:00
<mk-post-form v-if="$store.state.settings.showPostFormOnTopOfTl"/>
2018-02-22 18:06:35 +01:00
<mk-timeline ref="tl" @loaded="onTlLoaded"/>
</div>
2018-02-21 16:07:37 +01:00
</div>
</template>
<template v-else>
<div v-for="place in ['left', 'right']" :class="place">
<component v-for="widget in widgets[place]" :is="`mkw-${widget.name}`" :key="widget.id" :ref="widget.id" :widget="widget" @chosen="warp" platform="desktop"/>
2018-02-21 16:07:37 +01:00
</div>
<div class="main">
2018-05-31 09:44:11 +02:00
<mk-post-form class="form" v-if="$store.state.settings.showPostFormOnTopOfTl"/>
2018-06-23 05:09:09 +02:00
<mk-timeline class="tl" ref="tl" @loaded="onTlLoaded" v-if="mode == 'timeline'"/>
2018-02-21 16:07:37 +01:00
</div>
</template>
2018-02-09 01:46:23 +01:00
</div>
2018-02-09 05:11:30 +01:00
</div>
2018-02-09 01:46:23 +01:00
</template>
2018-02-11 05:09:46 +01:00
<script lang="ts">
2018-02-11 05:02:35 +01:00
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-21 16:07:37 +01:00
import * as XDraggable from 'vuedraggable';
2018-02-11 05:09:46 +01:00
import * as uuid from 'uuid';
2018-02-09 05:11:30 +01:00
2018-06-05 19:48:26 +02:00
const defaultDesktopHomeWidgets = {
left: [
'profile',
'calendar',
'activity',
'rss',
2018-06-16 23:57:50 +02:00
'hashtags',
2018-06-05 19:48:26 +02:00
'photo-stream',
'version'
],
right: [
'broadcast',
'notifications',
'users',
'polls',
'server',
'nav',
'tips'
]
};
//#region Construct home data
const _defaultDesktopHomeWidgets = [];
for (const widget of defaultDesktopHomeWidgets.left) {
2018-06-05 19:48:26 +02:00
_defaultDesktopHomeWidgets.push({
name: widget,
id: uuid(),
place: 'left',
data: {}
});
}
2018-06-05 19:48:26 +02:00
for (const widget of defaultDesktopHomeWidgets.right) {
2018-06-05 19:48:26 +02:00
_defaultDesktopHomeWidgets.push({
name: widget,
id: uuid(),
place: 'right',
data: {}
});
}
2018-06-05 19:48:26 +02:00
//#endregion
2018-02-11 05:02:35 +01:00
export default Vue.extend({
i18n: i18n('desktop/views/components/home.vue'),
2018-02-21 16:07:37 +01:00
components: {
XDraggable
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
props: {
2018-04-07 20:58:11 +02:00
customize: {
type: Boolean,
default: false
},
2018-02-09 05:11:30 +01:00
mode: {
type: String,
default: 'timeline'
}
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
data() {
return {
2018-02-23 23:49:03 +01:00
connection: null,
2018-02-21 16:07:37 +01:00
widgetAdderSelected: null,
2018-04-29 10:17:15 +02:00
trash: []
2018-02-09 05:11:30 +01:00
};
},
2018-04-29 10:17:15 +02:00
2018-02-19 10:26:20 +01:00
computed: {
2018-04-29 10:17:15 +02:00
home(): any[] {
2018-06-05 20:03:56 +02:00
return this.$store.state.settings.home || [];
2018-02-21 12:55:03 +01:00
},
2018-02-21 16:07:37 +01:00
left(): any[] {
2018-02-21 12:55:03 +01:00
return this.home.filter(w => w.place == 'left');
2018-02-19 10:26:20 +01:00
},
2018-02-21 16:07:37 +01:00
right(): any[] {
2018-02-21 12:55:03 +01:00
return this.home.filter(w => w.place == 'right');
2018-04-29 10:17:15 +02:00
},
widgets(): any {
return {
left: this.left,
right: this.right
};
2018-02-19 10:26:20 +01:00
}
},
2018-04-29 10:17:15 +02:00
2018-06-05 19:48:26 +02:00
created() {
2018-06-05 20:03:56 +02:00
if (this.$store.state.settings.home == null) {
2018-11-09 00:13:34 +01:00
this.$root.api('i/update_home', {
2018-06-05 19:48:26 +02:00
home: _defaultDesktopHomeWidgets
2018-06-05 20:03:56 +02:00
}).then(() => {
this.$store.commit('settings/setHome', _defaultDesktopHomeWidgets);
2018-06-05 19:48:26 +02:00
});
}
},
2018-02-23 23:49:03 +01:00
mounted() {
2018-11-09 00:13:34 +01:00
this.connection = this.$root.stream.useSharedConnection('main');
2018-02-23 23:49:03 +01:00
},
2018-04-29 10:17:15 +02:00
2018-02-23 23:49:03 +01:00
beforeDestroy() {
this.connection.dispose();
2018-02-23 23:49:03 +01:00
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
methods: {
2018-02-22 18:06:35 +01:00
hint() {
2018-12-02 07:28:52 +01:00
this.$root.dialog({
title: this.$t('@.customization-tips.title'),
2018-11-14 08:30:58 +01:00
text: this.$t('@.customization-tips.paragraph')
2018-02-22 18:06:35 +01:00
});
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
onTlLoaded() {
this.$emit('loaded');
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
onWidgetContextmenu(widgetId) {
2018-02-21 17:08:49 +01:00
const w = (this.$refs[widgetId] as any)[0];
if (w.func) w.func();
2018-02-09 05:11:30 +01:00
},
2018-04-29 10:17:15 +02:00
2018-02-21 16:07:37 +01:00
onWidgetSort() {
this.saveHome();
},
2018-04-29 10:17:15 +02:00
2018-02-21 16:07:37 +01:00
onTrash(evt) {
this.saveHome();
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
addWidget() {
2018-04-29 10:17:15 +02:00
this.$store.dispatch('settings/addHomeWidget', {
2018-02-11 05:02:35 +01:00
name: this.widgetAdderSelected,
2018-02-09 05:11:30 +01:00
id: uuid(),
place: 'left',
data: {}
2018-04-29 10:17:15 +02:00
});
2018-02-09 05:11:30 +01:00
},
2018-04-29 10:17:15 +02:00
2018-02-09 05:11:30 +01:00
saveHome() {
2018-02-21 16:07:37 +01:00
const left = this.widgets.left;
const right = this.widgets.right;
2018-04-29 10:17:15 +02:00
this.$store.commit('settings/setHome', left.concat(right));
for (const w of left) w.place = 'left';
for (const w of right) w.place = 'right';
2018-11-09 00:13:34 +01:00
this.$root.api('i/update_home', {
2018-02-21 07:30:03 +01:00
home: this.home
2018-02-11 05:02:35 +01:00
});
2018-02-09 05:11:30 +01:00
},
2018-04-29 10:17:15 +02:00
2018-02-19 10:26:20 +01:00
warp(date) {
2018-02-24 15:56:57 +01:00
(this.$refs.tl as any).warp(date);
},
focus() {
(this.$refs.tl as any).focus();
2018-02-09 05:11:30 +01:00
}
}
2018-02-11 05:02:35 +01:00
});
2018-02-09 05:11:30 +01:00
</script>
2018-02-09 01:46:23 +01:00
<style lang="stylus" scoped>
2018-09-28 08:58:23 +02:00
.mk-home
2018-02-11 05:02:35 +01:00
display block
2018-02-09 01:46:23 +01:00
2018-02-11 05:02:35 +01:00
&[data-customize]
padding-top 48px
background-image url('/assets/desktop/grid.svg')
2018-02-09 01:46:23 +01:00
2018-02-21 16:21:07 +01:00
> .main > .main
2018-02-22 18:06:35 +01:00
> a
display block
margin-bottom 8px
text-align center
2018-02-09 01:46:23 +01:00
2018-02-22 18:06:35 +01:00
> div
cursor not-allowed !important
> *
pointer-events none
2018-02-11 05:02:35 +01:00
&:not([data-customize])
> .main > *:empty
display none
> .customize
position fixed
z-index 1000
top 0
left 0
width 100%
height 48px
2018-09-28 08:58:23 +02:00
color var(--text)
2018-09-26 18:32:04 +02:00
background var(--desktopHeaderBg)
2018-04-29 01:51:17 +02:00
box-shadow 0 1px 1px rgba(#000, 0.075)
2018-02-11 05:02:35 +01:00
> a
display block
position absolute
z-index 1001
top 0
right 0
padding 0 16px
line-height 48px
text-decoration none
2018-09-26 13:19:35 +02:00
color var(--primaryForeground)
background var(--primary)
2018-02-11 05:02:35 +01:00
transition background 0.1s ease
2018-02-09 01:46:23 +01:00
2018-02-11 05:02:35 +01:00
&:hover
2018-09-26 13:19:35 +02:00
background var(--primaryLighten10)
2018-02-09 01:46:23 +01:00
2018-02-11 05:02:35 +01:00
&:active
2018-09-26 13:19:35 +02:00
background var(--primaryDarken10)
2018-02-11 05:02:35 +01:00
transition background 0s ease
2018-02-09 01:46:23 +01:00
> [data-icon]
2018-02-11 05:02:35 +01:00
margin-right 8px
> div
2018-02-09 01:46:23 +01:00
display flex
margin 0 auto
2018-04-30 04:59:58 +02:00
max-width 1220px - 32px
2018-02-09 01:46:23 +01:00
2018-02-11 05:02:35 +01:00
> div
width 50%
&.adder
> p
display inline
line-height 48px
&.trash
2018-09-28 08:58:23 +02:00
border-left solid 1px var(--faceDivider)
2018-02-11 05:02:35 +01:00
> div
width 100%
height 100%
> p
position absolute
top 0
left 0
width 100%
line-height 48px
margin 0
text-align center
2018-02-09 01:46:23 +01:00
pointer-events none
2018-02-11 05:02:35 +01:00
> .main
display flex
justify-content center
margin 0 auto
2018-09-20 09:21:51 +02:00
max-width 1240px
2018-09-20 09:16:01 +02:00
2018-02-11 05:02:35 +01:00
> *
.customize-container
cursor move
2018-02-22 13:29:04 +01:00
border-radius 6px
&:hover
box-shadow 0 0 8px rgba(64, 120, 200, 0.3)
2018-02-09 01:46:23 +01:00
2018-02-11 05:02:35 +01:00
> *
pointer-events none
2018-02-09 01:46:23 +01:00
2018-02-19 10:26:20 +01:00
> .main
2018-02-11 05:02:35 +01:00
padding 16px
2018-09-20 09:21:51 +02:00
width calc(100% - 280px * 2)
2018-02-21 16:07:37 +01:00
order 2
2018-02-09 01:46:23 +01:00
2018-05-31 09:44:11 +02:00
> .form
2018-02-22 18:06:35 +01:00
margin-bottom 16px
2018-09-24 09:07:23 +02:00
box-shadow var(--shadow)
border-radius var(--round)
2018-02-22 18:06:35 +01:00
2018-10-14 23:03:15 +02:00
&.side
> .main
width calc(100% - 280px)
max-width 680px
2018-05-31 09:44:11 +02:00
2018-02-22 14:03:44 +01:00
> *:not(.main)
2018-09-20 09:21:51 +02:00
width 280px
2018-02-19 10:26:20 +01:00
padding 16px 0 16px 0
2018-02-09 01:46:23 +01:00
2018-02-19 10:26:20 +01:00
> *:not(:last-child)
margin-bottom 16px
2018-02-09 01:46:23 +01:00
2018-02-11 05:02:35 +01:00
> .left
padding-left 16px
2018-02-21 16:07:37 +01:00
order 1
2018-02-11 05:02:35 +01:00
> .right
padding-right 16px
2018-02-21 16:07:37 +01:00
order 3
2018-02-11 05:02:35 +01:00
2018-10-14 23:03:15 +02:00
&.side
@media (max-width 1000px)
> *:not(.main)
display none
> .main
width 100%
max-width 700px
margin 0 auto
&:not(.side)
@media (max-width 1200px)
> *:not(.main)
display none
> .main
width 100%
max-width 700px
margin 0 auto
2018-02-09 01:46:23 +01:00
</style>