Move sidebar to its own component.
This commit is contained in:
parent
3f7889e534
commit
e71360ad39
@ -1,63 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="viewport" role="tablist">
|
<div
|
||||||
<aside id="sidebar">
|
id="viewport"
|
||||||
<div class="scrollable-area">
|
role="tablist">
|
||||||
<div class="logo-container">
|
<Sidebar
|
||||||
<img
|
:networks="networks"
|
||||||
:src="`img/logo-${isPublic() ? 'horizontal-' : ''}transparent-bg.svg`"
|
:active-channel="activeChannel" />
|
||||||
class="logo"
|
|
||||||
alt="The Lounge"
|
|
||||||
/>
|
|
||||||
<img
|
|
||||||
:src="
|
|
||||||
`img/logo-${isPublic() ? 'horizontal-' : ''}transparent-bg-inverted.svg`
|
|
||||||
"
|
|
||||||
class="logo-inverted"
|
|
||||||
alt="The Lounge"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<NetworkList :networks="networks" :active-channel="activeChannel" />
|
|
||||||
</div>
|
|
||||||
<footer id="footer">
|
|
||||||
<span
|
|
||||||
class="tooltipped tooltipped-n tooltipped-no-touch"
|
|
||||||
aria-label="Sign in"><button
|
|
||||||
class="icon sign-in"
|
|
||||||
data-target="SignIn"
|
|
||||||
aria-label="Sign in"
|
|
||||||
role="tab"
|
|
||||||
aria-controls="sign-in"
|
|
||||||
aria-selected="false" /></span>
|
|
||||||
<span
|
|
||||||
class="tooltipped tooltipped-n tooltipped-no-touch"
|
|
||||||
aria-label="Connect to network"><button
|
|
||||||
class="icon connect"
|
|
||||||
data-target="Connect"
|
|
||||||
aria-label="Connect to network"
|
|
||||||
role="tab"
|
|
||||||
aria-controls="connect"
|
|
||||||
aria-selected="false" /></span>
|
|
||||||
<span
|
|
||||||
class="tooltipped tooltipped-n tooltipped-no-touch"
|
|
||||||
aria-label="Settings"><button
|
|
||||||
class="icon settings"
|
|
||||||
data-target="Settings"
|
|
||||||
aria-label="Settings"
|
|
||||||
role="tab"
|
|
||||||
aria-controls="settings"
|
|
||||||
aria-selected="false" /></span>
|
|
||||||
<span
|
|
||||||
class="tooltipped tooltipped-n tooltipped-no-touch"
|
|
||||||
aria-label="Help"><button
|
|
||||||
class="icon help"
|
|
||||||
data-target="Help"
|
|
||||||
aria-label="Help"
|
|
||||||
role="tab"
|
|
||||||
aria-controls="help"
|
|
||||||
aria-selected="false" /></span>
|
|
||||||
</footer>
|
|
||||||
</aside>
|
|
||||||
<div id="sidebar-overlay" />
|
|
||||||
<article id="windows">
|
<article id="windows">
|
||||||
<Chat
|
<Chat
|
||||||
v-if="activeChannel"
|
v-if="activeChannel"
|
||||||
@ -73,6 +20,7 @@
|
|||||||
<script>
|
<script>
|
||||||
const throttle = require("lodash/throttle");
|
const throttle = require("lodash/throttle");
|
||||||
|
|
||||||
|
import Sidebar from "./Sidebar.vue";
|
||||||
import NetworkList from "./NetworkList.vue";
|
import NetworkList from "./NetworkList.vue";
|
||||||
import Chat from "./Chat.vue";
|
import Chat from "./Chat.vue";
|
||||||
import SignIn from "./Windows/SignIn.vue";
|
import SignIn from "./Windows/SignIn.vue";
|
||||||
@ -83,6 +31,7 @@ import Changelog from "./Windows/Changelog.vue";
|
|||||||
export default {
|
export default {
|
||||||
name: "App",
|
name: "App",
|
||||||
components: {
|
components: {
|
||||||
|
Sidebar,
|
||||||
NetworkList,
|
NetworkList,
|
||||||
Chat,
|
Chat,
|
||||||
SignIn,
|
SignIn,
|
||||||
|
78
client/components/Sidebar.vue
Normal file
78
client/components/Sidebar.vue
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<aside id="sidebar">
|
||||||
|
<div class="scrollable-area">
|
||||||
|
<div class="logo-container">
|
||||||
|
<img
|
||||||
|
:src="`img/logo-${isPublic() ? 'horizontal-' : ''}transparent-bg.svg`"
|
||||||
|
class="logo"
|
||||||
|
alt="The Lounge">
|
||||||
|
<img
|
||||||
|
:src="`img/logo-${isPublic() ? 'horizontal-' : ''}transparent-bg-inverted.svg`"
|
||||||
|
class="logo-inverted"
|
||||||
|
alt="The Lounge">
|
||||||
|
</div>
|
||||||
|
<NetworkList
|
||||||
|
:networks="networks"
|
||||||
|
:active-channel="activeChannel" />
|
||||||
|
</div>
|
||||||
|
<footer id="footer">
|
||||||
|
<span
|
||||||
|
class="tooltipped tooltipped-n tooltipped-no-touch"
|
||||||
|
aria-label="Sign in"><button
|
||||||
|
class="icon sign-in"
|
||||||
|
data-target="SignIn"
|
||||||
|
aria-label="Sign in"
|
||||||
|
role="tab"
|
||||||
|
aria-controls="sign-in"
|
||||||
|
aria-selected="false" /></span>
|
||||||
|
<span
|
||||||
|
class="tooltipped tooltipped-n tooltipped-no-touch"
|
||||||
|
aria-label="Connect to network"><button
|
||||||
|
class="icon connect"
|
||||||
|
data-target="Connect"
|
||||||
|
aria-label="Connect to network"
|
||||||
|
role="tab"
|
||||||
|
aria-controls="connect"
|
||||||
|
aria-selected="false" /></span>
|
||||||
|
<span
|
||||||
|
class="tooltipped tooltipped-n tooltipped-no-touch"
|
||||||
|
aria-label="Settings"><button
|
||||||
|
class="icon settings"
|
||||||
|
data-target="Settings"
|
||||||
|
aria-label="Settings"
|
||||||
|
role="tab"
|
||||||
|
aria-controls="settings"
|
||||||
|
aria-selected="false" /></span>
|
||||||
|
<span
|
||||||
|
class="tooltipped tooltipped-n tooltipped-no-touch"
|
||||||
|
aria-label="Help"><button
|
||||||
|
class="icon help"
|
||||||
|
data-target="Help"
|
||||||
|
aria-label="Help"
|
||||||
|
role="tab"
|
||||||
|
aria-controls="help"
|
||||||
|
aria-selected="false" /></span>
|
||||||
|
</footer>
|
||||||
|
</aside>
|
||||||
|
<div id="sidebar-overlay" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import NetworkList from "./NetworkList.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "Sidebar",
|
||||||
|
components: {
|
||||||
|
NetworkList,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
activeChannel: Object,
|
||||||
|
networks: Array,
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
isPublic: () => document.body.classList.contains("public"),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user