2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-03 05:08:52 +00:00
|
|
|
<template>
|
|
|
|
<div :class="$style.root">
|
|
|
|
<button v-for="item in items" class="_button item" :class="{ disabled: item.hidden }" @click="onClick(item)">
|
|
|
|
<span class="box" :style="{ background: chart.config.type === 'line' ? item.strokeStyle?.toString() : item.fillStyle?.toString() }"></span>
|
|
|
|
{{ item.text }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { Chart, LegendItem } from 'chart.js';
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
});
|
|
|
|
|
|
|
|
let chart = $shallowRef<Chart>();
|
|
|
|
let items = $shallowRef<LegendItem[]>([]);
|
|
|
|
|
|
|
|
function update(_chart: Chart, _items: LegendItem[]) {
|
|
|
|
chart = _chart,
|
|
|
|
items = _items;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onClick(item: LegendItem) {
|
|
|
|
if (chart == null) return;
|
|
|
|
const { type } = chart.config;
|
|
|
|
if (type === 'pie' || type === 'doughnut') {
|
|
|
|
// Pie and doughnut charts only have a single dataset and visibility is per item
|
|
|
|
chart.toggleDataVisibility(item.index);
|
|
|
|
} else {
|
|
|
|
chart.setDatasetVisibility(item.datasetIndex, !chart.isDatasetVisible(item.datasetIndex));
|
|
|
|
}
|
|
|
|
chart.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
update,
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 8px;
|
|
|
|
|
|
|
|
&:global {
|
|
|
|
> .item {
|
|
|
|
font-size: 85%;
|
|
|
|
padding: 4px 12px 4px 8px;
|
|
|
|
border: solid 1px var(--divider);
|
|
|
|
border-radius: 999px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: var(--inputBorderHover);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
text-decoration: line-through;
|
2023-01-05 04:59:48 +00:00
|
|
|
opacity: 0.5;
|
2023-01-03 05:08:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .box {
|
|
|
|
display: inline-block;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
border-radius: 100%;
|
|
|
|
vertical-align: -10%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-06 11:19:27 +00:00
|
|
|
|
|
|
|
@container (max-width: 500px) {
|
|
|
|
.root {
|
|
|
|
font-size: 90%;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
}
|
2023-01-03 05:08:52 +00:00
|
|
|
</style>
|