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" :column="column" :isStacked="isStacked">
|
2020-07-11 01:13:11 +00:00
|
|
|
<template #header>
|
2022-12-19 10:01:30 +00:00
|
|
|
<i class="ti ti-list"></i><span style="margin-left: 8px;">{{ column.name }}</span>
|
2020-07-11 01:13:11 +00:00
|
|
|
</template>
|
|
|
|
|
2023-05-29 08:24:46 +00:00
|
|
|
<MkTimeline v-if="column.listId" ref="timeline" src="list" :list="column.listId"/>
|
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>
|
2022-07-10 10:47:29 +00:00
|
|
|
import { } from 'vue';
|
2020-07-11 01:13:11 +00:00
|
|
|
import XColumn from './column.vue';
|
2022-07-16 20:33:21 +00:00
|
|
|
import { updateColumn, Column } from './deck-store';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-03-20 18:11:14 +00:00
|
|
|
import { i18n } from '@/i18n';
|
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
|
|
|
|
2023-02-22 02:00:34 +00:00
|
|
|
let timeline = $shallowRef<InstanceType<typeof MkTimeline>>();
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
if (props.column.listId == null) {
|
|
|
|
setList();
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2022-03-20 18:11:14 +00:00
|
|
|
async function setList() {
|
|
|
|
const lists = await os.api('users/lists/list');
|
|
|
|
const { canceled, result: list } = await os.select({
|
|
|
|
title: i18n.ts.selectList,
|
|
|
|
items: lists.map(x => ({
|
2022-07-16 20:33:21 +00:00
|
|
|
value: x, text: x.name,
|
2022-03-20 18:11:14 +00:00
|
|
|
})),
|
2022-07-16 20:33:21 +00:00
|
|
|
default: props.column.listId,
|
2022-03-20 18:11:14 +00:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
updateColumn(props.column.id, {
|
2022-07-16 20:33:21 +00:00
|
|
|
listId: list.id,
|
2022-03-20 18:11:14 +00:00
|
|
|
});
|
|
|
|
}
|
2020-07-11 01:13:11 +00:00
|
|
|
|
2023-07-05 04:04:27 +00:00
|
|
|
function editList() {
|
|
|
|
os.pageWindow('my/lists/' + props.column.listId);
|
|
|
|
}
|
|
|
|
|
|
|
|
const menu = [
|
|
|
|
{
|
|
|
|
icon: 'ti ti-pencil',
|
|
|
|
text: i18n.ts.selectList,
|
|
|
|
action: setList,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: 'ti ti-settings',
|
|
|
|
text: i18n.ts.editList,
|
|
|
|
action: editList,
|
|
|
|
},
|
|
|
|
];
|
2020-07-11 01:13:11 +00:00
|
|
|
</script>
|