Sharkey/src/web/app/desktop/views/components/home.vue

365 lines
9.7 KiB
Vue
Raw Normal View History

2018-02-09 02:46:23 +02:00
<template>
2018-02-11 06:02:35 +02:00
<div class="mk-home" :data-customize="customize">
2018-02-09 06:11:30 +02:00
<div class="customize" v-if="customize">
<a href="/">%fa:check%完了</a>
<div>
<div class="adder">
<p>ウィジェットを追加:</p>
2018-02-11 06:02:35 +02:00
<select v-model="widgetAdderSelected">
2018-02-09 06:11:30 +02:00
<option value="profile">プロフィール</option>
<option value="calendar">カレンダー</option>
<option value="timemachine">カレンダー(タイムマシン)</option>
<option value="activity">アクティビティ</option>
<option value="rss-reader">RSSリーダー</option>
<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>
<option value="user-recommendation">おすすめユーザー</option>
<option value="recommended-polls">投票</option>
<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">
<div ref="trash"></div>
<p>ゴミ箱</p>
</div>
</div>
</div>
<div class="main">
<div class="left">
<div ref="left" data-place="left">
<template v-for="widget in leftWidgets">
2018-02-11 06:02:35 +02:00
<div class="customize-container" v-if="customize" :key="widget.id" @contextmenu.stop.prevent="onWidgetContextmenu(widget.id)">
2018-02-18 16:51:41 +02:00
<component :is="'mkw-' + widget.name" :widget="widget" :ref="widget.id"/>
2018-02-09 06:11:30 +02:00
</div>
<template v-else>
2018-02-18 16:51:41 +02:00
<component :is="'mkw-' + widget.name" :key="widget.id" :widget="widget" :ref="widget.id"/>
2018-02-09 06:11:30 +02:00
</template>
</template>
2018-02-09 02:46:23 +02:00
</div>
</div>
2018-02-09 06:11:30 +02:00
<main ref="main">
<div class="maintop" ref="maintop" data-place="main" v-if="customize">
<template v-for="widget in centerWidgets">
2018-02-11 06:02:35 +02:00
<div class="customize-container" v-if="customize" :key="widget.id" @contextmenu.stop.prevent="onWidgetContextmenu(widget.id)">
2018-02-18 16:51:41 +02:00
<component :is="'mkw-' + widget.name" :widget="widget" :ref="widget.id"/>
2018-02-09 06:11:30 +02:00
</div>
<template v-else>
2018-02-18 16:51:41 +02:00
<component :is="'mkw-' + widget.name" :key="widget.id" :widget="widget" :ref="widget.id"/>
2018-02-09 06:11:30 +02:00
</template>
</template>
2018-02-09 02:46:23 +02:00
</div>
2018-02-11 06:09:46 +02:00
<mk-timeline ref="tl" @loaded="onTlLoaded" v-if="mode == 'timeline'"/>
<mk-mentions ref="tl" @loaded="onTlLoaded" v-if="mode == 'mentions'"/>
2018-02-09 06:11:30 +02:00
</main>
<div class="right">
<div ref="right" data-place="right">
<template v-for="widget in rightWidgets">
2018-02-11 06:02:35 +02:00
<div class="customize-container" v-if="customize" :key="widget.id" @contextmenu.stop.prevent="onWidgetContextmenu(widget.id)">
2018-02-18 16:51:41 +02:00
<component :is="'mkw-' + widget.name" :widget="widget" :ref="widget.id"/>
2018-02-09 06:11:30 +02:00
</div>
<template v-else>
2018-02-18 16:51:41 +02:00
<component :is="'mkw-' + widget.name" :key="widget.id" :widget="widget" :ref="widget.id"/>
2018-02-09 06:11:30 +02:00
</template>
</template>
2018-02-09 02:46:23 +02:00
</div>
2018-02-09 06:11:30 +02:00
</div>
2018-02-09 02:46:23 +02:00
</div>
2018-02-09 06:11:30 +02:00
</div>
2018-02-09 02:46:23 +02:00
</template>
2018-02-11 06:09:46 +02:00
<script lang="ts">
2018-02-11 06:02:35 +02:00
import Vue from 'vue';
2018-02-11 06:09:46 +02:00
import * as uuid from 'uuid';
2018-02-09 06:11:30 +02:00
import Sortable from 'sortablejs';
2018-02-11 06:02:35 +02:00
export default Vue.extend({
2018-02-09 06:11:30 +02:00
props: {
customize: Boolean,
mode: {
type: String,
default: 'timeline'
}
},
data() {
return {
home: [],
2018-02-11 06:02:35 +02:00
bakedHomeData: null,
widgetAdderSelected: null
2018-02-09 06:11:30 +02:00
};
},
methods: {
bakeHomeData() {
2018-02-18 05:35:18 +02:00
return JSON.stringify((this as any).os.i.client_settings.home);
2018-02-09 06:11:30 +02:00
},
onTlLoaded() {
this.$emit('loaded');
},
onMeRefreshed() {
if (this.bakedHomeData != this.bakeHomeData()) {
// TODO: i18n
alert('別の場所でホームが編集されました。ページを再度読み込みすると編集が反映されます。');
}
},
onWidgetContextmenu(widgetId) {
2018-02-11 06:02:35 +02:00
(this.$refs[widgetId] as any).func();
2018-02-09 06:11:30 +02:00
},
addWidget() {
const widget = {
2018-02-11 06:02:35 +02:00
name: this.widgetAdderSelected,
2018-02-09 06:11:30 +02:00
id: uuid(),
place: 'left',
data: {}
};
2018-02-18 05:35:18 +02:00
(this as any).os.i.client_settings.home.unshift(widget);
2018-02-09 06:11:30 +02:00
this.saveHome();
},
saveHome() {
2018-02-11 06:02:35 +02:00
const data = [];
2018-02-09 06:11:30 +02:00
2018-02-11 06:02:35 +02:00
Array.from((this.$refs.left as Element).children).forEach(el => {
2018-02-09 06:11:30 +02:00
const id = el.getAttribute('data-widget-id');
2018-02-18 05:35:18 +02:00
const widget = (this as any).os.i.client_settings.home.find(w => w.id == id);
2018-02-09 06:11:30 +02:00
widget.place = 'left';
data.push(widget);
});
2018-02-11 06:02:35 +02:00
Array.from((this.$refs.right as Element).children).forEach(el => {
2018-02-09 06:11:30 +02:00
const id = el.getAttribute('data-widget-id');
2018-02-18 05:35:18 +02:00
const widget = (this as any).os.i.client_settings.home.find(w => w.id == id);
2018-02-09 06:11:30 +02:00
widget.place = 'right';
data.push(widget);
});
2018-02-11 06:02:35 +02:00
Array.from((this.$refs.maintop as Element).children).forEach(el => {
2018-02-09 06:11:30 +02:00
const id = el.getAttribute('data-widget-id');
2018-02-18 05:35:18 +02:00
const widget = (this as any).os.i.client_settings.home.find(w => w.id == id);
2018-02-09 06:11:30 +02:00
widget.place = 'main';
data.push(widget);
});
2018-02-18 05:35:18 +02:00
(this as any).api('i/update_home', {
2018-02-09 06:11:30 +02:00
home: data
2018-02-11 06:02:35 +02:00
});
2018-02-09 06:11:30 +02:00
}
},
computed: {
2018-02-11 06:02:35 +02:00
leftWidgets(): any {
2018-02-18 05:35:18 +02:00
return (this as any).os.i.client_settings.home.filter(w => w.place == 'left');
2018-02-09 06:11:30 +02:00
},
2018-02-11 06:02:35 +02:00
centerWidgets(): any {
2018-02-18 05:35:18 +02:00
return (this as any).os.i.client_settings.home.filter(w => w.place == 'center');
2018-02-09 06:11:30 +02:00
},
2018-02-11 06:02:35 +02:00
rightWidgets(): any {
2018-02-18 05:35:18 +02:00
return (this as any).os.i.client_settings.home.filter(w => w.place == 'right');
2018-02-09 06:11:30 +02:00
}
},
created() {
this.bakedHomeData = this.bakeHomeData();
},
mounted() {
2018-02-18 05:35:18 +02:00
(this as any).os.i.on('refreshed', this.onMeRefreshed);
2018-02-09 06:11:30 +02:00
2018-02-18 05:35:18 +02:00
this.home = (this as any).os.i.client_settings.home;
2018-02-09 06:11:30 +02:00
2018-02-11 06:02:35 +02:00
if (!this.customize) {
if ((this.$refs.left as Element).children.length == 0) {
(this.$refs.left as Element).parentNode.removeChild((this.$refs.left as Element));
2018-02-09 06:11:30 +02:00
}
2018-02-11 06:02:35 +02:00
if ((this.$refs.right as Element).children.length == 0) {
(this.$refs.right as Element).parentNode.removeChild((this.$refs.right as Element));
2018-02-09 06:11:30 +02:00
}
}
2018-02-11 06:02:35 +02:00
if (this.customize) {
/*dialog('%fa:info-circle%',
2018-02-09 06:11:30 +02:00
'<p>ホームのカスタマイズでは、ウィジェットを追加/削除したり、ドラッグ&ドロップして並べ替えたりすることができます。</p>' +
'<p>一部のウィジェットは、<strong><strong>右</strong>クリック</strong>することで表示を変更することができます。</p>' +
'<p>ウィジェットを削除するには、ヘッダーの<strong>「ゴミ箱」</strong>と書かれたエリアにウィジェットをドラッグ&ドロップします。</p>' +
'<p>カスタマイズを終了するには、右上の「完了」をクリックします。</p>',
[{
text: 'Got it!'
2018-02-11 06:02:35 +02:00
}]);*/
2018-02-09 06:11:30 +02:00
const sortableOption = {
group: 'kyoppie',
animation: 150,
onMove: evt => {
const id = evt.dragged.getAttribute('data-widget-id');
this.home.find(tag => tag.id == id).update({ place: evt.to.getAttribute('data-place') });
},
onSort: () => {
this.saveHome();
}
};
new Sortable(this.$refs.left, sortableOption);
new Sortable(this.$refs.right, sortableOption);
new Sortable(this.$refs.maintop, sortableOption);
new Sortable(this.$refs.trash, Object.assign({}, sortableOption, {
onAdd: evt => {
const el = evt.item;
const id = el.getAttribute('data-widget-id');
el.parentNode.removeChild(el);
2018-02-18 05:35:18 +02:00
(this as any).os.i.client_settings.home = (this as any).os.i.client_settings.home.filter(w => w.id != id);
2018-02-09 06:11:30 +02:00
this.saveHome();
}
}));
}
},
beforeDestroy() {
2018-02-18 05:35:18 +02:00
(this as any).os.i.off('refreshed', this.onMeRefreshed);
2018-02-09 06:11:30 +02:00
this.home.forEach(widget => {
widget.unmount();
});
}
2018-02-11 06:02:35 +02:00
});
2018-02-09 06:11:30 +02:00
</script>
2018-02-09 02:46:23 +02:00
<style lang="stylus" scoped>
2018-02-11 06:02:35 +02:00
.mk-home
display block
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
&[data-customize]
padding-top 48px
background-image url('/assets/desktop/grid.svg')
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> .main > main > *:not(.maintop)
cursor not-allowed
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *
pointer-events none
&: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 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
&:hover
background lighten($theme-color, 10%)
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
&:active
background darken($theme-color, 10%)
transition background 0s ease
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> [data-fa]
margin-right 8px
> div
2018-02-09 02:46:23 +02:00
display flex
margin 0 auto
2018-02-11 06:02:35 +02:00
max-width 1200px - 32px
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02: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 02:46:23 +02:00
pointer-events none
2018-02-11 06:02:35 +02:00
> .main
display flex
justify-content center
margin 0 auto
max-width 1200px
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *
.customize-container
cursor move
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *
pointer-events none
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> main
padding 16px
width calc(100% - 275px * 2)
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *:not(.maintop):not(:last-child)
> .maintop > *:not(:last-child)
margin-bottom 16px
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> .maintop
min-height 64px
margin-bottom 16px
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *:not(main)
width 275px
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *
padding 16px 0 16px 0
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> *:not(:last-child)
margin-bottom 16px
2018-02-09 02:46:23 +02:00
2018-02-11 06:02:35 +02:00
> .left
padding-left 16px
> .right
padding-right 16px
@media (max-width 1100px)
> *:not(main)
display none
> main
float none
width 100%
max-width 700px
margin 0 auto
2018-02-09 02:46:23 +02:00
</style>