2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-app" v-hotkey.global="keymap">
|
|
|
|
<header class="header">
|
|
|
|
<div class="title" ref="title">
|
2020-02-06 04:11:14 -06:00
|
|
|
<transition :name="$store.state.device.animation ? 'header' : ''" mode="out-in" appear>
|
2020-01-29 13:37:25 -06:00
|
|
|
<button class="_button back" v-if="canBack" @click="back()"><fa :icon="faChevronLeft"/></button>
|
|
|
|
</transition>
|
2020-02-06 04:11:14 -06:00
|
|
|
<transition :name="$store.state.device.animation ? 'header' : ''" mode="out-in" appear>
|
2020-01-29 13:37:25 -06:00
|
|
|
<div class="body" :key="pageKey">
|
|
|
|
<div class="default">
|
|
|
|
<portal-target name="avatar" slim/>
|
|
|
|
<h1 class="title"><portal-target name="icon" slim/><portal-target name="title" slim/></h1>
|
|
|
|
</div>
|
|
|
|
<div class="custom">
|
|
|
|
<portal-target name="header" slim/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
<div class="sub">
|
2020-02-09 14:42:03 -06:00
|
|
|
<button v-if="widgetsEditMode" class="_button edit active" @click="widgetsEditMode = false"><fa :icon="faGripVertical"/></button>
|
|
|
|
<button v-else class="_button edit" @click="widgetsEditMode = true"><fa :icon="faGripVertical"/></button>
|
|
|
|
<div class="search">
|
|
|
|
<fa :icon="faSearch"/>
|
|
|
|
<input type="search" :placeholder="$t('search')" v-model="searchQuery" v-autocomplete="{ model: 'searchQuery' }" :disabled="searchWait" @keypress="searchKeypress"/>
|
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
<button v-if="$store.getters.isSignedIn" class="post _buttonPrimary" @click="post()"><fa :icon="faPencilAlt"/></button>
|
2020-02-14 11:54:42 -06:00
|
|
|
<x-clock v-if="isDesktop" class="clock"/>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2020-02-07 21:46:14 -06:00
|
|
|
<transition name="nav-back">
|
|
|
|
<div class="nav-back"
|
|
|
|
v-if="showNav"
|
|
|
|
@click="showNav = false"
|
|
|
|
@touchstart="showNav = false"
|
|
|
|
></div>
|
|
|
|
</transition>
|
|
|
|
|
|
|
|
<transition name="nav">
|
|
|
|
<nav class="nav" ref="nav" v-show="showNav">
|
|
|
|
<div>
|
|
|
|
<button class="item _button account" @click="openAccountMenu" v-if="$store.getters.isSignedIn">
|
|
|
|
<mk-avatar :user="$store.state.i" class="avatar"/><mk-acct class="text" :user="$store.state.i"/>
|
|
|
|
</button>
|
2020-02-17 10:25:02 -06:00
|
|
|
<button class="item _button index active" @click="top()" v-if="$route.name === 'index'">
|
|
|
|
<fa :icon="faHome" fixed-width/><span class="text">{{ $store.getters.isSignedIn ? $t('timeline') : $t('home') }}</span>
|
|
|
|
</button>
|
|
|
|
<router-link class="item index" active-class="active" to="/" exact v-else>
|
2020-02-17 10:12:35 -06:00
|
|
|
<fa :icon="faHome" fixed-width/><span class="text">{{ $store.getters.isSignedIn ? $t('timeline') : $t('home') }}</span>
|
2020-02-07 21:46:14 -06:00
|
|
|
</router-link>
|
2020-05-05 21:41:44 -05:00
|
|
|
<template v-for="item in menu">
|
|
|
|
<div v-if="item === '-'" class="divider"></div>
|
2020-06-21 09:01:10 -05:00
|
|
|
<component v-else-if="menuDef[item] && (menuDef[item].show !== false)" :is="menuDef[item].to ? 'router-link' : 'button'" class="item _button" :class="item" active-class="active" @click="() => { if (menuDef[item].action) menuDef[item].action() }" :to="menuDef[item].to">
|
2020-05-05 21:41:44 -05:00
|
|
|
<fa :icon="menuDef[item].icon" fixed-width/><span class="text">{{ $t(menuDef[item].title) }}</span>
|
|
|
|
<i v-if="menuDef[item].indicated"><fa :icon="faCircle"/></i>
|
|
|
|
</component>
|
2020-02-18 15:16:49 -06:00
|
|
|
</template>
|
2020-02-07 21:46:14 -06:00
|
|
|
<div class="divider"></div>
|
|
|
|
<button class="item _button" :class="{ active: $route.path === '/instance' || $route.path.startsWith('/instance/') }" v-if="$store.getters.isSignedIn && ($store.state.i.isAdmin || $store.state.i.isModerator)" @click="oepnInstanceMenu">
|
|
|
|
<fa :icon="faServer" fixed-width/><span class="text">{{ $t('instance') }}</span>
|
|
|
|
</button>
|
|
|
|
<button class="item _button" @click="more">
|
|
|
|
<fa :icon="faEllipsisH" fixed-width/><span class="text">{{ $t('more') }}</span>
|
2020-05-05 21:41:44 -05:00
|
|
|
<i v-if="otherNavItemIndicated"><fa :icon="faCircle"/></i>
|
2020-02-07 21:46:14 -06:00
|
|
|
</button>
|
2020-02-19 11:40:53 -06:00
|
|
|
<router-link class="item" active-class="active" to="/preferences">
|
2020-02-16 12:10:51 -06:00
|
|
|
<fa :icon="faCog" fixed-width/><span class="text">{{ $t('settings') }}</span>
|
|
|
|
</router-link>
|
2020-02-07 21:46:14 -06:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</transition>
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-02-14 17:29:59 -06:00
|
|
|
<div class="contents" ref="contents" :class="{ wallpaper }">
|
2020-01-29 13:37:25 -06:00
|
|
|
<main ref="main">
|
2020-02-07 20:54:39 -06:00
|
|
|
<div class="content">
|
|
|
|
<transition :name="$store.state.device.animation ? 'page' : ''" mode="out-in" @enter="onTransition">
|
2020-01-31 18:00:22 -06:00
|
|
|
<keep-alive :include="['index']">
|
|
|
|
<router-view></router-view>
|
|
|
|
</keep-alive>
|
2020-01-29 13:37:25 -06:00
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
<div class="powerd-by" :class="{ visible: !$store.getters.isSignedIn }">
|
|
|
|
<b><router-link to="/">{{ host }}</router-link></b>
|
|
|
|
<small>Powered by <a href="https://github.com/syuilo/misskey" target="_blank">Misskey</a></small>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
2020-07-04 08:33:42 -05:00
|
|
|
<template v-if="isDesktop">
|
|
|
|
<div class="widgets" :class="{ edit: widgetsEditMode }" v-for="place in ['left', 'right']" :key="place">
|
2020-07-04 07:47:54 -05:00
|
|
|
<template v-if="widgetsEditMode">
|
2020-07-04 08:33:42 -05:00
|
|
|
<mk-button primary @click="addWidget(place)" class="add"><fa :icon="faPlus"/></mk-button>
|
2020-07-04 07:47:54 -05:00
|
|
|
<x-draggable
|
2020-07-04 08:33:42 -05:00
|
|
|
:list="widgets[place]"
|
2020-07-04 07:47:54 -05:00
|
|
|
handle=".handle"
|
|
|
|
animation="150"
|
|
|
|
class="sortable"
|
|
|
|
@sort="onWidgetSort"
|
|
|
|
>
|
2020-07-04 08:33:42 -05:00
|
|
|
<div v-for="widget in widgets[place]" class="customize-container _panel" :key="widget.id">
|
2020-07-04 07:47:54 -05:00
|
|
|
<header>
|
|
|
|
<span class="handle"><fa :icon="faBars"/></span>{{ $t('_widgets.' + widget.name) }}<button class="remove _button" @click="removeWidget(widget)"><fa :icon="faTimes"/></button>
|
|
|
|
</header>
|
|
|
|
<div @click="widgetFunc(widget.id)">
|
|
|
|
<component :is="`mkw-${widget.name}`" :widget="widget" :ref="widget.id" :is-customize-mode="true"/>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
2020-07-04 07:47:54 -05:00
|
|
|
</div>
|
|
|
|
</x-draggable>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
2020-07-04 08:33:42 -05:00
|
|
|
<component v-else class="_widget" v-for="widget in widgets[place]" :is="`mkw-${widget.name}`" :key="widget.id" :ref="widget.id" :widget="widget"/>
|
|
|
|
</div>
|
|
|
|
</template>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="buttons">
|
2020-05-05 21:41:44 -05:00
|
|
|
<button class="button nav _button" @click="showNav = true" ref="navButton"><fa :icon="faBars"/><i v-if="navIndicated"><fa :icon="faCircle"/></i></button>
|
2020-02-17 10:25:02 -06:00
|
|
|
<button v-if="$route.name === 'index'" class="button home _button" @click="top()"><fa :icon="faHome"/></button>
|
|
|
|
<button v-else class="button home _button" @click="$router.push('/')"><fa :icon="faHome"/></button>
|
2020-05-05 21:41:44 -05:00
|
|
|
<button v-if="$store.getters.isSignedIn" class="button notifications _button" @click="$router.push('/my/notifications')"><fa :icon="faBell"/><i v-if="$store.state.i.hasUnreadNotification"><fa :icon="faCircle"/></i></button>
|
2020-01-29 13:37:25 -06:00
|
|
|
<button v-if="$store.getters.isSignedIn" class="button post _buttonPrimary" @click="post()"><fa :icon="faPencilAlt"/></button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button v-if="$store.getters.isSignedIn" class="post _buttonPrimary" @click="post()"><fa :icon="faPencilAlt"/></button>
|
|
|
|
|
2020-02-19 12:42:36 -06:00
|
|
|
<stream-indicator v-if="$store.getters.isSignedIn"/>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-05-10 04:42:31 -05:00
|
|
|
import { faGripVertical, faChevronLeft, faHashtag, faBroadcastTower, faFireAlt, faEllipsisH, faPencilAlt, faBars, faTimes, faSearch, faUserCog, faCog, faUser, faHome, faStar, faCircle, faAt, faListUl, faPlus, faUserClock, faUsers, faTachometerAlt, faExchangeAlt, faGlobe, faChartBar, faCloud, faServer, faInfoCircle, faQuestionCircle, faProjectDiagram } from '@fortawesome/free-solid-svg-icons';
|
2020-01-29 13:37:25 -06:00
|
|
|
import { faBell, faEnvelope, faLaugh, faComments } from '@fortawesome/free-regular-svg-icons';
|
2020-02-09 14:42:03 -06:00
|
|
|
import { ResizeObserver } from '@juggle/resize-observer';
|
2020-01-29 13:37:25 -06:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2020-02-12 11:48:52 -06:00
|
|
|
import { host, instanceName } from './config';
|
2020-01-29 13:37:25 -06:00
|
|
|
import { search } from './scripts/search';
|
|
|
|
|
2020-02-14 18:22:16 -06:00
|
|
|
const DESKTOP_THRESHOLD = 1100;
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2020-02-14 11:54:42 -06:00
|
|
|
XClock: () => import('./components/header-clock.vue').then(m => m.default),
|
2020-01-29 13:37:25 -06:00
|
|
|
MkButton: () => import('./components/ui/button.vue').then(m => m.default),
|
|
|
|
XDraggable: () => import('vuedraggable'),
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host: host,
|
|
|
|
pageKey: 0,
|
2020-02-07 21:46:14 -06:00
|
|
|
showNav: false,
|
2020-01-29 13:37:25 -06:00
|
|
|
searching: false,
|
|
|
|
accounts: [],
|
|
|
|
lists: [],
|
|
|
|
connection: null,
|
|
|
|
searchQuery: '',
|
|
|
|
searchWait: false,
|
|
|
|
widgetsEditMode: false,
|
2020-05-09 01:22:50 -05:00
|
|
|
menuDef: this.$store.getters.nav({
|
2020-05-05 21:41:44 -05:00
|
|
|
search: this.search
|
|
|
|
}),
|
2020-02-14 18:22:16 -06:00
|
|
|
isDesktop: window.innerWidth >= DESKTOP_THRESHOLD,
|
2020-01-29 13:37:25 -06:00
|
|
|
canBack: false,
|
2020-02-14 17:29:59 -06:00
|
|
|
wallpaper: localStorage.getItem('wallpaper') != null,
|
2020-05-10 04:42:31 -05:00
|
|
|
faGripVertical, faChevronLeft, faComments, faHashtag, faBroadcastTower, faFireAlt, faEllipsisH, faPencilAlt, faBars, faTimes, faBell, faSearch, faUserCog, faCog, faUser, faHome, faStar, faCircle, faAt, faEnvelope, faListUl, faPlus, faUserClock, faLaugh, faUsers, faTachometerAlt, faExchangeAlt, faGlobe, faChartBar, faCloud, faServer, faProjectDiagram
|
2020-01-29 13:37:25 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
keymap(): any {
|
|
|
|
return {
|
|
|
|
'p': this.post,
|
|
|
|
'n': this.post,
|
2020-02-09 04:34:26 -06:00
|
|
|
's': this.search,
|
2020-02-06 11:38:02 -06:00
|
|
|
'h|/': this.help
|
2020-01-29 13:37:25 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
widgets(): any[] {
|
2020-07-04 08:53:56 -05:00
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
const widgets = this.$store.state.deviceUser.widgets;
|
|
|
|
return {
|
|
|
|
left: widgets.filter(x => x.place === 'left'),
|
|
|
|
right: widgets.filter(x => x.place == null || x.place === 'right'),
|
|
|
|
mobile: widgets.filter(x => x.place === 'mobile'),
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
left: [],
|
|
|
|
right: [{
|
2020-07-04 12:09:14 -05:00
|
|
|
name: 'welcome',
|
2020-07-04 08:53:56 -05:00
|
|
|
id: 'a', place: 'right', data: {}
|
2020-07-04 12:09:14 -05:00
|
|
|
}, {
|
|
|
|
name: 'calendar',
|
|
|
|
id: 'b', place: 'right', data: {}
|
2020-07-04 08:53:56 -05:00
|
|
|
}, {
|
|
|
|
name: 'trends',
|
|
|
|
id: 'c', place: 'right', data: {}
|
|
|
|
}],
|
|
|
|
mobile: [],
|
|
|
|
};
|
|
|
|
}
|
2020-05-05 21:41:44 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
menu(): string[] {
|
|
|
|
return this.$store.state.deviceUser.menu;
|
|
|
|
},
|
|
|
|
|
|
|
|
otherNavItemIndicated(): boolean {
|
|
|
|
if (!this.$store.getters.isSignedIn) return false;
|
|
|
|
for (const def in this.menuDef) {
|
|
|
|
if (this.menu.includes(def)) continue;
|
|
|
|
if (this.menuDef[def].indicated) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
navIndicated(): boolean {
|
|
|
|
if (!this.$store.getters.isSignedIn) return false;
|
|
|
|
for (const def in this.menuDef) {
|
|
|
|
if (def === 'timeline') continue;
|
|
|
|
if (def === 'notifications') continue;
|
|
|
|
if (this.menuDef[def].indicated) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch:{
|
|
|
|
$route(to, from) {
|
|
|
|
this.pageKey++;
|
2020-02-08 07:23:44 -06:00
|
|
|
this.showNav = false;
|
2020-01-29 13:37:25 -06:00
|
|
|
this.canBack = (window.history.length > 0 && !['index'].includes(to.name));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
if (this.$store.getters.isSignedIn) {
|
|
|
|
this.connection = this.$root.stream.useSharedConnection('main');
|
|
|
|
this.connection.on('notification', this.onNotification);
|
|
|
|
|
2020-07-04 08:33:42 -05:00
|
|
|
if (this.$store.state.deviceUser.widgets.length === 0) {
|
2020-02-09 16:23:43 -06:00
|
|
|
this.$store.commit('deviceUser/setWidgets', [{
|
2020-02-09 14:44:47 -06:00
|
|
|
name: 'calendar',
|
2020-07-04 08:33:42 -05:00
|
|
|
id: 'a', place: 'right', data: {}
|
2020-02-09 14:44:47 -06:00
|
|
|
}, {
|
|
|
|
name: 'notifications',
|
2020-07-04 08:33:42 -05:00
|
|
|
id: 'b', place: 'right', data: {}
|
2020-02-09 14:44:47 -06:00
|
|
|
}, {
|
|
|
|
name: 'trends',
|
2020-07-04 08:33:42 -05:00
|
|
|
id: 'c', place: 'right', data: {}
|
2020-01-29 13:37:25 -06:00
|
|
|
}]);
|
|
|
|
}
|
|
|
|
}
|
2020-02-09 14:42:03 -06:00
|
|
|
},
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-02-09 14:42:03 -06:00
|
|
|
mounted() {
|
2020-02-09 13:04:10 -06:00
|
|
|
const adjustTitlePosition = () => {
|
2020-03-22 05:41:35 -05:00
|
|
|
const left = this.$refs.main.getBoundingClientRect().left - this.$refs.nav.offsetWidth;
|
|
|
|
if (left >= 0) {
|
|
|
|
this.$refs.title.style.left = left + 'px';
|
|
|
|
}
|
2020-02-09 13:04:10 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
adjustTitlePosition();
|
|
|
|
|
2020-02-09 14:42:03 -06:00
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
|
|
adjustTitlePosition();
|
|
|
|
});
|
2020-02-14 08:31:24 -06:00
|
|
|
|
2020-02-09 14:42:03 -06:00
|
|
|
ro.observe(this.$refs.contents);
|
|
|
|
|
2020-02-14 18:22:16 -06:00
|
|
|
window.addEventListener('resize', adjustTitlePosition, { passive: true });
|
|
|
|
|
|
|
|
if (!this.isDesktop) {
|
|
|
|
window.addEventListener('resize', () => {
|
|
|
|
if (window.innerWidth >= DESKTOP_THRESHOLD) this.isDesktop = true;
|
|
|
|
}, { passive: true });
|
|
|
|
}
|
2020-02-09 13:04:10 -06:00
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
methods: {
|
2020-02-17 10:12:35 -06:00
|
|
|
top() {
|
|
|
|
window.scroll({ top: 0, behavior: 'smooth' });
|
|
|
|
},
|
|
|
|
|
2020-02-06 11:38:02 -06:00
|
|
|
help() {
|
|
|
|
this.$router.push('/docs/keyboard-shortcut');
|
|
|
|
},
|
2020-02-07 04:15:08 -06:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
back() {
|
2020-02-03 06:05:13 -06:00
|
|
|
if (this.canBack) window.history.back();
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
2020-02-06 03:25:25 -06:00
|
|
|
onTransition() {
|
|
|
|
if (window._scroll) window._scroll();
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
post() {
|
|
|
|
this.$root.post();
|
|
|
|
},
|
|
|
|
|
|
|
|
search() {
|
|
|
|
if (this.searching) return;
|
|
|
|
|
|
|
|
this.$root.dialog({
|
|
|
|
title: this.$t('search'),
|
|
|
|
input: true
|
|
|
|
}).then(async ({ canceled, result: query }) => {
|
2020-04-03 18:46:54 -05:00
|
|
|
if (canceled || query == null || query === '') return;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
this.searching = true;
|
|
|
|
search(this, query).finally(() => {
|
|
|
|
this.searching = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
searchKeypress(e) {
|
2020-04-03 18:46:54 -05:00
|
|
|
if (e.keyCode === 13) {
|
2020-01-29 13:37:25 -06:00
|
|
|
this.searchWait = true;
|
|
|
|
search(this, this.searchQuery).finally(() => {
|
|
|
|
this.searchWait = false;
|
|
|
|
this.searchQuery = '';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async openAccountMenu(ev) {
|
|
|
|
const accounts = (await this.$root.api('users/show', { userIds: this.$store.state.device.accounts.map(x => x.id) })).filter(x => x.id !== this.$store.state.i.id);
|
|
|
|
|
|
|
|
const accountItems = accounts.map(account => ({
|
|
|
|
type: 'user',
|
|
|
|
user: account,
|
2020-02-14 10:40:38 -06:00
|
|
|
action: () => { this.switchAccount(account); }
|
2020-01-29 13:37:25 -06:00
|
|
|
}));
|
|
|
|
|
|
|
|
this.$root.menu({
|
|
|
|
items: [...[{
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('profile'),
|
|
|
|
to: `/@${ this.$store.state.i.username }`,
|
|
|
|
avatar: this.$store.state.i,
|
|
|
|
}, {
|
|
|
|
type: 'link',
|
2020-02-16 14:38:00 -06:00
|
|
|
text: this.$t('accountSettings'),
|
2020-01-29 13:37:25 -06:00
|
|
|
to: '/my/settings',
|
|
|
|
icon: faCog,
|
2020-02-14 10:39:14 -06:00
|
|
|
}, null, ...accountItems, {
|
2020-01-29 13:37:25 -06:00
|
|
|
icon: faPlus,
|
2020-02-14 10:33:09 -06:00
|
|
|
text: this.$t('addAcount'),
|
2020-02-14 10:39:14 -06:00
|
|
|
action: () => {
|
|
|
|
this.$root.menu({
|
|
|
|
items: [{
|
|
|
|
text: this.$t('existingAcount'),
|
|
|
|
action: () => { this.addAcount(); },
|
|
|
|
}, {
|
|
|
|
text: this.$t('createAccount'),
|
|
|
|
action: () => { this.createAccount(); },
|
|
|
|
}],
|
|
|
|
align: 'left',
|
|
|
|
fixed: true,
|
|
|
|
width: 240,
|
|
|
|
source: ev.currentTarget || ev.target,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}]],
|
2020-01-29 13:37:25 -06:00
|
|
|
align: 'left',
|
|
|
|
fixed: true,
|
|
|
|
width: 240,
|
|
|
|
source: ev.currentTarget || ev.target,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
oepnInstanceMenu(ev) {
|
|
|
|
this.$root.menu({
|
|
|
|
items: [{
|
|
|
|
type: 'link',
|
2020-02-16 11:21:27 -06:00
|
|
|
text: this.$t('dashboard'),
|
|
|
|
to: '/instance',
|
|
|
|
icon: faTachometerAlt,
|
|
|
|
}, null, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('settings'),
|
|
|
|
to: '/instance/settings',
|
|
|
|
icon: faCog,
|
2020-01-29 13:37:25 -06:00
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('customEmojis'),
|
|
|
|
to: '/instance/emojis',
|
|
|
|
icon: faLaugh,
|
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('users'),
|
|
|
|
to: '/instance/users',
|
|
|
|
icon: faUsers,
|
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('files'),
|
|
|
|
to: '/instance/files',
|
|
|
|
icon: faCloud,
|
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('jobQueue'),
|
|
|
|
to: '/instance/queue',
|
|
|
|
icon: faExchangeAlt,
|
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('federation'),
|
|
|
|
to: '/instance/federation',
|
|
|
|
icon: faGlobe,
|
2020-05-10 04:42:31 -05:00
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('relays'),
|
|
|
|
to: '/instance/relays',
|
|
|
|
icon: faProjectDiagram,
|
2020-01-29 13:37:25 -06:00
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('announcements'),
|
|
|
|
to: '/instance/announcements',
|
|
|
|
icon: faBroadcastTower,
|
|
|
|
}],
|
|
|
|
align: 'left',
|
|
|
|
fixed: true,
|
|
|
|
width: 200,
|
|
|
|
source: ev.currentTarget || ev.target,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
more(ev) {
|
2020-05-09 01:22:50 -05:00
|
|
|
const items = Object.keys(this.menuDef).filter(k => !this.menu.includes(k)).map(k => this.menuDef[k]).filter(def => def.show == null ? true : def.show).map(def => ({
|
2020-05-05 21:41:44 -05:00
|
|
|
type: def.to ? 'link' : 'button',
|
|
|
|
text: this.$t(def.title),
|
|
|
|
icon: def.icon,
|
|
|
|
to: def.to,
|
|
|
|
action: def.action,
|
2020-05-09 01:22:50 -05:00
|
|
|
indicate: def.indicated,
|
2020-05-05 21:41:44 -05:00
|
|
|
}));
|
2020-01-29 13:37:25 -06:00
|
|
|
this.$root.menu({
|
2020-05-05 21:41:44 -05:00
|
|
|
items: [...items, null, {
|
2020-02-07 04:15:08 -06:00
|
|
|
type: 'link',
|
|
|
|
text: this.$t('help'),
|
|
|
|
to: '/docs',
|
|
|
|
icon: faQuestionCircle,
|
|
|
|
}, {
|
2020-01-29 13:37:25 -06:00
|
|
|
type: 'link',
|
2020-02-12 11:48:52 -06:00
|
|
|
text: this.$t('aboutX', { x: instanceName || host }),
|
2020-01-29 13:37:25 -06:00
|
|
|
to: '/about',
|
|
|
|
icon: faInfoCircle,
|
2020-02-12 11:48:52 -06:00
|
|
|
}, {
|
|
|
|
type: 'link',
|
|
|
|
text: this.$t('aboutMisskey'),
|
|
|
|
to: '/about-misskey',
|
|
|
|
icon: faInfoCircle,
|
2020-01-29 13:37:25 -06:00
|
|
|
}],
|
|
|
|
align: 'left',
|
|
|
|
fixed: true,
|
|
|
|
width: 200,
|
|
|
|
source: ev.currentTarget || ev.target,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async addAcount() {
|
|
|
|
this.$root.new(await import('./components/signin-dialog.vue').then(m => m.default)).$once('login', res => {
|
|
|
|
this.$store.dispatch('addAcount', res);
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
|
|
|
iconOnly: true, autoClose: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-02-14 10:33:09 -06:00
|
|
|
async createAccount() {
|
|
|
|
this.$root.new(await import('./components/signup-dialog.vue').then(m => m.default)).$once('signup', res => {
|
|
|
|
this.$store.dispatch('addAcount', res);
|
|
|
|
this.switchAccountWithToken(res.i);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async switchAccount(account: any) {
|
|
|
|
const token = this.$store.state.device.accounts.find((x: any) => x.id === account.id).token;
|
|
|
|
this.switchAccountWithToken(token);
|
|
|
|
},
|
|
|
|
|
|
|
|
switchAccountWithToken(token: string) {
|
2020-02-14 10:40:38 -06:00
|
|
|
this.$root.dialog({
|
|
|
|
type: 'waiting',
|
|
|
|
iconOnly: true
|
|
|
|
});
|
2020-02-14 11:20:10 -06:00
|
|
|
|
2020-02-14 10:33:09 -06:00
|
|
|
this.$root.api('i', {}, token).then((i: any) => {
|
2020-01-29 13:37:25 -06:00
|
|
|
this.$store.dispatch('switchAccount', {
|
|
|
|
...i,
|
|
|
|
token: token
|
2020-02-09 16:23:43 -06:00
|
|
|
}).then(() => {
|
2020-06-07 00:01:40 -05:00
|
|
|
this.$nextTick(() => {
|
|
|
|
location.reload();
|
|
|
|
});
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-04-22 05:36:28 -05:00
|
|
|
async onNotification(notification) {
|
2020-05-23 23:53:31 -05:00
|
|
|
if (document.visibilityState === 'visible') {
|
2020-02-19 11:40:53 -06:00
|
|
|
this.$root.stream.send('readNotification', {
|
|
|
|
id: notification.id
|
|
|
|
});
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-04-22 05:36:28 -05:00
|
|
|
this.$root.new(await import('./components/toast.vue').then(m => m.default), {
|
2020-02-19 11:40:53 -06:00
|
|
|
notification
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-02-19 15:08:49 -06:00
|
|
|
this.$root.sound('notification');
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
widgetFunc(id) {
|
|
|
|
const w = this.$refs[id][0];
|
|
|
|
if (w.func) w.func();
|
|
|
|
},
|
|
|
|
|
|
|
|
onWidgetSort() {
|
|
|
|
this.saveHome();
|
|
|
|
},
|
|
|
|
|
2020-07-04 08:33:42 -05:00
|
|
|
async addWidget(place) {
|
2020-01-29 13:37:25 -06:00
|
|
|
const widgets = [
|
|
|
|
'memo',
|
|
|
|
'notifications',
|
|
|
|
'timeline',
|
|
|
|
'calendar',
|
|
|
|
'rss',
|
|
|
|
'trends',
|
2020-02-18 04:31:11 -06:00
|
|
|
'clock',
|
|
|
|
'activity',
|
2020-02-18 04:47:30 -06:00
|
|
|
'photos',
|
2020-01-29 13:37:25 -06:00
|
|
|
];
|
|
|
|
|
2020-07-04 08:33:42 -05:00
|
|
|
const { canceled, result: widget } = await this.$root.dialog({
|
|
|
|
type: null,
|
|
|
|
title: this.$t('chooseWidget'),
|
|
|
|
select: {
|
|
|
|
items: widgets.map(widget => ({
|
|
|
|
value: widget,
|
|
|
|
text: this.$t('_widgets.' + widget),
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
this.$store.commit('deviceUser/addWidget', {
|
|
|
|
name: widget,
|
|
|
|
id: uuid(),
|
|
|
|
place: place,
|
|
|
|
data: {}
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
removeWidget(widget) {
|
2020-02-09 16:23:43 -06:00
|
|
|
this.$store.commit('deviceUser/removeWidget', widget);
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
saveHome() {
|
2020-07-04 08:33:42 -05:00
|
|
|
this.$store.commit('deviceUser/setWidgets', [...this.widgets.left, ...this.widgets.right, ...this.widgets.mobile]);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-07 21:46:14 -06:00
|
|
|
.nav-enter-active,
|
|
|
|
.nav-leave-active {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(0);
|
|
|
|
transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
}
|
|
|
|
.nav-enter,
|
|
|
|
.nav-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(-240px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-back-enter-active,
|
|
|
|
.nav-back-leave-active {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
}
|
|
|
|
.nav-back-enter,
|
|
|
|
.nav-back-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
.mk-app {
|
|
|
|
$header-height: 60px;
|
|
|
|
$nav-width: 250px;
|
2020-03-22 00:45:33 -05:00
|
|
|
$nav-icon-only-width: 80px;
|
2020-07-04 06:38:39 -05:00
|
|
|
$main-width: 670px;
|
2020-01-29 13:37:25 -06:00
|
|
|
$ui-font-size: 1em;
|
2020-07-04 06:38:39 -05:00
|
|
|
$nav-icon-only-threshold: 1279px;
|
2020-03-22 00:45:33 -05:00
|
|
|
$nav-hide-threshold: 650px;
|
2020-07-04 08:43:17 -05:00
|
|
|
$header-sub-hide-threshold: 1090px;
|
2020-07-04 08:33:42 -05:00
|
|
|
$left-widgets-hide-threshold: 1600px;
|
|
|
|
$right-widgets-hide-threshold: 1090px;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-top: $header-height;
|
|
|
|
|
|
|
|
&, > .header > .body {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .header {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: $header-height;
|
|
|
|
width: calc(100% - #{$nav-width});
|
|
|
|
//background-color: var(--panel);
|
|
|
|
-webkit-backdrop-filter: blur(32px);
|
|
|
|
backdrop-filter: blur(32px);
|
|
|
|
background-color: var(--header);
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
|
|
|
|
@media (max-width: $nav-icon-only-threshold) {
|
|
|
|
width: calc(100% - #{$nav-icon-only-width});
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $nav-hide-threshold) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
position: relative;
|
|
|
|
line-height: $header-height;
|
|
|
|
height: $header-height;
|
|
|
|
max-width: $main-width;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .back {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: $header-height;
|
|
|
|
width: $header-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
height: $header-height;
|
|
|
|
|
|
|
|
> .default {
|
|
|
|
padding: 0 $header-height;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
$size: 32px;
|
|
|
|
display: inline-block;
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
vertical-align: bottom;
|
|
|
|
margin: (($header-height - $size) / 2) 8px (($header-height - $size) / 2) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: $ui-font-size;
|
|
|
|
margin: 0;
|
|
|
|
line-height: $header-height;
|
|
|
|
|
|
|
|
> [data-icon] {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .custom {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .sub {
|
|
|
|
$post-button-size: 42px;
|
|
|
|
$post-button-margin: (($header-height - $post-button-size) / 2);
|
2020-02-08 12:42:18 -06:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-01-29 13:37:25 -06:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 16px;
|
|
|
|
height: $header-height;
|
|
|
|
|
2020-07-04 08:43:17 -05:00
|
|
|
@media (max-width: $header-sub-hide-threshold) {
|
2020-01-29 13:37:25 -06:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-02-09 14:42:03 -06:00
|
|
|
> .edit {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
> .search {
|
2020-02-09 14:42:03 -06:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> input {
|
2020-02-14 11:20:10 -06:00
|
|
|
width: 220px;
|
2020-02-09 14:42:03 -06:00
|
|
|
box-sizing: border-box;
|
2020-02-11 11:56:42 -06:00
|
|
|
margin-right: 8px;
|
2020-02-09 14:42:03 -06:00
|
|
|
padding: 0 12px 0 42px;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 38px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 38px;
|
|
|
|
color: var(--fg);
|
|
|
|
background: var(--bg);
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> [data-icon] {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 16px;
|
|
|
|
height: 100%;
|
|
|
|
pointer-events: none;
|
|
|
|
font-size: 16px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
width: $post-button-size;
|
|
|
|
height: $post-button-size;
|
2020-02-08 12:42:18 -06:00
|
|
|
margin-left: $post-button-margin;
|
2020-01-29 13:37:25 -06:00
|
|
|
border-radius: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2020-02-14 11:54:42 -06:00
|
|
|
|
|
|
|
> .clock {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 21:46:14 -06:00
|
|
|
> .nav-back {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1001;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--modalBg);
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
> .nav {
|
|
|
|
$avatar-size: 32px;
|
|
|
|
$avatar-margin: ($header-height - $avatar-size) / 2;
|
|
|
|
|
|
|
|
flex: 0 0 $nav-width;
|
|
|
|
width: $nav-width;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
@media (max-width: $nav-icon-only-threshold) {
|
|
|
|
flex: 0 0 $nav-icon-only-width;
|
|
|
|
width: $nav-icon-only-width;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $nav-hide-threshold) {
|
2020-02-07 21:46:14 -06:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1001;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $nav-hide-threshold + 1px) {
|
|
|
|
display: block !important;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1001;
|
|
|
|
width: $nav-width;
|
|
|
|
height: 100vh;
|
|
|
|
box-sizing: border-box;
|
2020-02-07 21:13:15 -06:00
|
|
|
overflow: auto;
|
2020-01-29 13:37:25 -06:00
|
|
|
background: var(--navBg);
|
|
|
|
border-right: solid 1px var(--divider);
|
|
|
|
|
2020-02-07 21:13:15 -06:00
|
|
|
> .divider {
|
|
|
|
margin: 16px 0;
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
2020-02-07 21:46:14 -06:00
|
|
|
@media (max-width: $nav-icon-only-threshold) and (min-width: $nav-hide-threshold + 1px) {
|
2020-01-29 13:37:25 -06:00
|
|
|
width: $nav-icon-only-width;
|
2020-02-07 21:13:15 -06:00
|
|
|
|
|
|
|
> .divider {
|
2020-02-10 05:32:57 -06:00
|
|
|
margin: 8px auto;
|
|
|
|
width: calc(100% - 32px);
|
2020-02-07 21:13:15 -06:00
|
|
|
}
|
2020-03-22 00:57:21 -05:00
|
|
|
|
|
|
|
> .item {
|
|
|
|
&:first-child {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
padding-left: 32px;
|
|
|
|
font-size: $ui-font-size;
|
|
|
|
line-height: 3.2rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: var(--navFg);
|
|
|
|
|
|
|
|
> [data-icon] {
|
|
|
|
width: ($header-height - ($avatar-margin * 2));
|
|
|
|
}
|
2020-02-03 06:05:13 -06:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
> [data-icon],
|
|
|
|
> .avatar {
|
|
|
|
margin-right: $avatar-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: $avatar-size;
|
|
|
|
height: $avatar-size;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
> i {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 20px;
|
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
2020-02-16 11:41:03 -06:00
|
|
|
color: var(--navHoverFg);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
|
|
|
|
2020-03-25 08:57:13 -05:00
|
|
|
&:first-child, &:last-child {
|
2020-03-22 00:57:21 -05:00
|
|
|
position: sticky;
|
|
|
|
z-index: 1;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 8px;
|
2020-03-25 08:57:13 -05:00
|
|
|
background: var(--wboyroyc);
|
|
|
|
-webkit-backdrop-filter: blur(8px);
|
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
top: 0;
|
2020-03-22 00:57:21 -05:00
|
|
|
margin-bottom: 16px;
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
2020-02-16 12:10:51 -06:00
|
|
|
&:last-child {
|
|
|
|
bottom: 0;
|
2020-03-22 00:57:21 -05:00
|
|
|
margin-top: 16px;
|
2020-02-16 12:10:51 -06:00
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
2020-02-07 21:46:14 -06:00
|
|
|
@media (max-width: $nav-icon-only-threshold) and (min-width: $nav-hide-threshold + 1px) {
|
2020-01-29 13:37:25 -06:00
|
|
|
padding-left: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: $ui-font-size * 1.2;
|
2020-01-29 20:12:58 -06:00
|
|
|
line-height: 3.7rem;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
> [data-icon],
|
|
|
|
> .avatar {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> i {
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 21:46:14 -06:00
|
|
|
|
|
|
|
@media (max-width: $nav-hide-threshold) {
|
|
|
|
> .index,
|
|
|
|
> .notifications {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .contents {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 auto;
|
|
|
|
min-width: 0;
|
|
|
|
|
2020-02-14 17:29:59 -06:00
|
|
|
&.wallpaper {
|
|
|
|
background: var(--wallpaperOverlay);
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
> main {
|
|
|
|
width: $main-width;
|
2020-07-04 08:43:17 -05:00
|
|
|
min-width: 0;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
> .content {
|
2020-03-20 08:37:44 -05:00
|
|
|
> * {
|
2020-06-27 06:54:56 -05:00
|
|
|
min-height: calc(100vh - #{$header-height});
|
|
|
|
box-sizing: border-box;
|
2020-07-04 06:38:39 -05:00
|
|
|
padding: var(--margin);
|
2020-06-27 06:54:56 -05:00
|
|
|
|
2020-07-04 06:38:39 -05:00
|
|
|
&.full {
|
|
|
|
padding: 0 var(--margin);
|
2020-03-20 08:37:44 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-03-28 20:34:46 -05:00
|
|
|
&.naked {
|
|
|
|
background: var(--bg);
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .powerd-by {
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
margin: 32px 0;
|
|
|
|
visibility: hidden;
|
|
|
|
|
|
|
|
&.visible {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.visible) {
|
|
|
|
@media (min-width: 850px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> small {
|
|
|
|
display: block;
|
|
|
|
margin-top: 8px;
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .widgets {
|
2020-07-04 07:47:54 -05:00
|
|
|
position: sticky;
|
|
|
|
top: $header-height;
|
|
|
|
height: calc(100vh - #{$header-height});
|
|
|
|
padding: 0 var(--margin);
|
|
|
|
overflow: auto;
|
|
|
|
box-shadow: 1px 0 0 0 var(--divider), -1px 0 0 0 var(--divider);
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 08:33:42 -05:00
|
|
|
&:first-of-type {
|
|
|
|
order: -1;
|
|
|
|
|
|
|
|
@media (max-width: $left-widgets-hide-threshold) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $right-widgets-hide-threshold) {
|
2020-01-29 13:37:25 -06:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> * {
|
|
|
|
margin: var(--margin) 0;
|
|
|
|
width: 300px;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> .add {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
.customize-container {
|
|
|
|
margin: 8px 0;
|
|
|
|
background: #fff;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> header {
|
|
|
|
position: relative;
|
|
|
|
line-height: 32px;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> .handle {
|
|
|
|
padding: 0 8px;
|
|
|
|
cursor: move;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> .remove {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 0 8px;
|
|
|
|
line-height: 32px;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
2020-07-04 07:47:54 -05:00
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> div {
|
|
|
|
padding: 8px;
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-07-04 07:47:54 -05:00
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
bottom: 32px;
|
|
|
|
right: 32px;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
border-radius: 100%;
|
|
|
|
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
|
|
|
|
font-size: 22px;
|
|
|
|
|
|
|
|
@media (min-width: ($nav-hide-threshold + 1px)) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-07-04 08:43:17 -05:00
|
|
|
@media (min-width: ($header-sub-hide-threshold + 1px)) {
|
2020-01-29 13:37:25 -06:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .buttons {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1000;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 0 32px 32px 32px;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background: linear-gradient(0deg, var(--bg), var(--bonzsgfz));
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 0 16px 16px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: ($nav-hide-threshold + 1px)) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
position: relative;
|
|
|
|
padding: 0;
|
|
|
|
margin: auto;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
border-radius: 100%;
|
|
|
|
box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.post) {
|
|
|
|
background: var(--panel);
|
|
|
|
color: var(--fg);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--pcncwizz);
|
|
|
|
}
|
|
|
|
|
|
|
|
> i {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2020-02-16 16:14:03 -06:00
|
|
|
color: var(--indicator);
|
2020-01-29 13:37:25 -06:00
|
|
|
font-size: 16px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|