2019-04-19 16:08:27 +00:00
|
|
|
<template>
|
|
|
|
<div class="app">
|
|
|
|
<b-navbar>
|
|
|
|
<b-navbar-brand :to="{name: 'home'}">PluralKit</b-navbar-brand>
|
|
|
|
<b-navbar-toggle target="nav-collapse"></b-navbar-toggle>
|
|
|
|
<b-collapse id="nav-collapse" is-nav>
|
|
|
|
<b-navbar-nav class="ml-auto">
|
|
|
|
<b-nav-item v-if="me" :to="{name: 'system', params: {id: me.id}}">My system</b-nav-item>
|
|
|
|
<b-nav-item variant="primary" :href="authUri" v-if="!me">Log in</b-nav-item>
|
|
|
|
<b-nav-item v-on:click="logout" v-if="me">Log out</b-nav-item>
|
|
|
|
</b-navbar-nav>
|
|
|
|
</b-collapse>
|
|
|
|
</b-navbar>
|
|
|
|
|
|
|
|
<router-view :me="me"></router-view>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-04-19 18:41:18 +00:00
|
|
|
import BCollapse from 'bootstrap-vue/es/components/collapse/collapse';
|
|
|
|
import BNav from 'bootstrap-vue/es/components/nav/nav';
|
|
|
|
import BNavItem from 'bootstrap-vue/es/components/nav/nav-item';
|
|
|
|
import BNavbar from 'bootstrap-vue/es/components/navbar/navbar';
|
|
|
|
import BNavbarBrand from 'bootstrap-vue/es/components/navbar/navbar-brand';
|
|
|
|
import BNavbarNav from 'bootstrap-vue/es/components/navbar/navbar-nav';
|
|
|
|
import BNavbarToggle from 'bootstrap-vue/es/components/navbar/navbar-toggle';
|
|
|
|
|
2019-04-19 16:08:27 +00:00
|
|
|
import API from "./API";
|
|
|
|
import { AUTH_URI } from "./API";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
me: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
API.on("update", this.apply);
|
|
|
|
API.init();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
apply(system) {
|
|
|
|
this.me = system;
|
|
|
|
},
|
|
|
|
logout() {
|
|
|
|
API.logout();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
authUri() {
|
|
|
|
return AUTH_URI;
|
|
|
|
}
|
2019-04-19 18:41:18 +00:00
|
|
|
},
|
|
|
|
components: {BCollapse, BNav, BNavItem, BNavbar, BNavbarBrand, BNavbarNav, BNavbarToggle}
|
2019-04-19 16:08:27 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
$font-family-sans-serif: "PT Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
|
|
$container-max-widths: (
|
|
|
|
sm: 540px,
|
|
|
|
md: 720px,
|
|
|
|
lg: 959px,
|
|
|
|
xl: 960px,
|
|
|
|
) !default;
|
|
|
|
|
2019-04-19 18:41:18 +00:00
|
|
|
|
|
|
|
@import '~bootstrap/scss/_functions';
|
|
|
|
@import '~bootstrap/scss/_variables';
|
|
|
|
@import '~bootstrap/scss/_mixins';
|
|
|
|
|
|
|
|
@import '~bootstrap/scss/_buttons';
|
|
|
|
@import '~bootstrap/scss/_code';
|
|
|
|
@import '~bootstrap/scss/_forms';
|
|
|
|
@import '~bootstrap/scss/_grid';
|
|
|
|
@import '~bootstrap/scss/_nav';
|
|
|
|
@import '~bootstrap/scss/_navbar';
|
|
|
|
@import '~bootstrap/scss/_reboot';
|
|
|
|
@import '~bootstrap/scss/_type';
|
|
|
|
@import '~bootstrap/scss/_utilities';
|
|
|
|
|
2019-04-19 16:08:27 +00:00
|
|
|
@import '~bootstrap-vue/src/index.scss';
|
|
|
|
</style>
|
|
|
|
|