2020-07-27 13:34:20 +09:00
|
|
|
<script lang="ts">
|
2023-04-08 09:01:42 +09:00
|
|
|
import { defineComponent, h, resolveDirective, withDirectives } from "vue";
|
2020-07-27 13:34:20 +09:00
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
export default defineComponent({
|
2020-07-27 13:34:20 +09:00
|
|
|
props: {
|
2021-09-30 00:50:45 +09:00
|
|
|
modelValue: {
|
2020-07-27 13:34:20 +09:00
|
|
|
required: true,
|
|
|
|
},
|
2023-05-20 02:02:41 +09:00
|
|
|
style: {
|
|
|
|
required: false,
|
|
|
|
},
|
2020-07-27 13:34:20 +09:00
|
|
|
},
|
2020-11-17 14:59:15 +09:00
|
|
|
render() {
|
|
|
|
const options = this.$slots.default();
|
|
|
|
|
2023-04-08 09:01:42 +09:00
|
|
|
return h(
|
|
|
|
"div",
|
|
|
|
{
|
2023-05-22 12:05:52 +09:00
|
|
|
class: [
|
|
|
|
"pxhvhrfw",
|
2023-05-21 01:08:20 +09:00
|
|
|
{ chips: this.style === "chips" },
|
2023-05-22 12:05:52 +09:00
|
|
|
{ underline: this.style === "underline" },
|
2023-05-21 01:08:20 +09:00
|
|
|
],
|
2023-05-20 02:20:48 +09:00
|
|
|
role: "tablist",
|
2022-07-24 15:45:16 +09:00
|
|
|
},
|
2023-04-08 09:01:42 +09:00
|
|
|
options.map((option) =>
|
|
|
|
withDirectives(
|
|
|
|
h(
|
|
|
|
"button",
|
|
|
|
{
|
2023-05-20 02:20:48 +09:00
|
|
|
class: "_button",
|
|
|
|
role: "tab",
|
2023-04-08 09:01:42 +09:00
|
|
|
key: option.key,
|
2023-05-20 07:41:59 +09:00
|
|
|
"aria-selected":
|
|
|
|
this.modelValue === option.props?.value
|
|
|
|
? "true"
|
|
|
|
: "false",
|
2023-04-08 09:01:42 +09:00
|
|
|
onClick: () => {
|
|
|
|
this.$emit(
|
|
|
|
"update:modelValue",
|
|
|
|
option.props?.value
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
option.children
|
|
|
|
),
|
|
|
|
[[resolveDirective("click-anime")]]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2022-07-24 15:45:16 +09:00
|
|
|
},
|
2020-07-27 13:34:20 +09:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-11-17 14:59:15 +09:00
|
|
|
<style lang="scss">
|
2020-07-27 13:34:20 +09:00
|
|
|
.pxhvhrfw {
|
|
|
|
display: flex;
|
2021-04-22 22:29:33 +09:00
|
|
|
font-size: 90%;
|
2022-07-27 13:35:03 +09:00
|
|
|
border-radius: var(--radius);
|
|
|
|
padding: 10px 8px;
|
2020-07-27 13:34:20 +09:00
|
|
|
|
|
|
|
> button {
|
|
|
|
flex: 1;
|
2021-10-16 18:18:41 +09:00
|
|
|
padding: 10px 8px;
|
2023-02-02 05:19:01 +09:00
|
|
|
margin: 0 8px;
|
2021-10-17 18:47:33 +09:00
|
|
|
border-radius: var(--radius);
|
2020-07-27 13:34:20 +09:00
|
|
|
|
2020-11-01 14:05:06 +09:00
|
|
|
&:disabled {
|
|
|
|
opacity: 1 !important;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2023-05-20 02:20:48 +09:00
|
|
|
&[aria-selected="true"] {
|
2020-07-27 13:34:20 +09:00
|
|
|
color: var(--accent);
|
2023-05-20 02:02:41 +09:00
|
|
|
background: var(--accentedBg) !important;
|
2020-07-27 13:34:20 +09:00
|
|
|
}
|
2020-07-28 10:08:08 +09:00
|
|
|
|
2023-05-20 02:20:48 +09:00
|
|
|
&:not([aria-selected="true"]):hover {
|
2020-11-01 14:05:06 +09:00
|
|
|
color: var(--fgHighlighted);
|
2021-10-16 18:18:41 +09:00
|
|
|
background: var(--panelHighlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 8px;
|
2020-11-01 14:05:06 +09:00
|
|
|
}
|
|
|
|
|
2020-07-28 10:08:08 +09:00
|
|
|
> .icon {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
2023-05-21 10:20:17 +09:00
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2020-07-27 13:34:20 +09:00
|
|
|
}
|
|
|
|
|
2023-05-22 12:05:52 +09:00
|
|
|
&.chips,
|
|
|
|
&.underline {
|
2023-05-20 02:02:41 +09:00
|
|
|
padding: 12px 32px;
|
2023-05-20 07:41:59 +09:00
|
|
|
font-size: 0.85em;
|
2023-05-20 02:02:41 +09:00
|
|
|
overflow-x: auto;
|
2023-05-20 13:14:14 +09:00
|
|
|
mask: linear-gradient(to right, black calc(100% - 90px), transparent);
|
2023-05-20 15:27:56 +09:00
|
|
|
-webkit-mask: linear-gradient(
|
|
|
|
to right,
|
|
|
|
black calc(100% - 90px),
|
|
|
|
transparent
|
|
|
|
);
|
2023-05-20 13:14:14 +09:00
|
|
|
padding-right: 90px !important;
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-05-20 02:02:41 +09:00
|
|
|
> button {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
align-items: center;
|
|
|
|
flex: unset;
|
|
|
|
margin: 0;
|
|
|
|
margin-right: 8px;
|
2023-05-20 07:41:59 +09:00
|
|
|
padding: 0.5em 1em;
|
2023-05-20 02:02:41 +09:00
|
|
|
border-radius: 100px;
|
|
|
|
background: var(--buttonBg);
|
|
|
|
> i {
|
2023-05-20 07:41:59 +09:00
|
|
|
margin-top: -0.1em;
|
2023-05-20 02:02:41 +09:00
|
|
|
}
|
2023-05-20 13:14:14 +09:00
|
|
|
> .count {
|
2023-05-20 15:27:56 +09:00
|
|
|
margin-right: -0.2em;
|
2023-05-20 13:14:14 +09:00
|
|
|
}
|
2023-05-20 02:02:41 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-21 01:08:20 +09:00
|
|
|
&.underline {
|
|
|
|
padding-block: 0 !important;
|
|
|
|
margin-bottom: -1px;
|
2023-05-21 10:46:33 +09:00
|
|
|
border-radius: 0;
|
2023-05-21 01:08:20 +09:00
|
|
|
button {
|
|
|
|
background: none !important;
|
|
|
|
border-radius: 0 !important;
|
|
|
|
padding-block: 10px !important;
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
&[aria-selected="true"] {
|
|
|
|
background: none !important;
|
|
|
|
font-weight: 700;
|
|
|
|
border-bottom-color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-27 13:34:20 +09:00
|
|
|
&.max-width_500px {
|
|
|
|
font-size: 80%;
|
2020-10-17 20:12:00 +09:00
|
|
|
|
|
|
|
> button {
|
2021-10-16 18:18:41 +09:00
|
|
|
padding: 11px 8px;
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
2020-07-27 13:34:20 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|