mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 13:38:12 +00:00
147 lines
2.5 KiB
Vue
147 lines
2.5 KiB
Vue
<template>
|
|
<section class="sidebar">
|
|
<div class="sidebar_content">
|
|
<!-- <button class="option-save" @click="toggleOrderMode" :data-selected="store.orderMode == 'OrderList'">
|
|
<img :src="saveIcon" alt="save icon" />
|
|
</button> -->
|
|
|
|
<!-- <button @click="store.helperModalOpen = true">?</button> -->
|
|
|
|
<button
|
|
v-for="orderType in orderTypeList"
|
|
:key="orderType.id"
|
|
@click="selectOrderType(orderType.id)"
|
|
:data-selected="store.chosenOrderType == orderType.id"
|
|
>
|
|
{{ orderType.name }}
|
|
|
|
<div class="bar"></div>
|
|
</button>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { useStore } from '../store/store';
|
|
|
|
export default defineComponent({
|
|
data() {
|
|
return {
|
|
orderTypeList: [
|
|
{
|
|
id: 'orderN',
|
|
name: 'N',
|
|
},
|
|
{
|
|
id: 'orderS',
|
|
name: 'S',
|
|
},
|
|
{
|
|
id: 'orderO',
|
|
name: 'O',
|
|
},
|
|
],
|
|
};
|
|
},
|
|
setup() {
|
|
return {
|
|
store: useStore(),
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
selectOrderType(type: any) {
|
|
if (type != this.store.chosenOrderType) this.store.chosenLocalOrderId = '';
|
|
|
|
this.store.chosenOrderType = type;
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../styles/global.scss';
|
|
|
|
.sidebar_content {
|
|
display: grid;
|
|
grid-template-rows: repeat(3, 1fr);
|
|
gap: 0.25em;
|
|
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
height: 100%;
|
|
|
|
& > button {
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
color: white;
|
|
background-color: #1d1d1d;
|
|
width: 50px;
|
|
height: 85px;
|
|
|
|
.bar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
width: 4px;
|
|
|
|
transform: translateX(100%);
|
|
transition: all 200ms ease-in-out;
|
|
}
|
|
|
|
&[data-selected='true'] .bar {
|
|
transform: translateX(0);
|
|
|
|
background-color: $accentCol;
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&:focus-visible {
|
|
background-color: #6d6d6d;
|
|
}
|
|
}
|
|
}
|
|
|
|
button.option-save {
|
|
background-color: #000000aa;
|
|
|
|
img {
|
|
width: 80%;
|
|
height: 80%;
|
|
}
|
|
|
|
&[data-selected='true'] {
|
|
background-color: $accentCol;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 650px) {
|
|
.sidebar_content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
& > button {
|
|
height: 40px;
|
|
width: 100px;
|
|
|
|
.bar {
|
|
width: 100%;
|
|
height: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|