Sharkey/src/client/components/debobigego/link.vue

104 lines
1.9 KiB
Vue
Raw Normal View History

<template>
2021-09-29 15:50:45 +00:00
<div class="qmfkfnzi _debobigegoItem">
<a class="main _button _debobigegoPanel _debobigegoClickable" :href="to" target="_blank" v-if="external">
<span class="icon"><slot name="icon"></slot></span>
<span class="text"><slot></slot></span>
2020-12-03 14:06:46 +00:00
<span class="right">
<span class="text"><slot name="suffix"></slot></span>
<i class="fas fa-external-link-alt icon"></i>
2020-12-03 14:06:46 +00:00
</span>
</a>
2021-09-29 15:50:45 +00:00
<MkA class="main _button _debobigegoPanel _debobigegoClickable" :class="{ active }" :to="to" :behavior="behavior" v-else>
<span class="icon"><slot name="icon"></slot></span>
<span class="text"><slot></slot></span>
2020-12-03 14:06:46 +00:00
<span class="right">
<span class="text"><slot name="suffix"></slot></span>
<i class="fas fa-chevron-right icon"></i>
2020-12-03 14:06:46 +00:00
</span>
</MkA>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-09-29 15:50:45 +00:00
import './debobigego.scss';
export default defineComponent({
props: {
to: {
type: String,
required: true
},
active: {
type: Boolean,
required: false
},
external: {
type: Boolean,
required: false
},
2021-03-02 16:03:29 +00:00
behavior: {
type: String,
required: false,
},
},
data() {
return {
};
}
});
</script>
<style lang="scss" scoped>
.qmfkfnzi {
> .main {
display: flex;
align-items: center;
width: 100%;
box-sizing: border-box;
padding: 14px 16px 14px 14px;
&:hover {
text-decoration: none;
}
&.active {
color: var(--accent);
2021-04-13 16:41:49 +00:00
background: var(--panelHighlight);
}
> .icon {
width: 32px;
margin-right: 2px;
flex-shrink: 0;
text-align: center;
opacity: 0.8;
&:empty {
display: none;
& + .text {
padding-left: 4px;
}
}
}
> .text {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 12px;
}
> .right {
margin-left: auto;
opacity: 0.7;
2020-12-03 14:06:46 +00:00
> .text:not(:empty) {
margin-right: 0.75em;
}
}
}
}
</style>