LiveAtlas/src/components/sidebar/PlayerListItem.vue

159 lines
3.8 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>
<li :class="{'player': true, 'player--hidden' : !!player.hidden, 'player--other-world': otherWorld}">
<img width="16" height="16" class="player__icon" :src="image" alt="" />
<button class="player__name" type="button" :title="title"
:disbled="player.hidden"
2020-12-01 23:20:38 +00:00
@click.prevent="pan"
@keydown="onKeydown"
@dblclick.prevent="follow" v-html="player.name"></button>
2020-12-01 23:20:38 +00:00
</li>
</template>
<script lang="ts">
2020-12-23 03:07:44 +00:00
import {defineComponent, computed, ref, onMounted} from 'vue';
2020-12-01 23:20:38 +00:00
import {DynmapPlayer} from "@/dynmap";
import {useStore} from "@/store";
import {MutationTypes} from "@/store/mutation-types";
2021-01-26 20:37:29 +00:00
import {getMinecraftHead} from '@/util';
2021-05-15 19:25:03 +00:00
import defaultImage from '@/assets/images/player_face.png';
2020-12-13 13:23:32 +00:00
2020-12-01 23:20:38 +00:00
export default defineComponent({
name: 'PlayerListItem',
props: {
player: {
type: Object as () => DynmapPlayer,
required: true
}
},
setup(props) {
const store = useStore(),
otherWorld = computed(() => {
return store.state.configuration.grayHiddenPlayers
&& (!store.state.currentWorld || store.state.currentWorld.name !== props.player.location.world);
}),
title = computed(() => {
if(props.player.hidden) {
return 'This player is currently hidden from the map\nDouble-click to follow player when they become visible';
} else if(otherWorld.value) {
return 'This player is in another world.\nClick to center on player\nDouble-click to follow player';
} else {
return 'Click to center on player\nDouble-click to follow player';
}
}),
pan = () => {
if(!props.player.hidden) {
store.commit(MutationTypes.CLEAR_FOLLOW_TARGET, undefined);
store.commit(MutationTypes.SET_PAN_TARGET, props.player);
}
},
follow = () => store.commit(MutationTypes.SET_FOLLOW_TARGET, props.player),
onKeydown = (e: KeyboardEvent) => {
if(e.key !== ' ' && e.key !== 'Enter') {
return;
}
if(e.shiftKey) {
follow();
} else {
if(!props.player.hidden) {
pan();
}
}
};
let image = ref(defaultImage);
2020-12-23 03:07:44 +00:00
onMounted(() => {
if(store.state.components.playerMarkers && store.state.components.playerMarkers.showSkinFaces) {
2021-01-26 20:37:29 +00:00
getMinecraftHead(props.player, '16').then((result) => image.value = result.src).catch(() => {});
2020-12-23 03:07:44 +00:00
}
});
2020-12-13 13:23:32 +00:00
return {
image,
title,
otherWorld,
pan,
follow,
onKeydown
2020-12-13 13:23:32 +00:00
}
},
2020-12-01 23:20:38 +00:00
});
</script>
<style lang="scss" scoped>
.player {
position: relative;
display: block;
line-height: 3rem;
2021-01-06 01:00:01 +00:00
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
2020-12-01 23:20:38 +00:00
.player__icon {
position: absolute;
display: block;
top: 0;
bottom: 0;
left: 0.7rem;
pointer-events: none;
margin: auto;
2020-12-13 13:23:32 +00:00
z-index: 1;
2020-12-01 23:20:38 +00:00
}
.player__name {
2020-12-13 13:31:38 +00:00
padding: 0.8rem 0 0.7rem 3.5rem;
2020-12-01 23:20:38 +00:00
text-align: left;
margin: 0;
width: 100%;
height: 100%;
2020-12-23 03:23:58 +00:00
min-height: 3.2rem;
2020-12-01 23:20:38 +00:00
}
&.player--hidden {
.player__icon {
filter: grayscale(1);
opacity: 0.5;
}
.player__name {
cursor: not-allowed;
}
2021-05-15 22:24:29 +00:00
.player__name {
color: var(--text-disabled);
}
}
&.player--other-world {
.player__icon {
opacity: 0.5;
}
2021-05-15 22:24:29 +00:00
.player__name {
color: var(--text-disabled);
}
}
2020-12-01 23:20:38 +00:00
}
</style>