forked from mirror/misskey
253c0c42e2
* デッキのカラムからリロードできる機能を追加 * tweak --------- Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
68 lines
1.4 KiB
Vue
68 lines
1.4 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<XColumn :menu="menu" :column="column" :isStacked="isStacked" :refresher="() => timeline.reloadTimeline()">
|
|
<template #header>
|
|
<i class="ti ti-badge"></i><span style="margin-left: 8px;">{{ column.name }}</span>
|
|
</template>
|
|
|
|
<MkTimeline v-if="column.roleId" ref="timeline" src="role" :role="column.roleId"/>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue';
|
|
import XColumn from './column.vue';
|
|
import { updateColumn, Column } from './deck-store.js';
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const props = defineProps<{
|
|
column: Column;
|
|
isStacked: boolean;
|
|
}>();
|
|
|
|
let timeline = $shallowRef<InstanceType<typeof MkTimeline>>();
|
|
|
|
onMounted(() => {
|
|
if (props.column.roleId == null) {
|
|
setRole();
|
|
}
|
|
});
|
|
|
|
async function setRole() {
|
|
const roles = (await os.api('roles/list')).filter(x => x.isExplorable);
|
|
const { canceled, result: role } = await os.select({
|
|
title: i18n.ts.role,
|
|
items: roles.map(x => ({
|
|
value: x, text: x.name,
|
|
})),
|
|
default: props.column.roleId,
|
|
});
|
|
if (canceled) return;
|
|
updateColumn(props.column.id, {
|
|
roleId: role.id,
|
|
});
|
|
}
|
|
|
|
const menu = [{
|
|
icon: 'ti ti-pencil',
|
|
text: i18n.ts.role,
|
|
action: setRole,
|
|
}];
|
|
|
|
/*
|
|
function focus() {
|
|
timeline.focus();
|
|
}
|
|
|
|
defineExpose({
|
|
focus,
|
|
});
|
|
*/
|
|
</script>
|