1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-06 05:55:28 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/GridViewRowIdentifierDropdown.vue
2022-07-29 09:12:43 +00:00

60 lines
1.3 KiB
Vue

<template>
<div>
<a
ref="contextAnchor"
class="grid-view__head-row-identifier-dropdown"
@click.prevent="toggle"
>
<i class="fas fa-list-ol"></i>
</a>
<Context ref="context">
<ul v-auto-overflow-scroll class="select__items">
<li
v-for="option in options"
:key="option"
class="select__item select__item-no-options"
:class="{ active: option === rowIdentifierTypeSelected }"
>
<a class="select__item-link" @click="setRowIdentifierTypes(option)">
<span class="select__item-name">
{{ $t(`gridViewIdentifierOptions.${option}`) }}
</span>
</a>
</li>
</ul>
</Context>
</div>
</template>
<script>
export default {
name: 'GridViewRowIdentifierDropdown',
props: {
rowIdentifierTypeSelected: {
type: String,
required: true,
},
},
computed: {
options() {
return ['id', 'count']
},
},
methods: {
toggle() {
this.$refs.context.toggle(
this.$refs.contextAnchor,
'bottom',
'left',
10,
4
)
},
setRowIdentifierTypes(rowIdentifierType) {
this.$refs.context.hide()
this.$emit('change', rowIdentifierType)
},
},
}
</script>