2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-07-11 01:13:11 +00:00
|
|
|
<template>
|
2023-05-20 01:12:18 +00:00
|
|
|
<XColumn :menu="menu" :naked="true" :column="column" :isStacked="isStacked">
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #header><i class="ph-squares-four ph-bold pg-lg" style="margin-right: 8px;"></i>{{ column.name }}</template>
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-01-14 02:18:12 +00:00
|
|
|
<div :class="$style.root">
|
|
|
|
<div v-if="!(column.widgets && column.widgets.length > 0) && !edit" :class="$style.intro">{{ i18n.ts._deck.widgetsIntroduction }}</div>
|
2023-05-19 11:52:15 +00:00
|
|
|
<XWidgets :edit="edit" :widgets="column.widgets ?? []" @addWidget="addWidget" @removeWidget="removeWidget" @updateWidget="updateWidget" @updateWidgets="updateWidgets" @exit="edit = false"/>
|
2020-07-11 01:13:11 +00:00
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</XColumn>
|
2020-07-11 01:13:11 +00:00
|
|
|
</template>
|
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2020-07-11 01:13:11 +00:00
|
|
|
import XColumn from './column.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { addColumnWidget, Column, removeColumnWidget, setColumnWidgets, updateColumnWidget } from './deck-store.js';
|
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';
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
column: Column;
|
|
|
|
isStacked: boolean;
|
|
|
|
}>();
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
let edit = $ref(false);
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function addWidget(widget) {
|
|
|
|
addColumnWidget(props.column.id, widget);
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function removeWidget(widget) {
|
|
|
|
removeColumnWidget(props.column.id, widget);
|
|
|
|
}
|
2020-12-19 01:55:52 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function updateWidget({ id, data }) {
|
|
|
|
updateColumnWidget(props.column.id, id, data);
|
|
|
|
}
|
2020-12-28 02:56:42 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function updateWidgets(widgets) {
|
|
|
|
setColumnWidgets(props.column.id, widgets);
|
|
|
|
}
|
2021-02-16 13:17:13 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
function func() {
|
|
|
|
edit = !edit;
|
|
|
|
}
|
2022-07-16 20:33:21 +00:00
|
|
|
|
|
|
|
const menu = [{
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-pencil ph-bold ph-lg',
|
2022-07-16 20:33:21 +00:00
|
|
|
text: i18n.ts.editWidgets,
|
|
|
|
action: func,
|
|
|
|
}];
|
2020-07-11 01:13:11 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 02:18:12 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-02-16 13:17:13 +00:00
|
|
|
--margin: 8px;
|
2021-07-27 12:37:32 +00:00
|
|
|
--panelBorder: none;
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2021-02-16 13:17:13 +00:00
|
|
|
padding: 0 var(--margin);
|
2023-01-14 02:18:12 +00:00
|
|
|
}
|
2022-07-04 12:28:59 +00:00
|
|
|
|
2023-01-14 02:18:12 +00:00
|
|
|
.intro {
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2020-07-11 01:13:11 +00:00
|
|
|
}
|
|
|
|
</style>
|