2020-07-27 06:34:20 +02:00
|
|
|
<script lang="ts">
|
2023-04-08 02:01:42 +02:00
|
|
|
import { defineComponent, h, resolveDirective, withDirectives } from "vue";
|
2020-07-27 06:34:20 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-07-27 06:34:20 +02:00
|
|
|
props: {
|
2021-09-29 17:50:45 +02:00
|
|
|
modelValue: {
|
2020-07-27 06:34:20 +02:00
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
2020-11-17 06:59:15 +01:00
|
|
|
render() {
|
|
|
|
const options = this.$slots.default();
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
return h(
|
|
|
|
"div",
|
|
|
|
{
|
|
|
|
class: "pxhvhrfw",
|
2022-07-24 08:45:16 +02:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
options.map((option) =>
|
|
|
|
withDirectives(
|
|
|
|
h(
|
|
|
|
"button",
|
|
|
|
{
|
|
|
|
class: [
|
|
|
|
"_button",
|
|
|
|
{
|
|
|
|
active:
|
|
|
|
this.modelValue === option.props?.value,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
key: option.key,
|
|
|
|
disabled: this.modelValue === option.props?.value,
|
|
|
|
onClick: () => {
|
|
|
|
this.$emit(
|
|
|
|
"update:modelValue",
|
|
|
|
option.props?.value
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
option.children
|
|
|
|
),
|
|
|
|
[[resolveDirective("click-anime")]]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2022-07-24 08:45:16 +02:00
|
|
|
},
|
2020-07-27 06:34:20 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-11-17 06:59:15 +01:00
|
|
|
<style lang="scss">
|
2020-07-27 06:34:20 +02:00
|
|
|
.pxhvhrfw {
|
|
|
|
display: flex;
|
2021-04-22 15:29:33 +02:00
|
|
|
font-size: 90%;
|
2022-07-27 06:35:03 +02:00
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 10px 8px;
|
2020-07-27 06:34:20 +02:00
|
|
|
|
|
|
|
> button {
|
|
|
|
flex: 1;
|
2021-10-16 11:18:41 +02:00
|
|
|
padding: 10px 8px;
|
2023-02-01 21:19:01 +01:00
|
|
|
margin: 0 8px;
|
2021-10-17 11:47:33 +02:00
|
|
|
border-radius: var(--radius);
|
2020-07-27 06:34:20 +02:00
|
|
|
|
2020-11-01 06:05:06 +01:00
|
|
|
&:disabled {
|
|
|
|
opacity: 1 !important;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2020-07-27 06:34:20 +02:00
|
|
|
&.active {
|
|
|
|
color: var(--accent);
|
2021-10-16 11:18:41 +02:00
|
|
|
background: var(--accentedBg);
|
2020-07-27 06:34:20 +02:00
|
|
|
}
|
2020-07-28 03:08:08 +02:00
|
|
|
|
2020-11-01 06:05:06 +01:00
|
|
|
&:not(.active):hover {
|
|
|
|
color: var(--fgHighlighted);
|
2021-10-16 11:18:41 +02:00
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 8px;
|
2020-11-01 06:05:06 +01:00
|
|
|
}
|
|
|
|
|
2020-07-28 03:08:08 +02:00
|
|
|
> .icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
2020-07-27 06:34:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
|
|
|
font-size: 80%;
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
> button {
|
2021-10-16 11:18:41 +02:00
|
|
|
padding: 11px 8px;
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
2020-07-27 06:34:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|