mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-26 01:23:09 +02:00
337dd97b49
* perf(#10923): unwind css module class name * perf(#10923): support multiple components * refactor: clean up * refactor(#10923): avoid `useCssModule()` * fix(#10923): allow direct literal class name * fix(#10923): avoid computed class name * fix(#10923): allow literal keys * fix(#10923): typo * fix(#10923): invalid class names * chore: test * revert: test This reverts commit 5c7ef366eceebe8ba260efa4d5d675f6c1775c45. * fix(#10923): hidden tale * perf(#10923): also unwind scoped css contained components * perf(#10923): `normalizeClass` AOT compilation --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
95 lines
1.8 KiB
Vue
95 lines
1.8 KiB
Vue
<template>
|
|
<div :class="[$style.root, { [$style.inline]: inline }]">
|
|
<a v-if="external" :class="$style.main" class="_button" :href="to" target="_blank">
|
|
<span :class="$style.icon"><slot name="icon"></slot></span>
|
|
<span :class="$style.text"><slot></slot></span>
|
|
<span :class="$style.suffix">
|
|
<span :class="$style.suffixText"><slot name="suffix"></slot></span>
|
|
<i class="ti ti-external-link"></i>
|
|
</span>
|
|
</a>
|
|
<MkA v-else :class="[$style.main, { [$style.active]: active }]" class="_button" :to="to" :behavior="behavior">
|
|
<span :class="$style.icon"><slot name="icon"></slot></span>
|
|
<span :class="$style.text"><slot></slot></span>
|
|
<span :class="$style.suffix">
|
|
<span :class="$style.suffixText"><slot name="suffix"></slot></span>
|
|
<i class="ti ti-chevron-right"></i>
|
|
</span>
|
|
</MkA>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
to: string;
|
|
active?: boolean;
|
|
external?: boolean;
|
|
behavior?: null | 'window' | 'browser';
|
|
inline?: boolean;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
display: block;
|
|
|
|
&.inline {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 10px 14px;
|
|
background: var(--buttonBg);
|
|
border-radius: 6px;
|
|
font-size: 0.9em;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
background: var(--buttonHoverBg);
|
|
}
|
|
|
|
&.active {
|
|
color: var(--accent);
|
|
background: var(--buttonHoverBg);
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 0.75em;
|
|
flex-shrink: 0;
|
|
text-align: center;
|
|
color: var(--fgTransparentWeak);
|
|
|
|
&:empty {
|
|
display: none;
|
|
|
|
& + .text {
|
|
padding-left: 4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.text {
|
|
flex-shrink: 1;
|
|
white-space: normal;
|
|
padding-right: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.suffix {
|
|
margin-left: auto;
|
|
opacity: 0.7;
|
|
white-space: nowrap;
|
|
|
|
> .suffixText:not(:empty) {
|
|
margin-right: 0.75em;
|
|
}
|
|
}
|
|
</style>
|