yandere_fe/src/App.vue

142 lines
3.6 KiB
Vue
Raw Normal View History

2016-11-07 09:03:36 -08:00
<template>
2019-07-05 00:17:44 -07:00
<div
id="app"
:style="bgAppStyle"
>
<div
2019-07-19 09:36:07 -07:00
id="app_bg_wrapper"
2019-07-05 00:17:44 -07:00
class="app-bg-wrapper"
:style="bgStyle"
/>
<MobileNav v-if="isMobileLayout" />
2019-07-05 00:17:44 -07:00
<nav
v-else
id="nav"
class="nav-bar container"
@click="scrollToTop()"
>
<div class="inner-nav">
2019-07-05 00:17:44 -07:00
<div
class="logo"
:style="logoBgStyle"
2019-07-05 00:17:44 -07:00
>
<div
class="mask"
:style="logoMaskStyle"
/>
<img
:src="logo"
:style="logoStyle"
>
</div>
2019-07-05 00:17:44 -07:00
<div class="item">
<router-link
v-if="!hideSitename"
2019-07-05 00:17:44 -07:00
class="site-name"
:to="{ name: 'root' }"
active-class="home"
>
{{ sitename }}
</router-link>
2017-01-16 09:57:03 -08:00
</div>
2019-07-05 00:17:44 -07:00
<div class="item right">
2019-07-15 09:42:27 -07:00
<search-bar
2019-12-12 11:46:07 -08:00
v-if="currentUser || !privateMode"
2020-10-20 12:54:43 -07:00
class="mobile-hidden"
2019-07-15 09:42:27 -07:00
@toggled="onSearchBarToggled"
2019-12-12 11:37:32 -08:00
@click.stop.native
2019-07-05 00:17:44 -07:00
/>
2020-05-03 07:36:12 -07:00
<a
href="#"
2020-10-20 12:54:43 -07:00
class="mobile-hidden nav-icon"
2020-05-03 07:36:12 -07:00
@click.stop="openSettingsModal"
2019-07-05 00:17:44 -07:00
>
2020-10-20 12:54:43 -07:00
<FAIcon
fixed-width
class="fa-scale-110 fa-old-padding"
2020-10-20 14:31:16 -07:00
icon="cog"
2019-07-05 00:17:44 -07:00
:title="$t('nav.preferences')"
/>
2020-05-03 07:36:12 -07:00
</a>
2019-09-14 10:50:03 -07:00
<a
v-if="currentUser && currentUser.role === 'admin'"
2019-10-02 10:28:16 -07:00
href="/pleroma/admin/#/login-pleroma"
2020-10-20 12:54:43 -07:00
class="mobile-hidden nav-icon"
2019-09-16 05:03:10 -07:00
target="_blank"
2020-10-20 12:54:43 -07:00
><FAIcon
2020-10-20 14:31:16 -07:00
fixed-width
class="fa-scale-110 fa-old-padding"
2020-10-20 14:31:16 -07:00
icon="tachometer-alt"
2019-09-26 18:29:51 -07:00
:title="$t('nav.administration')"
2019-09-14 10:50:03 -07:00
/></a>
2019-07-05 00:17:44 -07:00
<a
v-if="currentUser"
href="#"
2020-10-20 12:54:43 -07:00
class="mobile-hidden nav-icon"
2019-07-05 00:17:44 -07:00
@click.prevent="logout"
2020-10-20 12:54:43 -07:00
><FAIcon
2020-10-20 14:31:16 -07:00
fixed-width
class="fa-scale-110 fa-old-padding"
2020-10-20 14:31:16 -07:00
icon="sign-out-alt"
2019-07-05 00:17:44 -07:00
:title="$t('login.logout')"
/></a>
2017-02-16 13:25:41 -08:00
</div>
2016-11-07 09:03:36 -08:00
</div>
</nav>
2020-05-07 06:10:53 -07:00
<div class="app-bg-wrapper app-container-wrapper" />
2019-07-05 00:17:44 -07:00
<div
id="content"
class="container underlay"
2019-07-05 00:17:44 -07:00
>
<div
class="sidebar-flexer mobile-hidden"
:style="sidebarAlign"
>
<div class="sidebar-bounds">
<div class="sidebar-scroller">
<div class="sidebar">
2019-07-05 00:17:44 -07:00
<user-panel />
<div v-if="!isMobileLayout">
2019-07-05 00:17:44 -07:00
<nav-panel />
<instance-specific-panel v-if="showInstanceSpecificPanel" />
<features-panel v-if="!currentUser && showFeaturesPanel" />
<who-to-follow-panel v-if="currentUser && suggestionsEnabled" />
<notifications v-if="currentUser" />
</div>
</div>
</div>
</div>
2016-12-02 05:33:03 -08:00
</div>
<div class="main">
2019-07-05 00:17:44 -07:00
<div
v-if="!currentUser"
class="login-hint panel panel-default"
>
<router-link
:to="{ name: 'login' }"
class="panel-body"
>
2019-02-06 08:53:51 -08:00
{{ $t("login.hint") }}
</router-link>
2019-02-06 02:01:32 -08:00
</div>
<router-view />
2016-12-02 05:33:03 -08:00
</div>
2019-07-05 00:17:44 -07:00
<media-modal />
2016-11-07 09:03:36 -08:00
</div>
2019-07-05 00:17:44 -07:00
<chat-panel
v-if="currentUser && chat"
:floating="true"
class="floating-chat mobile-hidden"
/>
2019-09-19 10:59:34 -07:00
<MobilePostStatusButton />
2019-03-19 01:53:11 -07:00
<UserReportingModal />
<PostStatusModal />
2020-05-03 07:36:12 -07:00
<SettingsModal />
<portal-target name="modal" />
<GlobalNoticeList />
2016-11-07 09:03:36 -08:00
</div>
</template>
2016-10-26 07:46:32 -07:00
2016-10-26 10:03:55 -07:00
<script src="./App.js"></script>
<style lang="scss" src="./App.scss"></style>