LiveAtlas/src/components/sidebar/WorldListItem.vue

135 lines
3.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-11-23 12:13:28 +00:00
<template>
2020-12-01 23:20:38 +00:00
<li class="world">
<span class="world__name">{{ world.title }}</span>
<ul class="world__maps">
<li :class="{'map': true, 'map--selected': map === currentMap}" v-for="[name, map] in world.maps" :key="name">
2020-12-13 02:52:28 +00:00
<button type="button" :title="map.title" @click="setCurrentMap(map.name)" :aria-label="map.title">
<SvgIcon :name="getMapIcon(map)"></SvgIcon>
</button>
2020-11-23 12:13:28 +00:00
</li>
</ul>
</li>
</template>
<script lang="ts">
2020-11-23 16:16:26 +00:00
import {useStore} from "@/store";
2020-12-11 21:38:50 +00:00
import {DynmapWorldMap, DynmapWorld} from "@/dynmap";
2020-11-23 12:13:28 +00:00
import {defineComponent} from 'vue';
2020-11-23 16:16:26 +00:00
import {MutationTypes} from "@/store/mutation-types";
2020-12-13 02:52:28 +00:00
import SvgIcon from "@/components/SvgIcon.vue";
2021-05-15 19:25:03 +00:00
import "@/assets/icons/block_world_surface.svg";
import "@/assets/icons/block_world_cave.svg";
import "@/assets/icons/block_world_biome.svg";
import "@/assets/icons/block_world_flat.svg";
import "@/assets/icons/block_nether_flat.svg";
import "@/assets/icons/block_nether_surface.svg";
import "@/assets/icons/block_the_end_flat.svg";
import "@/assets/icons/block_the_end_surface.svg";
import "@/assets/icons/block_other.svg";
import "@/assets/icons/block_other_flat.svg";
import "@/assets/icons/block_skylands.svg";
2020-11-23 12:13:28 +00:00
export default defineComponent({
name: 'WorldListItem',
2020-12-13 02:52:28 +00:00
components: {SvgIcon},
2020-11-23 12:13:28 +00:00
props: {
world: {
type: Object as () => DynmapWorld,
required: true
}
},
computed: {
2020-12-11 21:38:50 +00:00
currentMap(): DynmapWorldMap | undefined {
2020-11-23 12:13:28 +00:00
return useStore().state.currentMap;
2021-05-20 20:44:22 +00:00
},
2020-11-23 12:13:28 +00:00
},
methods: {
2020-12-11 21:38:50 +00:00
getMapIcon(map: DynmapWorldMap): string {
2020-11-23 12:13:28 +00:00
let worldType: string,
mapType: string;
2021-05-20 20:44:22 +00:00
if (/(^|_)nether(_|$)/i.test(this.world.name) || (this.world.name == 'DIM-1')) {
2020-11-23 12:13:28 +00:00
worldType = 'nether';
mapType = (map.name == 'nether') ? 'surface' : 'flat';
2021-05-20 20:44:22 +00:00
} else if (/(^|_)end(_|$)/i.test(this.world.name) || (this.world.name == 'DIM1')) {
2020-11-23 12:13:28 +00:00
worldType = 'the_end';
mapType = (map.name == 'the_end') ? 'surface' : 'flat';
} else {
worldType = 'world';
mapType = ['surface', 'flat', 'biome', 'cave'].includes(map.name) ? map.name : 'flat';
}
2020-12-13 02:52:28 +00:00
return `block_${worldType}_${mapType}`;
2020-11-23 12:13:28 +00:00
},
2020-12-01 23:20:38 +00:00
setCurrentMap(mapName: string) {
2020-11-23 12:13:28 +00:00
useStore().commit(MutationTypes.SET_CURRENT_MAP, {
2020-12-01 23:20:38 +00:00
worldName: this.world.name,
mapName
2020-11-23 12:13:28 +00:00
});
}
}
});
</script>
2020-12-01 23:20:38 +00:00
<style lang="scss" scoped>
.world {
display: flex;
align-items: center;
margin-bottom: .5rem;
2020-11-23 12:13:28 +00:00
2020-12-01 23:20:38 +00:00
.world__maps {
display: flex;
align-items: center;
margin-left: auto;
padding-left: 1rem;
padding-right: 0.2rem;
}
}
.map {
width: 3.2rem;
height: 3.2rem;
button {
display: block;
height: 100%;
width: 100%;
border-radius: 0.5rem;
2020-12-20 19:37:25 +00:00
.svg-icon {
top: 0.2rem;
right: 0.2rem;
bottom: 0.2rem;
left: 0.2rem;
width: calc(100% - 0.4rem);
}
2020-12-01 23:20:38 +00:00
}
& + .map {
margin-left: 0.5rem;
}
2020-12-20 19:37:25 +00:00
&.map--selected button {
2021-05-15 22:24:29 +00:00
background-color: var(--background-hover);
2020-12-20 19:37:25 +00:00
}
2020-12-01 23:20:38 +00:00
}
2020-12-13 02:52:28 +00:00
</style>