2020-01-30 04:37:25 +09:00
|
|
|
<template>
|
2022-05-28 14:28:12 +09:00
|
|
|
<MkContainer :show-header="widgetProps.showHeader" class="mkw-rss">
|
2021-04-20 23:22:59 +09:00
|
|
|
<template #header><i class="fas fa-rss-square"></i>RSS</template>
|
2022-01-08 20:30:01 +09:00
|
|
|
<template #func><button class="_button" @click="configure"><i class="fas fa-cog"></i></button></template>
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2020-07-11 10:13:11 +09:00
|
|
|
<div class="ekmkgxbj">
|
2020-10-17 20:12:00 +09:00
|
|
|
<MkLoading v-if="fetching"/>
|
2021-11-19 19:36:12 +09:00
|
|
|
<div v-else class="feed">
|
2022-06-30 23:45:11 +09:00
|
|
|
<a v-for="item in items" class="item" :href="item.link" rel="nofollow noopener" target="_blank" :title="item.title">{{ item.title }}</a>
|
2020-01-30 04:37:25 +09:00
|
|
|
</div>
|
2020-07-11 10:13:11 +09:00
|
|
|
</div>
|
2020-10-17 20:12:00 +09:00
|
|
|
</MkContainer>
|
2020-01-30 04:37:25 +09:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 20:30:01 +09:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, onUnmounted, ref, watch } from 'vue';
|
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2022-06-26 03:12:58 +09:00
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
2021-11-12 02:02:25 +09:00
|
|
|
import * as os from '@/os';
|
2022-01-08 20:30:01 +09:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
2022-06-26 03:12:58 +09:00
|
|
|
import { useInterval } from '@/scripts/use-interval';
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2022-01-08 20:30:01 +09:00
|
|
|
const name = 'rss';
|
2020-10-17 20:12:00 +09:00
|
|
|
|
2022-01-08 20:30:01 +09:00
|
|
|
const widgetPropsDef = {
|
|
|
|
url: {
|
|
|
|
type: 'string' as const,
|
|
|
|
default: 'http://feeds.afpbb.com/rss/afpbb/afpbbnews',
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
2022-06-30 23:45:11 +09:00
|
|
|
showHeader: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
|
|
|
},
|
2022-01-08 20:30:01 +09: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>; }>();
|
2022-05-25 16:43:12 +09:00
|
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: WidgetProps); }>();
|
2022-01-08 20:30:01 +09:00
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
const items = ref([]);
|
|
|
|
const fetching = ref(true);
|
|
|
|
|
|
|
|
const tick = () => {
|
2022-07-02 21:26:33 +09:00
|
|
|
fetch(`/api/fetch-rss?url=${widgetProps.url}`, {}).then(res => {
|
2022-01-08 20:30:01 +09:00
|
|
|
res.json().then(feed => {
|
|
|
|
items.value = feed.items;
|
|
|
|
fetching.value = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
watch(() => widgetProps.url, tick);
|
|
|
|
|
2022-06-26 03:12:58 +09:00
|
|
|
useInterval(tick, 60000, {
|
|
|
|
immediate: true,
|
|
|
|
afterMounted: true,
|
2022-01-08 20:30:01 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-01-30 04:37:25 +09:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ekmkgxbj {
|
|
|
|
> .feed {
|
|
|
|
padding: 0;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
2022-06-30 23:45:11 +09:00
|
|
|
> .item {
|
2020-01-30 04:37:25 +09:00
|
|
|
display: block;
|
|
|
|
padding: 8px 16px;
|
2020-10-27 18:11:41 +09:00
|
|
|
color: var(--fg);
|
2020-01-30 04:37:25 +09:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2021-03-02 22:57:16 +09:00
|
|
|
overflow: hidden;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
&:nth-child(even) {
|
|
|
|
background: rgba(#000, 0.05);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|