LiveAtlas/src/components/sidebar/FollowTarget.vue

105 lines
2.4 KiB
Vue
Raw Normal View History

2020-12-16 16:54:41 +00:00
<!--
- Copyright 2020 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.
-->
2020-12-01 23:20:38 +00:00
<template>
<section class="sidebar__section following">
<h2>Following</h2>
<div :class="{'following__target': true, 'following__target--hidden': target.hidden}">
2020-12-14 00:51:51 +00:00
<img width="32" height="32" class="target__icon" :src="playerImage" alt="" />
<span class="target__info">
<span class="target__name" v-html="target.name"></span>
<span class="target__status" v-show="target.hidden">Currently hidden</span>
</span>
2020-12-14 00:51:51 +00:00
<button class="target__unfollow" type="button" :title="`Stop following this player`"
2020-12-01 23:20:38 +00:00
@click.prevent="unfollow"
@keydown="onKeydown">Unfollow</button>
</div>
</section>
</template>
<script lang="ts">
import {defineComponent} from 'vue';
import {DynmapPlayer} from "@/dynmap";
import {useStore} from "@/store";
import {MutationTypes} from "@/store/mutation-types";
2020-12-14 00:51:51 +00:00
const playerImage = require('@/assets/images/player_face.png');
2020-12-01 23:20:38 +00:00
export default defineComponent({
name: 'FollowTarget',
props: {
target: {
type: Object as () => DynmapPlayer,
required: true
}
},
2020-12-14 00:51:51 +00:00
data() {
return {
playerImage,
}
},
2020-12-01 23:20:38 +00:00
methods: {
unfollow() {
2020-12-17 00:13:28 +00:00
useStore().commit(MutationTypes.CLEAR_FOLLOW_TARGET, undefined);
2020-12-01 23:20:38 +00:00
},
onKeydown(e: KeyboardEvent) {
if(e.key !== ' ') {
return;
}
this.unfollow();
}
}
});
</script>
<style lang="scss" scoped>
.sidebar__section.following {
margin-top: auto;
min-height: 0;
flex: 0 0 auto;
.following__target {
display: flex;
align-items: center;
.target__unfollow {
position: absolute;
top: 2rem;
right: 1.5rem;
}
.target__info {
2020-12-01 23:20:38 +00:00
margin-left: 2rem;
display: flex;
flex-direction: column;
justify-content: flex-start;
.target__status {
font-size: 1.3rem;
}
}
&.following__target--hidden {
.target__icon {
filter: grayscale(1);
opacity: 0.5;
}
2020-12-01 23:20:38 +00:00
}
}
}
</style>