knowyt/client/src/components/Source.vue
2021-08-27 14:50:39 +02:00

81 lines
1.5 KiB
Vue

<template>
<div class="source">
<div
:class="['source__container', { 'source__container__selected': selected } ]"
@click="clicked"
>
<div class="source__source">
{{ source.name }}
</div>
</div>
</div>
</template>
<script>
export default {
props: ['source'],
computed: {
selected() {
return this.isSelected()
},
},
methods: {
isSelected() {
return this.$store.state.selection.selection[this.source.id]
},
clicked() {
if (this.isSelected()) {
this.$store.commit('selection/unselect', this.source.id)
} else {
this.$store.commit('selection/clearSelection')
this.$store.commit('selection/select', this.source.id)
}
},
},
}
</script>
<style lang="scss">
.source {
position: absolute;
width: 180px;
height: 30px;
margin: -15px 0 0 -90px;
&__container {
display: flex;
align-items: center;
max-width: 180px;
height: 1.4em;
padding: 4px;
border: 1px solid #e0e0e0;
border-radius: 10px;
background-color: #402080;
color: #ffffff;
&:hover {
background-color: #8060c0;
cursor: pointer;
}
&__selected,
&__selected:hover {
background-color: #ffffff;
color: #402080;
box-shadow: 0 0 10px #ffffff;
}
}
&__source {
width: 100%;
font-family: "Wendy One";
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
user-select: none;
}
}
</style>