2021-05-04 15:15:57 +03:00
|
|
|
<template>
|
|
|
|
<div class="qiivuoyo" v-if="ad">
|
|
|
|
<div class="main" :class="ad.place" v-if="!showMenu">
|
|
|
|
<a :href="ad.url" target="_blank">
|
|
|
|
<img :src="ad.imageUrl">
|
|
|
|
<button class="_button menu" @click.prevent.stop="toggleMenu"><span class="fas fa-info-circle"></span></button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="menu" v-else>
|
|
|
|
<div class="body">
|
|
|
|
<div>Ads by {{ host }}</div>
|
2021-05-08 06:50:11 +03:00
|
|
|
<!--<MkButton class="button" primary>{{ $ts._ad.like }}</MkButton>-->
|
|
|
|
<MkButton v-if="ad.ratio !== 0" class="button" @click="reduceFrequency">{{ $ts._ad.reduceFrequencyOfThisAd }}</MkButton>
|
|
|
|
<button class="_textButton" @click="toggleMenu">{{ $ts._ad.back }}</button>
|
2021-05-04 15:15:57 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-04 17:12:36 +03:00
|
|
|
<div v-else></div>
|
2021-05-04 15:15:57 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, ref } from 'vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { Instance, instance } from '@/instance';
|
|
|
|
import { host } from '@/config';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import * as os from '@/os';
|
2021-05-04 15:15:57 +03:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkButton
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
prefer: {
|
2021-05-05 13:05:19 +03:00
|
|
|
type: Array,
|
2021-05-04 15:15:57 +03:00
|
|
|
required: true
|
|
|
|
},
|
2021-05-04 17:12:36 +03:00
|
|
|
specify: {
|
2021-05-04 15:15:57 +03:00
|
|
|
type: Object,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
setup(props) {
|
|
|
|
const showMenu = ref(false);
|
|
|
|
const toggleMenu = () => {
|
|
|
|
showMenu.value = !showMenu.value;
|
|
|
|
};
|
|
|
|
|
2021-05-07 08:22:13 +03:00
|
|
|
const choseAd = (): Instance['ads'][number] | null => {
|
|
|
|
if (props.specify) {
|
|
|
|
return props.specify as Instance['ads'][number];
|
|
|
|
}
|
2021-05-04 15:15:57 +03:00
|
|
|
|
2021-05-08 06:50:11 +03:00
|
|
|
const allAds = instance.ads.map(ad => defaultStore.state.mutedAds.includes(ad.id) ? {
|
|
|
|
...ad,
|
|
|
|
ratio: 0
|
|
|
|
} : ad);
|
|
|
|
|
|
|
|
let ads = allAds.filter(ad => props.prefer.includes(ad.place));
|
2021-05-04 15:15:57 +03:00
|
|
|
|
|
|
|
if (ads.length === 0) {
|
2021-05-08 06:50:11 +03:00
|
|
|
ads = allAds.filter(ad => ad.place === 'square');
|
2021-05-04 15:15:57 +03:00
|
|
|
}
|
|
|
|
|
2021-05-07 08:22:13 +03:00
|
|
|
const lowPriorityAds = ads.filter(ad => ad.ratio === 0);
|
|
|
|
ads = ads.filter(ad => ad.ratio !== 0);
|
2021-05-04 15:15:57 +03:00
|
|
|
|
2021-05-07 08:22:13 +03:00
|
|
|
if (ads.length === 0) {
|
|
|
|
if (lowPriorityAds.length !== 0) {
|
|
|
|
return lowPriorityAds[Math.floor(Math.random() * lowPriorityAds.length)];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2021-05-04 15:15:57 +03:00
|
|
|
}
|
2021-05-07 08:22:13 +03:00
|
|
|
|
|
|
|
const totalFactor = ads.reduce((a, b) => a + b.ratio, 0);
|
|
|
|
const r = Math.random() * totalFactor;
|
|
|
|
|
|
|
|
let stackedFactor = 0;
|
|
|
|
for (const ad of ads) {
|
|
|
|
if (r >= stackedFactor && r <= stackedFactor + ad.ratio) {
|
|
|
|
return ad;
|
|
|
|
} else {
|
|
|
|
stackedFactor += ad.ratio;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
};
|
2021-05-04 15:15:57 +03:00
|
|
|
|
2021-05-08 06:50:11 +03:00
|
|
|
const chosen = ref(choseAd());
|
|
|
|
|
|
|
|
const reduceFrequency = () => {
|
|
|
|
if (chosen.value == null) return;
|
|
|
|
if (defaultStore.state.mutedAds.includes(chosen.value.id)) return;
|
|
|
|
defaultStore.push('mutedAds', chosen.value.id);
|
|
|
|
os.success();
|
|
|
|
chosen.value = choseAd();
|
|
|
|
showMenu.value = false;
|
|
|
|
};
|
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
return {
|
2021-05-08 06:50:11 +03:00
|
|
|
ad: chosen,
|
2021-05-04 15:15:57 +03:00
|
|
|
showMenu,
|
|
|
|
toggleMenu,
|
|
|
|
host,
|
2021-05-08 06:50:11 +03:00
|
|
|
reduceFrequency,
|
2021-05-04 15:15:57 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.qiivuoyo {
|
|
|
|
background-size: auto auto;
|
|
|
|
background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, var(--ad) 8px, var(--ad) 14px );
|
|
|
|
|
|
|
|
> .main {
|
2021-05-04 17:39:17 +03:00
|
|
|
text-align: center;
|
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
> a {
|
2021-05-04 17:39:17 +03:00
|
|
|
display: inline-block;
|
2021-05-04 15:15:57 +03:00
|
|
|
position: relative;
|
2021-05-05 08:06:57 +03:00
|
|
|
vertical-align: bottom;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> img {
|
|
|
|
filter: contrast(120%);
|
|
|
|
}
|
|
|
|
}
|
2021-05-04 15:15:57 +03:00
|
|
|
|
|
|
|
> img {
|
|
|
|
display: block;
|
|
|
|
object-fit: contain;
|
2021-05-04 17:39:17 +03:00
|
|
|
margin: auto;
|
2021-05-04 15:15:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
> .menu {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.square {
|
2021-05-04 17:39:17 +03:00
|
|
|
> a ,
|
|
|
|
> a > img {
|
2021-05-04 15:15:57 +03:00
|
|
|
max-width: min(300px, 100%);
|
2021-05-04 17:39:17 +03:00
|
|
|
max-height: 300px;
|
2021-05-04 15:15:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.horizontal {
|
|
|
|
padding: 8px;
|
|
|
|
|
2021-05-04 17:39:17 +03:00
|
|
|
> a ,
|
|
|
|
> a > img {
|
2021-05-04 15:15:57 +03:00
|
|
|
max-width: min(600px, 100%);
|
2021-05-05 08:06:57 +03:00
|
|
|
max-height: 80px;
|
2021-05-04 15:15:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 13:05:19 +03:00
|
|
|
&.horizontal-big {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
> a ,
|
|
|
|
> a > img {
|
|
|
|
max-width: min(600px, 100%);
|
|
|
|
max-height: 250px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-04 15:15:57 +03:00
|
|
|
&.vertical {
|
2021-05-04 17:39:17 +03:00
|
|
|
> a ,
|
|
|
|
> a > img {
|
2021-05-04 15:15:57 +03:00
|
|
|
max-width: min(100px, 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .menu {
|
|
|
|
padding: 8px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
padding: 8px;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 400px;
|
|
|
|
border: solid 1px var(--divider);
|
2021-05-08 06:50:11 +03:00
|
|
|
|
|
|
|
> .button {
|
|
|
|
margin: 8px auto;
|
|
|
|
}
|
2021-05-04 15:15:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|