magnetar/fe_calckey/frontend/client/src/widgets/timeline.vue

204 lines
5.9 KiB
Vue
Raw Normal View History

2023-07-07 19:22:30 +00:00
<template>
<MkContainer
:show-header="widgetProps.showHeader"
:style="`height: ${widgetProps.height}px;`"
:scrollable="true"
class="mkw-timeline"
>
<template #header>
<button class="_button" @click="choose">
<i
v-if="widgetProps.src === 'home'"
class="ph-house ph-bold ph-lg"
></i>
<i
v-else-if="widgetProps.src === 'local'"
class="ph-chats-circle ph-bold ph-lg"
></i>
<i
v-else-if="widgetProps.src === 'social'"
class="ph-share-network ph-bold ph-lg"
></i>
<i
v-else-if="widgetProps.src === 'global'"
class="ph-planet ph-bold ph-lg"
></i>
<i
v-else-if="widgetProps.src === 'list'"
class="ph-list-bullets ph-bold ph-lg"
></i>
<i
v-else-if="widgetProps.src === 'antenna'"
class="ph-television ph-bold ph-lg"
></i>
<span style="margin-left: 8px">{{
widgetProps.src === "list"
? widgetProps.list.name
: widgetProps.src === "antenna"
2024-04-08 01:10:23 +00:00
? widgetProps.antenna.name
: i18n.t("_timelines." + widgetProps.src)
}}</span>
<i
:class="
menuOpened
? 'ph-caret-up ph-bold ph-lg'
: 'ph-caret-down ph-bold ph-lg'
"
style="margin-left: 8px"
></i>
</button>
</template>
2023-07-07 19:22:30 +00:00
<div>
<XTimeline
:key="
widgetProps.src === 'list'
? `list:${widgetProps.list.id}`
: widgetProps.src === 'antenna'
2024-04-08 01:10:23 +00:00
? `antenna:${widgetProps.antenna.id}`
: widgetProps.src
"
:src="widgetProps.src"
:list="widgetProps.list ? widgetProps.list.id : null"
:antenna="widgetProps.antenna ? widgetProps.antenna.id : null"
/>
</div>
</MkContainer>
2023-07-07 19:22:30 +00:00
</template>
<script lang="ts" setup>
import { onMounted, onUnmounted, reactive, ref, watch } from "vue";
import { GetFormResultType } from "@/scripts/form";
import {
useWidgetPropsManager,
Widget,
WidgetComponentEmits,
WidgetComponentExpose,
WidgetComponentProps,
2023-07-07 19:22:30 +00:00
} from "./widget";
import * as os from "@/os";
import MkContainer from "@/components/MkContainer.vue";
import XTimeline from "@/components/MkTimeline.vue";
import { $i } from "@/account";
import { i18n } from "@/i18n";
const name = "timeline";
const widgetPropsDef = {
showHeader: {
type: "boolean" as const,
default: true,
},
height: {
type: "number" as const,
default: 300,
},
src: {
type: "string" as const,
default: "home",
hidden: true,
},
antenna: {
type: "object" as const,
default: null,
hidden: true,
},
list: {
type: "object" as const,
default: null,
hidden: true,
},
2023-07-07 19:22:30 +00:00
};
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
const props = defineProps<{ widget?: Widget<WidgetProps> }>();
const emit = defineEmits<{ (ev: "updateProps", props: WidgetProps) }>();
const { widgetProps, configure, save } = useWidgetPropsManager(
name,
widgetPropsDef,
props,
2024-04-08 01:10:23 +00:00
emit,
2023-07-07 19:22:30 +00:00
);
const menuOpened = ref(false);
const setSrc = (src) => {
widgetProps.src = src;
save();
2023-07-07 19:22:30 +00:00
};
const choose = async (ev) => {
menuOpened.value = true;
const [antennas, lists] = await Promise.all([
os.api("antennas/list"),
os.api("users/lists/list"),
]);
const antennaItems = antennas.map((antenna) => ({
text: antenna.name,
icon: "ph-flying-saucer ph-bold ph-lg",
action: () => {
widgetProps.antenna = antenna;
setSrc("antenna");
},
}));
const listItems = lists.map((list) => ({
text: list.name,
icon: "ph-list-bullets ph-bold ph-lg",
action: () => {
widgetProps.list = list;
setSrc("list");
},
}));
os.popupMenu(
[
{
text: i18n.ts._timelines.home,
icon: "ph-house ph-bold ph-lg",
action: () => {
setSrc("home");
},
},
{
text: i18n.ts._timelines.local,
icon: "ph-chats-teardrop ph-bold ph-lg",
action: () => {
setSrc("local");
},
},
{
text: i18n.ts._timelines.social,
icon: "ph-share-network ph-bold ph-lg",
action: () => {
setSrc("social");
},
},
{
text: i18n.ts._timelines.global,
icon: "ph-planet ph-bold ph-lg",
action: () => {
setSrc("global");
},
},
antennaItems.length > 0 ? null : undefined,
...antennaItems,
listItems.length > 0 ? null : undefined,
...listItems,
],
2024-04-08 01:10:23 +00:00
ev.currentTarget ?? ev.target,
).then(() => {
menuOpened.value = false;
});
2023-07-07 19:22:30 +00:00
};
defineExpose<WidgetComponentExpose>({
name,
configure,
id: props.widget ? props.widget.id : null,
2023-07-07 19:22:30 +00:00
});
</script>