2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
2024-02-13 15:59:27 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-04-10 03:40:50 +00:00
|
|
|
<template>
|
2023-06-01 08:19:46 +00:00
|
|
|
<div>
|
|
|
|
<XWidgets :edit="editMode" :widgets="widgets" @addWidget="addWidget" @removeWidget="removeWidget" @updateWidget="updateWidget" @updateWidgets="updateWidgets" @exit="editMode = false"/>
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2022-12-19 10:01:30 +00:00
|
|
|
<button v-if="editMode" class="_textButton" style="font-size: 0.9em;" @click="editMode = false"><i class="ti ti-check"></i> {{ i18n.ts.editWidgetsExit }}</button>
|
2023-05-08 22:49:53 +00:00
|
|
|
<button v-else class="_textButton" data-cy-widget-edit :class="$style.edit" style="font-size: 0.9em;" @click="editMode = true"><i class="ti ti-pencil"></i> {{ i18n.ts.editWidgets }}</button>
|
2021-04-10 03:40:50 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-12-27 05:55:11 +00:00
|
|
|
<script lang="ts">
|
2023-12-07 05:42:09 +00:00
|
|
|
import { computed, ref } from 'vue';
|
|
|
|
const editMode = ref(false);
|
2022-12-27 05:55:11 +00:00
|
|
|
</script>
|
2022-03-20 18:11:14 +00:00
|
|
|
<script lang="ts" setup>
|
2022-08-30 15:24:33 +00:00
|
|
|
import XWidgets from '@/components/MkWidgets.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2022-12-27 05:55:11 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
// null = 全てのウィジェットを表示
|
|
|
|
// left = place: leftだけを表示
|
|
|
|
// right = rightとnullを表示
|
|
|
|
place?: 'left' | null | 'right';
|
|
|
|
}>(), {
|
|
|
|
place: null,
|
|
|
|
});
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const widgets = computed(() => {
|
2022-12-27 05:55:11 +00:00
|
|
|
if (props.place === null) return defaultStore.reactiveState.widgets.value;
|
|
|
|
if (props.place === 'left') return defaultStore.reactiveState.widgets.value.filter(w => w.place === 'left');
|
|
|
|
return defaultStore.reactiveState.widgets.value.filter(w => w.place !== 'left');
|
|
|
|
});
|
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function addWidget(widget) {
|
|
|
|
defaultStore.set('widgets', [{
|
|
|
|
...widget,
|
2022-12-27 05:55:11 +00:00
|
|
|
place: props.place,
|
2022-03-20 18:11:14 +00:00
|
|
|
}, ...defaultStore.state.widgets]);
|
|
|
|
}
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function removeWidget(widget) {
|
2022-05-26 13:53:09 +00:00
|
|
|
defaultStore.set('widgets', defaultStore.state.widgets.filter(w => w.id !== widget.id));
|
2022-03-20 18:11:14 +00:00
|
|
|
}
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function updateWidget({ id, data }) {
|
|
|
|
defaultStore.set('widgets', defaultStore.state.widgets.map(w => w.id === id ? {
|
|
|
|
...w,
|
2022-05-26 13:53:09 +00:00
|
|
|
data,
|
2022-12-27 05:55:11 +00:00
|
|
|
place: props.place,
|
2022-03-20 18:11:14 +00:00
|
|
|
} : w));
|
|
|
|
}
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2022-12-27 05:55:11 +00:00
|
|
|
function updateWidgets(thisWidgets) {
|
|
|
|
if (props.place === null) {
|
|
|
|
defaultStore.set('widgets', thisWidgets);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (props.place === 'left') {
|
|
|
|
defaultStore.set('widgets', [
|
|
|
|
...thisWidgets.map(w => ({ ...w, place: 'left' })),
|
|
|
|
...defaultStore.state.widgets.filter(w => w.place !== 'left' && !thisWidgets.some(t => w.id === t.id)),
|
|
|
|
]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
defaultStore.set('widgets', [
|
|
|
|
...defaultStore.state.widgets.filter(w => w.place === 'left' && !thisWidgets.some(t => w.id === t.id)),
|
|
|
|
...thisWidgets.map(w => ({ ...w, place: 'right' })),
|
|
|
|
]);
|
2022-03-20 18:11:14 +00:00
|
|
|
}
|
2021-04-10 03:40:50 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-10 02:15:29 +00:00
|
|
|
<style lang="scss" module>
|
2023-04-10 17:11:44 +00:00
|
|
|
.edit {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-04-10 03:40:50 +00:00
|
|
|
</style>
|