2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-07-11 10:13:11 +09:00
|
|
|
<template>
|
2023-05-20 10:12:18 +09:00
|
|
|
<XColumn :menu="menu" :column="column" :isStacked="isStacked">
|
2020-07-11 10:13:11 +09:00
|
|
|
<template #header>
|
2023-10-01 04:53:52 +09:00
|
|
|
<i class="ph-list ph-bold pg-lg"></i><span style="margin-left: 8px;">{{ column.name }}</span>
|
2020-07-11 10:13:11 +09:00
|
|
|
</template>
|
|
|
|
|
2023-10-03 20:38:34 +09:00
|
|
|
<MkTimeline v-if="column.listId" ref="timeline" src="list" :list="column.listId" :withRenotes="withRenotes"/>
|
2020-10-17 20:12:00 +09:00
|
|
|
</XColumn>
|
2020-07-11 10:13:11 +09:00
|
|
|
</template>
|
|
|
|
|
2022-03-21 03:11:14 +09:00
|
|
|
<script lang="ts" setup>
|
2023-10-03 20:38:34 +09:00
|
|
|
import { watch } from 'vue';
|
2020-07-11 10:13:11 +09:00
|
|
|
import XColumn from './column.vue';
|
2022-07-17 05:33:21 +09:00
|
|
|
import { updateColumn, Column } from './deck-store';
|
2023-02-22 11:00:34 +09:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2023-09-19 16:37:43 +09:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2020-07-11 10:13:11 +09:00
|
|
|
|
2022-03-21 03:11:14 +09:00
|
|
|
const props = defineProps<{
|
|
|
|
column: Column;
|
|
|
|
isStacked: boolean;
|
|
|
|
}>();
|
2020-07-11 10:13:11 +09:00
|
|
|
|
2023-02-22 11:00:34 +09:00
|
|
|
let timeline = $shallowRef<InstanceType<typeof MkTimeline>>();
|
2023-10-03 20:38:34 +09:00
|
|
|
const withRenotes = $ref(props.column.withRenotes ?? true);
|
2020-07-11 10:13:11 +09:00
|
|
|
|
2022-03-21 03:11:14 +09:00
|
|
|
if (props.column.listId == null) {
|
|
|
|
setList();
|
|
|
|
}
|
2020-07-11 10:13:11 +09:00
|
|
|
|
2023-10-03 20:38:34 +09:00
|
|
|
watch($$(withRenotes), v => {
|
|
|
|
updateColumn(props.column.id, {
|
|
|
|
withRenotes: v,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-03-21 03:11:14 +09: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-17 05:33:21 +09:00
|
|
|
value: x, text: x.name,
|
2022-03-21 03:11:14 +09:00
|
|
|
})),
|
2022-07-17 05:33:21 +09:00
|
|
|
default: props.column.listId,
|
2022-03-21 03:11:14 +09:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
updateColumn(props.column.id, {
|
2022-07-17 05:33:21 +09:00
|
|
|
listId: list.id,
|
2022-03-21 03:11:14 +09:00
|
|
|
});
|
|
|
|
}
|
2020-07-11 10:13:11 +09:00
|
|
|
|
2023-07-05 13:04:27 +09:00
|
|
|
function editList() {
|
|
|
|
os.pageWindow('my/lists/' + props.column.listId);
|
|
|
|
}
|
|
|
|
|
|
|
|
const menu = [
|
|
|
|
{
|
2023-10-01 04:53:52 +09:00
|
|
|
icon: 'ph-pencil ph-bold ph-lg',
|
2023-07-05 13:04:27 +09:00
|
|
|
text: i18n.ts.selectList,
|
|
|
|
action: setList,
|
|
|
|
},
|
|
|
|
{
|
2023-10-01 04:53:52 +09:00
|
|
|
icon: 'ph-gear ph-bold pg-lg',
|
2023-07-05 13:04:27 +09:00
|
|
|
text: i18n.ts.editList,
|
|
|
|
action: editList,
|
|
|
|
},
|
2023-10-03 20:38:34 +09:00
|
|
|
{
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts.showRenotes,
|
|
|
|
ref: $$(withRenotes),
|
|
|
|
},
|
2023-07-05 13:04:27 +09:00
|
|
|
];
|
2020-07-11 10:13:11 +09:00
|
|
|
</script>
|