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">
|
2018-02-22 18:06:35 +01:00
|
|
|
<router-link to="/">%fa:check%完了</router-link>
|
2018-02-09 05:11:30 +01:00
|
|
|
<div>
|
|
|
|
<div class="adder">
|
|
|
|
<p>ウィジェットを追加:</p>
|
2018-02-11 05:02:35 +01:00
|
|
|
<select v-model="widgetAdderSelected">
|
2018-02-09 05:11:30 +01:00
|
|
|
<option value="profile">プロフィール</option>
|
|
|
|
<option value="calendar">カレンダー</option>
|
|
|
|
<option value="timemachine">カレンダー(タイムマシン)</option>
|
|
|
|
<option value="activity">アクティビティ</option>
|
2018-02-20 17:12:18 +01:00
|
|
|
<option value="rss">RSSリーダー</option>
|
2018-02-09 05:11:30 +01:00
|
|
|
<option value="trends">トレンド</option>
|
|
|
|
<option value="photo-stream">フォトストリーム</option>
|
|
|
|
<option value="slideshow">スライドショー</option>
|
|
|
|
<option value="version">バージョン</option>
|
|
|
|
<option value="broadcast">ブロードキャスト</option>
|
|
|
|
<option value="notifications">通知</option>
|
2018-02-20 17:12:18 +01:00
|
|
|
<option value="users">おすすめユーザー</option>
|
|
|
|
<option value="polls">投票</option>
|
2018-02-09 05:11:30 +01:00
|
|
|
<option value="post-form">投稿フォーム</option>
|
|
|
|
<option value="messaging">メッセージ</option>
|
|
|
|
<option value="channel">チャンネル</option>
|
|
|
|
<option value="access-log">アクセスログ</option>
|
|
|
|
<option value="server">サーバー情報</option>
|
|
|
|
<option value="donation">寄付のお願い</option>
|
|
|
|
<option value="nav">ナビゲーション</option>
|
|
|
|
<option value="tips">ヒント</option>
|
|
|
|
</select>
|
|
|
|
<button @click="addWidget">追加</button>
|
|
|
|
</div>
|
|
|
|
<div class="trash">
|
2018-02-21 16:07:37 +01:00
|
|
|
<x-draggable v-model="trash" :options="{ group: 'x' }" @add="onTrash"></x-draggable>
|
2018-02-09 05:11:30 +01:00
|
|
|
<p>ゴミ箱</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="main">
|
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)">
|
2018-02-25 14:50:26 +01:00
|
|
|
<component :is="`mkw-${widget.name}`" :widget="widget" :ref="widget.id" :is-customize-mode="true"/>
|
2018-02-21 16:07:37 +01:00
|
|
|
</div>
|
|
|
|
</x-draggable>
|
|
|
|
<div class="main">
|
2018-02-22 18:06:35 +01:00
|
|
|
<a @click="hint">カスタマイズのヒント</a>
|
|
|
|
<div>
|
2018-03-29 07:48:47 +02:00
|
|
|
<mk-post-form v-if="os.i.account.clientSettings.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">
|
2018-02-23 23:49:03 +01:00
|
|
|
<component v-for="widget in widgets[place]" :is="`mkw-${widget.name}`" :key="widget.id" :ref="widget.id" :widget="widget" @chosen="warp"/>
|
2018-02-21 16:07:37 +01:00
|
|
|
</div>
|
|
|
|
<div class="main">
|
2018-03-29 07:48:47 +02:00
|
|
|
<mk-post-form v-if="os.i.account.clientSettings.showPostFormOnTopOfTl"/>
|
2018-02-21 16:07:37 +01:00
|
|
|
<mk-timeline ref="tl" @loaded="onTlLoaded" v-if="mode == 'timeline'"/>
|
|
|
|
<mk-mentions @loaded="onTlLoaded" v-if="mode == 'mentions'"/>
|
|
|
|
</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';
|
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-02-11 05:02:35 +01:00
|
|
|
export default Vue.extend({
|
2018-02-21 16:07:37 +01:00
|
|
|
components: {
|
|
|
|
XDraggable
|
|
|
|
},
|
2018-02-09 05:11:30 +01:00
|
|
|
props: {
|
|
|
|
customize: Boolean,
|
|
|
|
mode: {
|
|
|
|
type: String,
|
|
|
|
default: 'timeline'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2018-02-23 23:49:03 +01:00
|
|
|
connection: null,
|
|
|
|
connectionId: null,
|
2018-02-21 16:07:37 +01:00
|
|
|
widgetAdderSelected: null,
|
|
|
|
trash: [],
|
|
|
|
widgets: {
|
|
|
|
left: [],
|
|
|
|
right: []
|
|
|
|
}
|
2018-02-09 05:11:30 +01:00
|
|
|
};
|
|
|
|
},
|
2018-02-19 10:26:20 +01:00
|
|
|
computed: {
|
2018-02-21 16:07:37 +01:00
|
|
|
home: {
|
|
|
|
get(): any[] {
|
|
|
|
//#region 互換性のため
|
2018-03-29 07:48:47 +02:00
|
|
|
(this as any).os.i.account.clientSettings.home.forEach(w => {
|
2018-02-21 16:07:37 +01:00
|
|
|
if (w.name == 'rss-reader') w.name = 'rss';
|
|
|
|
if (w.name == 'user-recommendation') w.name = 'users';
|
|
|
|
if (w.name == 'recommended-polls') w.name = 'polls';
|
|
|
|
});
|
|
|
|
//#endregion
|
2018-03-29 07:48:47 +02:00
|
|
|
return (this as any).os.i.account.clientSettings.home;
|
2018-02-21 16:07:37 +01:00
|
|
|
},
|
|
|
|
set(value) {
|
2018-03-29 07:48:47 +02:00
|
|
|
(this as any).os.i.account.clientSettings.home = value;
|
2018-02-21 16:07:37 +01:00
|
|
|
}
|
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-02-19 10:26:20 +01:00
|
|
|
}
|
|
|
|
},
|
2018-02-21 16:07:37 +01:00
|
|
|
created() {
|
|
|
|
this.widgets.left = this.left;
|
|
|
|
this.widgets.right = this.right;
|
2018-03-29 07:48:47 +02:00
|
|
|
this.$watch('os.i.account.clientSettings', i => {
|
2018-02-21 16:07:37 +01:00
|
|
|
this.widgets.left = this.left;
|
|
|
|
this.widgets.right = this.right;
|
|
|
|
}, {
|
|
|
|
deep: true
|
|
|
|
});
|
|
|
|
},
|
2018-02-23 23:49:03 +01:00
|
|
|
mounted() {
|
|
|
|
this.connection = (this as any).os.stream.getConnection();
|
|
|
|
this.connectionId = (this as any).os.stream.use();
|
|
|
|
|
|
|
|
this.connection.on('home_updated', this.onHomeUpdated);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.connection.off('home_updated', this.onHomeUpdated);
|
|
|
|
(this as any).os.stream.dispose(this.connectionId);
|
|
|
|
},
|
2018-02-09 05:11:30 +01:00
|
|
|
methods: {
|
2018-02-22 18:06:35 +01:00
|
|
|
hint() {
|
|
|
|
(this as any).apis.dialog({
|
|
|
|
title: '%fa:info-circle%カスタマイズのヒント',
|
|
|
|
text: '<p>ホームのカスタマイズでは、ウィジェットを追加/削除したり、ドラッグ&ドロップして並べ替えたりすることができます。</p>' +
|
|
|
|
'<p>一部のウィジェットは、<strong><strong>右</strong>クリック</strong>することで表示を変更することができます。</p>' +
|
|
|
|
'<p>ウィジェットを削除するには、ヘッダーの<strong>「ゴミ箱」</strong>と書かれたエリアにウィジェットをドラッグ&ドロップします。</p>' +
|
|
|
|
'<p>カスタマイズを終了するには、右上の「完了」をクリックします。</p>',
|
|
|
|
actions: [{
|
|
|
|
text: 'Got it!'
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
},
|
2018-02-09 05:11:30 +01:00
|
|
|
onTlLoaded() {
|
|
|
|
this.$emit('loaded');
|
|
|
|
},
|
2018-02-23 23:49:03 +01:00
|
|
|
onHomeUpdated(data) {
|
|
|
|
if (data.home) {
|
2018-03-29 07:48:47 +02:00
|
|
|
(this as any).os.i.account.clientSettings.home = data.home;
|
2018-02-23 23:49:03 +01:00
|
|
|
this.widgets.left = data.home.filter(w => w.place == 'left');
|
|
|
|
this.widgets.right = data.home.filter(w => w.place == 'right');
|
|
|
|
} else {
|
2018-03-29 07:48:47 +02:00
|
|
|
const w = (this as any).os.i.account.clientSettings.home.find(w => w.id == data.id);
|
2018-02-23 23:49:03 +01:00
|
|
|
if (w != null) {
|
|
|
|
w.data = data.data;
|
|
|
|
this.$refs[w.id][0].preventSave = true;
|
|
|
|
this.$refs[w.id][0].props = w.data;
|
2018-03-29 07:48:47 +02:00
|
|
|
this.widgets.left = (this as any).os.i.account.clientSettings.home.filter(w => w.place == 'left');
|
|
|
|
this.widgets.right = (this as any).os.i.account.clientSettings.home.filter(w => w.place == 'right');
|
2018-02-23 23:49:03 +01: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-02-21 16:07:37 +01:00
|
|
|
onWidgetSort() {
|
|
|
|
this.saveHome();
|
|
|
|
},
|
|
|
|
onTrash(evt) {
|
|
|
|
this.saveHome();
|
|
|
|
},
|
2018-02-09 05:11:30 +01:00
|
|
|
addWidget() {
|
|
|
|
const widget = {
|
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-02-21 16:07:37 +01:00
|
|
|
this.widgets.left.unshift(widget);
|
2018-02-09 05:11:30 +01:00
|
|
|
this.saveHome();
|
|
|
|
},
|
|
|
|
saveHome() {
|
2018-02-21 16:07:37 +01:00
|
|
|
const left = this.widgets.left;
|
|
|
|
const right = this.widgets.right;
|
|
|
|
this.home = left.concat(right);
|
|
|
|
left.forEach(w => w.place = 'left');
|
|
|
|
right.forEach(w => w.place = 'right');
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).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-02-19 10:26:20 +01:00
|
|
|
warp(date) {
|
2018-02-24 15:56:57 +01:00
|
|
|
(this.$refs.tl as any).warp(date);
|
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-03-03 05:47:55 +01:00
|
|
|
@import '~const.styl'
|
|
|
|
|
2018-02-11 05:02:35 +01:00
|
|
|
.mk-home
|
|
|
|
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
|
|
|
|
background #f7f7f7
|
|
|
|
box-shadow 0 1px 1px rgba(0, 0, 0, 0.075)
|
|
|
|
|
|
|
|
> a
|
|
|
|
display block
|
|
|
|
position absolute
|
|
|
|
z-index 1001
|
|
|
|
top 0
|
|
|
|
right 0
|
|
|
|
padding 0 16px
|
|
|
|
line-height 48px
|
|
|
|
text-decoration none
|
|
|
|
color $theme-color-foreground
|
|
|
|
background $theme-color
|
|
|
|
transition background 0.1s ease
|
2018-02-09 01:46:23 +01:00
|
|
|
|
2018-02-11 05:02:35 +01:00
|
|
|
&:hover
|
|
|
|
background lighten($theme-color, 10%)
|
2018-02-09 01:46:23 +01:00
|
|
|
|
2018-02-11 05:02:35 +01:00
|
|
|
&:active
|
|
|
|
background darken($theme-color, 10%)
|
|
|
|
transition background 0s ease
|
2018-02-09 01:46:23 +01:00
|
|
|
|
2018-02-11 05:02:35 +01:00
|
|
|
> [data-fa]
|
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> div
|
2018-02-09 01:46:23 +01:00
|
|
|
display flex
|
|
|
|
margin 0 auto
|
2018-02-11 05:02:35 +01:00
|
|
|
max-width 1200px - 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
|
|
|
|
border-left solid 1px #ddd
|
|
|
|
|
|
|
|
> 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
|
|
|
|
max-width 1200px
|
2018-02-09 01:46:23 +01: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
|
|
|
|
width calc(100% - 275px * 2)
|
2018-02-21 16:07:37 +01:00
|
|
|
order 2
|
2018-02-09 01:46:23 +01:00
|
|
|
|
2018-02-22 18:06:35 +01:00
|
|
|
.mk-post-form
|
|
|
|
margin-bottom 16px
|
|
|
|
border solid 1px #e5e5e5
|
|
|
|
border-radius 4px
|
|
|
|
|
2018-02-22 14:03:44 +01:00
|
|
|
> *:not(.main)
|
2018-02-11 05:02:35 +01:00
|
|
|
width 275px
|
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
|
|
|
|
|
|
|
@media (max-width 1100px)
|
2018-02-22 14:03:44 +01:00
|
|
|
> *:not(.main)
|
2018-02-11 05:02:35 +01:00
|
|
|
display none
|
|
|
|
|
2018-02-19 10:26:20 +01:00
|
|
|
> .main
|
2018-02-11 05:02:35 +01:00
|
|
|
float none
|
|
|
|
width 100%
|
|
|
|
max-width 700px
|
|
|
|
margin 0 auto
|
2018-02-09 01:46:23 +01:00
|
|
|
|
|
|
|
</style>
|