100 lines
1.9 KiB
Vue
100 lines
1.9 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<mk-container :show-header="!props.compact">
|
||
|
<template #header><fa :icon="faRssSquare"/>RSS</template>
|
||
|
<template #func><button class="_button" @click="setting"><fa :icon="faCog"/></button></template>
|
||
|
|
||
|
<div class="ekmkgxbj">
|
||
|
<mk-loading v-if="fetching"/>
|
||
|
<div class="feed" v-else>
|
||
|
<a v-for="item in items" :href="item.link" rel="nofollow noopener" target="_blank" :title="item.title">{{ item.title }}</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</mk-container>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { faRssSquare, faCog } from '@fortawesome/free-solid-svg-icons';
|
||
|
import MkContainer from '../components/ui/container.vue';
|
||
|
import define from './define';
|
||
|
|
||
|
export default define({
|
||
|
name: 'rss',
|
||
|
props: () => ({
|
||
|
compact: false,
|
||
|
url: 'http://feeds.afpbb.com/rss/afpbb/afpbbnews'
|
||
|
})
|
||
|
}).extend({
|
||
|
components: {
|
||
|
MkContainer
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
items: [],
|
||
|
fetching: true,
|
||
|
clock: null,
|
||
|
faRssSquare, faCog
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
this.fetch();
|
||
|
this.clock = setInterval(this.fetch, 60000);
|
||
|
},
|
||
|
beforeDestroy() {
|
||
|
clearInterval(this.clock);
|
||
|
},
|
||
|
methods: {
|
||
|
func() {
|
||
|
this.props.compact = !this.props.compact;
|
||
|
this.save();
|
||
|
},
|
||
|
fetch() {
|
||
|
fetch(`https://api.rss2json.com/v1/api.json?rss_url=${this.props.url}`, {
|
||
|
}).then(res => {
|
||
|
res.json().then(feed => {
|
||
|
this.items = feed.items;
|
||
|
this.fetching = false;
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
setting() {
|
||
|
this.$root.dialog({
|
||
|
title: 'URL',
|
||
|
input: {
|
||
|
type: 'url',
|
||
|
default: this.props.url
|
||
|
}
|
||
|
}).then(({ canceled, result: url }) => {
|
||
|
if (canceled) return;
|
||
|
this.props.url = url;
|
||
|
this.save();
|
||
|
this.fetch();
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.ekmkgxbj {
|
||
|
> .feed {
|
||
|
padding: 0;
|
||
|
font-size: 0.9em;
|
||
|
|
||
|
> a {
|
||
|
display: block;
|
||
|
padding: 8px 16px;
|
||
|
color: var(--text);
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
overflow: hidden;
|
||
|
|
||
|
&:nth-child(even) {
|
||
|
background: rgba(#000, 0.05);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|