iceshrimp-legacy/packages/client/src/components/MkSuperMenu.vue

179 lines
3.2 KiB
Vue
Raw Normal View History

2021-10-10 08:19:16 +02:00
<template>
2023-05-10 22:20:52 +02:00
<nav class="rrevdjwu" :class="{ grid }">
<section v-for="group in def" class="group">
2023-04-08 02:01:42 +02:00
<div v-if="group.title" class="title">{{ group.title }}</div>
<div class="items">
<template v-for="(item, i) in group.items">
<a
v-if="item.type === 'a'"
:href="item.href"
:target="item.target"
class="_button item"
:class="{ danger: item.danger, active: item.active }"
>
<i
v-if="item.icon"
class="icon ph-fw ph-lg"
:class="item.icon"
></i>
<span class="text">{{ item.text }}</span>
</a>
<button
v-else-if="item.type === 'button'"
class="_button item"
:class="{ danger: item.danger, active: item.active }"
:disabled="item.active"
@click="(ev) => item.action(ev)"
>
<i
v-if="item.icon"
class="icon ph-fw ph-lg"
:class="item.icon"
></i>
<span class="text">{{ item.text }}</span>
</button>
<MkA
v-else
:to="item.to"
class="_button item"
:class="{ danger: item.danger, active: item.active }"
>
<i
v-if="item.icon"
class="icon ph-fw ph-lg"
:class="item.icon"
></i>
<span class="text">{{ item.text }}</span>
</MkA>
</template>
</div>
2023-05-10 22:20:52 +02:00
</section>
</nav>
2021-10-10 08:19:16 +02:00
</template>
<script lang="ts">
2023-04-08 02:01:42 +02:00
import { defineComponent, ref, unref } from "vue";
2021-10-10 08:19:16 +02:00
export default defineComponent({
props: {
def: {
type: Array,
2022-07-12 15:42:50 +02:00
required: true,
2021-10-10 08:19:16 +02:00
},
grid: {
type: Boolean,
required: false,
default: false,
},
},
});
</script>
<style lang="scss" scoped>
.rrevdjwu {
> .group {
& + .group {
margin-top: 16px;
padding-top: 16px;
border-top: solid 0.5px var(--divider);
}
> .title {
opacity: 0.7;
2021-12-02 12:09:12 +01:00
margin: 0 0 8px 0;
2021-12-10 07:33:01 +01:00
font-size: 0.9em;
2021-10-10 08:19:16 +02:00
}
2022-07-24 08:39:55 +02:00
2021-10-10 08:19:16 +02:00
> .items {
> .item {
display: flex;
align-items: center;
width: 100%;
box-sizing: border-box;
2021-10-15 18:15:22 +02:00
padding: 10px 16px 10px 8px;
border-radius: 9px;
2022-07-12 15:42:50 +02:00
font-size: 0.9em;
2022-07-24 08:39:55 +02:00
margin-bottom: 0.3rem;
2021-10-10 08:19:16 +02:00
2023-04-30 22:27:27 +02:00
&:hover,
&:focus-visible {
2021-10-10 08:19:16 +02:00
text-decoration: none;
background: var(--panelHighlight);
}
&.active {
color: var(--accent);
background: var(--accentedBg);
}
&.danger {
color: var(--error);
}
> .icon {
width: 32px;
margin-right: 2px;
flex-shrink: 0;
text-align: center;
opacity: 0.8;
}
> .text {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 12px;
}
}
}
}
&.grid {
> .group {
& + .group {
padding-top: 0;
border-top: none;
}
margin-left: 0;
margin-right: 0;
> .title {
font-size: 1em;
opacity: 0.7;
margin: 0 0 8px 16px;
}
> .items {
display: grid;
2021-10-24 13:16:55 +02:00
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
2021-10-10 08:19:16 +02:00
grid-gap: 8px;
padding: 0 16px;
> .item {
flex-direction: column;
padding: 18px 16px 16px 16px;
background: var(--panel);
border-radius: 8px;
text-align: center;
> .icon {
display: block;
margin-right: 0;
margin-bottom: 12px;
font-size: 1.5em;
}
> .text {
padding-right: 0;
width: 100%;
font-size: 0.8em;
}
}
}
}
}
}
</style>