2018-02-23 18:46:09 +01:00
|
|
|
<template>
|
2018-05-18 02:49:28 +02:00
|
|
|
<div class="mkw-rss">
|
2018-02-23 18:46:09 +01:00
|
|
|
<mk-widget-container :show-header="!props.compact">
|
|
|
|
<template slot="header">%fa:rss-square%RSS</template>
|
|
|
|
<button slot="func" title="設定" @click="setting">%fa:cog%</button>
|
|
|
|
|
2018-06-06 12:22:45 +02:00
|
|
|
<div class="mkw-rss--body" :data-mobile="platform == 'mobile'">
|
2018-04-20 00:45:37 +02:00
|
|
|
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
|
|
|
|
<div class="feed" v-else>
|
|
|
|
<a v-for="item in items" :href="item.link" target="_blank">{{ item.title }}</a>
|
|
|
|
</div>
|
2018-02-23 18:46:09 +01:00
|
|
|
</div>
|
|
|
|
</mk-widget-container>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2018-02-24 16:18:09 +01:00
|
|
|
import define from '../../../common/define-widget';
|
2018-02-23 18:46:09 +01:00
|
|
|
export default define({
|
|
|
|
name: 'rss',
|
|
|
|
props: () => ({
|
2018-05-28 08:06:32 +02:00
|
|
|
compact: false,
|
|
|
|
url: 'http://news.yahoo.co.jp/pickup/rss.xml'
|
2018-02-23 18:46:09 +01:00
|
|
|
})
|
|
|
|
}).extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: [],
|
|
|
|
fetching: true,
|
|
|
|
clock: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
|
|
|
this.clock = setInterval(this.fetch, 60000);
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
clearInterval(this.clock);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
func() {
|
|
|
|
this.props.compact = !this.props.compact;
|
2018-04-29 10:17:15 +02:00
|
|
|
this.save();
|
2018-02-23 18:46:09 +01:00
|
|
|
},
|
|
|
|
fetch() {
|
2018-05-28 08:06:32 +02:00
|
|
|
fetch(`https://api.rss2json.com/v1/api.json?rss_url=${this.props.url}`, {
|
2018-02-23 18:46:09 +01:00
|
|
|
cache: 'no-cache'
|
|
|
|
}).then(res => {
|
|
|
|
res.json().then(feed => {
|
|
|
|
this.items = feed.items;
|
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
setting() {
|
2018-05-28 08:10:57 +02:00
|
|
|
const url = window.prompt('URL', this.props.url);
|
|
|
|
if (url && url != '') {
|
|
|
|
this.props.url = url;
|
|
|
|
this.save();
|
|
|
|
this.fetch();
|
|
|
|
}
|
2018-02-23 18:46:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
<style lang="stylus" scoped>
|
|
|
|
root(isDark)
|
|
|
|
.mkw-rss--body
|
|
|
|
.feed
|
|
|
|
padding 12px 16px
|
|
|
|
font-size 0.9em
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
> a
|
|
|
|
display block
|
|
|
|
padding 4px 0
|
|
|
|
color isDark ? #9aa4b3 : #666
|
|
|
|
border-bottom dashed 1px isDark ? #1c2023 : #eee
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
&:last-child
|
|
|
|
border-bottom none
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
.fetching
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
&[data-mobile]
|
2018-05-18 02:49:28 +02:00
|
|
|
background isDark ? #21242f : #f3f3f3
|
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
.feed
|
|
|
|
padding 0
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
> a
|
|
|
|
padding 8px 16px
|
2018-05-18 02:49:28 +02:00
|
|
|
border-bottom none
|
2018-02-23 18:46:09 +01:00
|
|
|
|
2018-04-20 00:45:37 +02:00
|
|
|
&:nth-child(even)
|
2018-05-18 02:49:28 +02:00
|
|
|
background isDark ? rgba(#000, 0.05) : rgba(#fff, 0.7)
|
2018-04-20 00:45:37 +02:00
|
|
|
|
|
|
|
.mkw-rss[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mkw-rss:not([data-darkmode])
|
|
|
|
root(false)
|
2018-02-23 18:46:09 +01:00
|
|
|
|
|
|
|
</style>
|