Sharkey/src/client/app/common/views/widgets/donation.vue

54 lines
985 B
Vue
Raw Normal View History

2018-02-14 19:36:42 -08:00
<template>
2018-09-28 03:59:19 -07:00
<div>
<mk-widget-container :show-header="false">
<article class="dolfvtibguprpxxhfndqaosjitixjohx">
<h1>%fa:heart%%i18n:@title%</h1>
<p v-if="meta">
{{ '%i18n:@text%'.substr(0, '%i18n:@text%'.indexOf('{')) }}
<a :href="meta.maintainer.url">{{ meta.maintainer.name }}</a>
{{ '%i18n:@text%'.substr('%i18n:@text%'.indexOf('}') + 1) }}
</p>
</article>
</mk-widget-container>
2018-02-14 19:36:42 -08:00
</div>
</template>
<script lang="ts">
2018-02-24 07:18:09 -08:00
import define from '../../../common/define-widget';
2018-02-14 19:36:42 -08:00
export default define({
name: 'donation'
}).extend({
data() {
return {
2018-08-25 18:29:24 -07:00
meta: null
};
},
created() {
(this as any).os.getMeta().then(meta => {
this.meta = meta;
});
}
2018-02-14 19:36:42 -08:00
});
</script>
<style lang="stylus" scoped>
2018-09-28 03:59:19 -07:00
.dolfvtibguprpxxhfndqaosjitixjohx
padding 20px
background var(--donationBg)
color var(--donationFg)
> h1
margin 0 0 5px 0
font-size 1em
> [data-fa]
margin-right 0.25em
> p
display block
z-index 1
margin 0
font-size 0.8em
2018-04-19 15:45:37 -07:00
2018-02-14 19:36:42 -08:00
</style>