LiveAtlas/src/components/Sidebar.vue
James Lyne 1e4c8a080f Revert "Drop :active styles"
This reverts commit 146aadb9
2021-08-31 19:56:42 +01:00

319 lines
8.1 KiB
Vue

<!--
- Copyright 2021 James Lyne
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-->
<template>
<section class="sidebar" role="none" ref="sidebar">
<header class="sidebar__buttons">
<button v-if="mapCount > 1 || serverCount > 1" :class="{'button--maps': true}" @click="toggleMaps"
:title="messageWorlds" :aria-label="messageWorlds" :aria-expanded="mapsVisible"
@keydown="handleMapsKeydown">
<SvgIcon name="maps"></SvgIcon>
</button>
<button v-if="playerMakersEnabled" :class="{'button--players': true}" @click="togglePlayers"
:title="messagePlayers" :aria-label="messagePlayers" :aria-expanded="playersVisible"
@keydown="handlePlayersKeydown">
<SvgIcon name="players"></SvgIcon>
</button>
</header>
<div class="sidebar__content" @keydown="handleSidebarKeydown">
<ServerList v-if="serverCount > 1" v-show="mapsVisible"></ServerList>
<WorldList v-if="mapCount > 1" v-show="mapsVisible"></WorldList>
<PlayerList id="players" v-if="playerMakersEnabled && previouslyVisible.has('players')"
v-show="playersVisible"></PlayerList>
<FollowTarget v-if="following" v-show="followVisible" :target="following"></FollowTarget>
</div>
</section>
</template>
<script lang="ts">
import {computed, defineComponent} from "@vue/runtime-core";
import PlayerList from './sidebar/PlayerList.vue';
import WorldList from './sidebar/WorldList.vue';
import ServerList from "@/components/sidebar/ServerList.vue";
import FollowTarget from './sidebar/FollowTarget.vue';
import {useStore} from "@/store";
import SvgIcon from "@/components/SvgIcon.vue";
import {MutationTypes} from "@/store/mutation-types";
import "@/assets/icons/players.svg";
import "@/assets/icons/maps.svg";
import {nextTick, ref, watch} from "vue";
import {handleKeyboardEvent} from "@/util/events";
import {focus} from "@/util";
export default defineComponent({
components: {
ServerList,
SvgIcon,
PlayerList,
FollowTarget,
WorldList,
},
setup() {
const store = useStore(),
sidebar = ref<HTMLElement | null>(null),
currentlyVisible = computed(() => store.state.ui.visibleElements),
previouslyVisible = computed(() => store.state.ui.previouslyVisibleElements),
smallScreen = computed(() => store.state.ui.smallScreen),
mapCount = computed(() => store.state.maps.size),
serverCount = computed(() => store.state.servers.size),
following = computed(() => store.state.followTarget),
messageWorlds = computed(() => store.state.messages.worldsHeading),
messagePlayers = computed(() => store.getters.playersHeading),
playerMakersEnabled = computed(() => !!store.state.components.playerMarkers),
playersVisible = computed(() => currentlyVisible.value.has('players')),
mapsVisible = computed(() => currentlyVisible.value.has('maps')),
followVisible = computed(() => {
//Show following alongside playerlist on small screens
return (!smallScreen.value && following.value)
|| (smallScreen.value && playersVisible.value);
});
//Arrow key section navigation
const handleSidebarKeydown = (e: KeyboardEvent) => {
if(!e.target || !(e.target as HTMLElement).matches('.section__heading button')) {
return;
}
const sectionHeadings: HTMLElement[] = Array.from(sidebar.value!.querySelectorAll('.section__heading button'));
handleKeyboardEvent(e, sectionHeadings);
};
//Show sectinos on ArrowDown from button
const handleMapsKeydown = (e: KeyboardEvent) => {
if(e.key === 'ArrowDown') {
store.commit(MutationTypes.SET_UI_ELEMENT_VISIBILITY, {element: 'maps', state: true});
}
};
const handlePlayersKeydown = (e: KeyboardEvent) => {
if(e.key === 'ArrowDown') {
store.commit(MutationTypes.SET_UI_ELEMENT_VISIBILITY, {element: 'players', state: true});
}
};
const togglePlayers = () => store.commit(MutationTypes.TOGGLE_UI_ELEMENT_VISIBILITY, 'players');
const toggleMaps = () => store.commit(MutationTypes.TOGGLE_UI_ELEMENT_VISIBILITY, 'maps');
//Move focus when sidebar sections become visible
const focusMaps = () => focus('.section__heading button');
const focusPlayers = () => focus('#players-heading');
watch(playersVisible, newValue => newValue && nextTick(() => focusPlayers()));
watch(mapsVisible, newValue => newValue && nextTick(() => focusMaps()));
return {
sidebar,
mapCount,
serverCount,
following,
messageWorlds,
messagePlayers,
previouslyVisible,
playersVisible,
mapsVisible,
followVisible,
playerMakersEnabled,
handleSidebarKeydown,
handleMapsKeydown,
handlePlayersKeydown,
togglePlayers,
toggleMaps
}
},
});
</script>
<style lang="scss">
@import '../scss/placeholders';
.sidebar {
position: fixed;
z-index: 120;
top: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
padding: var(--ui-element-spacing);
font-size: 1.5rem;
will-change: transform;
pointer-events: none;
ul, ol, li {
padding: 0;
list-style: none;
margin: 0;
}
.sidebar__buttons {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
margin-bottom: var(--ui-element-spacing);
pointer-events: auto;
align-self: flex-end;
button {
width: var(--ui-button-size);
height: var(--ui-button-size);
box-shadow: var(--box-shadow);
& + button {
margin-left: var(--ui-element-spacing);
}
}
@media (max-width: 480px) {
flex-direction: column;
align-items: flex-end;
margin: 0;
position: absolute;
right: var(--ui-element-spacing);
top: var(--ui-element-spacing);
button + button {
margin-left: 0;
margin-top: var(--ui-element-spacing);
}
}
}
.sidebar__content {
position: relative;
display: flex;
flex-direction: column;
flex-shrink: 1;
min-height: 0;
overflow: auto;
pointer-events: auto;
margin-right: -0.5rem;
padding: 0.2rem 0.5rem 0 0.2rem;
width: 25rem;
align-items: flex-end;
overscroll-behavior: contain;
&:not(:hover):not(:focus-within) {
scrollbar-color: var(--background-base) transparent;
}
&:not(:hover):not(:focus-within)::-webkit-scrollbar-thumb {
background-color: var(--background-base);
}
}
.sidebar__section {
@extend %panel;
margin-bottom: var(--ui-element-spacing);
box-sizing: border-box;
width: 100%;
max-width: 25rem;
flex: 0 0 auto;
.section__heading {
cursor: pointer;
user-select: none;
text-align: left;
align-items: center;
margin: 0;
button {
display: flex;
font-size: 2rem;
padding: 1.5rem 1.5rem 1rem;
margin: -1.5rem -1.5rem 0;
background-color: transparent;
font-weight: 400;
color: inherit;
width: calc(100% + 3rem);
align-items: center;
text-shadow: var(--text-shadow);
.svg-icon {
margin-left: auto;
width: 1.5rem;
height: 1.5rem;
}
}
&:hover, &:focus-visible, &.focus-visible, &:active {
background-color: transparent;
}
}
.section__content {
padding: 0 0.5rem;
margin: 0 -.5rem 1rem;
min-width: 0;
&:last-child {
margin-bottom: 0;
}
}
.section__skeleton {
font-style: italic;
color: var(--text-disabled);
text-align: center;
align-self: center;
margin-top: 1rem;
}
&.section--collapsed {
.section__heading button {
padding-bottom: 1.5rem;
margin-bottom: -1.5rem;
}
.section__content {
display: none;
}
}
@media (max-width: 320px) {
box-sizing: border-box;
width: 100%;
}
}
@media (max-width: 480px) {
padding-right: 7rem;
padding-top: 0.8rem;
}
@media (max-width: 400px) {
padding-right: 6.5rem;
padding-top: 0.3rem;
padding-bottom: 0.3rem;
}
@media print {
display: none;
}
}
</style>