69 lines
1.8 KiB
Vue
69 lines
1.8 KiB
Vue
<template>
|
|
<!-- todo: locally store class CSS properties for safety -->
|
|
<div
|
|
v-show="donation"
|
|
ref="Donation"
|
|
:class="vertical ? 'FlexColumn' : 'Flex'"
|
|
:style="{
|
|
'font-size': '0.75em',
|
|
'text-align': 'center',
|
|
padding: '25px',
|
|
'box-sizing': 'border-box',
|
|
}"
|
|
>
|
|
<img
|
|
src="./esaDonate.png"
|
|
:style="{ 'margin-bottom': vertical ? '10px' : 0 }"
|
|
>
|
|
<div
|
|
class="FlexColumn"
|
|
:style="{ 'margin-left': vertical ? 0 : '20px' }"
|
|
>
|
|
<div
|
|
:style="{
|
|
'font-size': '1em',
|
|
color: 'white', // move to theme!
|
|
}"
|
|
>
|
|
{{ donation.name }}
|
|
</div>
|
|
<div
|
|
:style="{
|
|
'font-size': '0.85em',
|
|
// color: '#ffc90e' // BTRL thing, move to theme!
|
|
}"
|
|
>
|
|
donated {{ formatUSD(donation.amount) }}
|
|
</div>
|
|
<div
|
|
v-if="donation.comment"
|
|
:style="{
|
|
'font-size': '0.6em',
|
|
color: 'lightgrey', // move to theme!
|
|
}"
|
|
>
|
|
{{ `${donation.comment.slice(0, 500)}${donation.comment.length > 500 ? '...' : ''}` }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Vue, Component, Prop } from 'vue-property-decorator';
|
|
import { MediaBox as MediaBoxRep } from '../../../types/schemas';
|
|
import { MediaBox } from '../../../types';
|
|
import { formatUSD } from '../../../browser_shared/helpers';
|
|
import { replicantNS } from '../../../browser_shared/replicant_store';
|
|
|
|
@Component
|
|
export default class extends Vue {
|
|
@replicantNS.State((s) => s.reps.mediaBox) readonly mediaBox!: MediaBoxRep;
|
|
@Prop(Boolean) vertical!: boolean;
|
|
formatUSD = formatUSD;
|
|
|
|
get donation(): MediaBox.AlertElem['data'] | undefined {
|
|
return this.mediaBox.alertQueue.find((a) => a.id === this.mediaBox.current?.mediaUUID)?.data;
|
|
}
|
|
}
|
|
</script>
|