2023-02-09 01:35:28 +00:00
|
|
|
<template>
|
|
|
|
<XColumn :menu="menu" :column="column" :is-stacked="isStacked" @parent-focus="$event => emit('parent-focus', $event)">
|
|
|
|
<template #header>
|
|
|
|
<i class="ti ti-device-tv"></i><span style="margin-left: 8px;">{{ column.name }}</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template v-if="column.channelId">
|
|
|
|
<div style="padding: 8px; text-align: center;">
|
|
|
|
<MkButton primary gradate rounded inline @click="post"><i class="ti ti-pencil"></i></MkButton>
|
|
|
|
</div>
|
2023-02-22 02:00:34 +00:00
|
|
|
<MkTimeline ref="timeline" src="channel" :channel="column.channelId" @after="() => emit('loaded')"/>
|
2023-02-09 01:35:28 +00:00
|
|
|
</template>
|
|
|
|
</XColumn>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
|
|
|
import XColumn from './column.vue';
|
|
|
|
import { updateColumn, Column } from './deck-store';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkTimeline from '@/components/MkTimeline.vue';
|
2023-02-09 01:35:28 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
column: Column;
|
|
|
|
isStacked: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'loaded'): void;
|
|
|
|
(ev: 'parent-focus', direction: 'up' | 'down' | 'left' | 'right'): void;
|
|
|
|
}>();
|
|
|
|
|
2023-02-22 02:00:34 +00:00
|
|
|
let timeline = $shallowRef<InstanceType<typeof MkTimeline>>();
|
2023-02-09 01:35:28 +00:00
|
|
|
|
|
|
|
if (props.column.channelId == null) {
|
|
|
|
setChannel();
|
|
|
|
}
|
|
|
|
|
|
|
|
async function setChannel() {
|
2023-02-17 05:59:11 +00:00
|
|
|
const channels = await os.api('channels/followed', {
|
|
|
|
limit: 100,
|
|
|
|
});
|
2023-02-09 01:35:28 +00:00
|
|
|
const { canceled, result: channel } = await os.select({
|
|
|
|
title: i18n.ts.selectChannel,
|
|
|
|
items: channels.map(x => ({
|
|
|
|
value: x, text: x.name,
|
|
|
|
})),
|
|
|
|
default: props.column.channelId,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
updateColumn(props.column.id, {
|
|
|
|
channelId: channel.id,
|
|
|
|
name: channel.name,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function post() {
|
|
|
|
os.post({
|
|
|
|
channel: {
|
|
|
|
id: props.column.channelId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const menu = [{
|
|
|
|
icon: 'ti ti-pencil',
|
|
|
|
text: i18n.ts.selectChannel,
|
|
|
|
action: setChannel,
|
|
|
|
}];
|
|
|
|
</script>
|