2021-05-04 14:15:57 +02:00
|
|
|
<template>
|
2022-09-06 00:00:45 +02:00
|
|
|
<div v-if="chosen && defaultStore.state.showAds" class="qiivuoyo">
|
2022-08-31 16:12:22 +02:00
|
|
|
<div v-if="!showMenu" class="main" :class="chosen.place">
|
|
|
|
<a :href="chosen.url" target="_blank">
|
|
|
|
<img :src="chosen.imageUrl">
|
2022-11-07 03:49:47 +01:00
|
|
|
<button class="_button menu" @click.prevent.stop="toggleMenu"><span class="ph-info-bold ph-lg info-circle"></span></button>
|
2021-05-04 14:15:57 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-else class="menu">
|
2021-05-04 14:15:57 +02:00
|
|
|
<div class="body">
|
|
|
|
<div>Ads by {{ host }}</div>
|
2022-11-10 23:12:44 +01:00
|
|
|
<!--<MkButton class="button" primary>{{ i18n.ts._ad.like }}</MkButton>-->
|
|
|
|
<MkButton v-if="chosen.ratio !== 0" class="button" @click="reduceFrequency">{{ i18n.ts._ad.reduceFrequencyOfThisAd }}</MkButton>
|
|
|
|
<button class="_textButton" @click="toggleMenu">{{ i18n.ts._ad.back }}</button>
|
2021-05-04 14:15:57 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-04 16:12:36 +02:00
|
|
|
<div v-else></div>
|
2021-05-04 14:15:57 +02:00
|
|
|
</template>
|
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
2022-01-16 03:02:27 +01:00
|
|
|
import { instance } from '@/instance';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { host } from '@/config';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import * as os from '@/os';
|
2022-11-10 23:12:44 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2021-05-04 14:15:57 +02:00
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
type Ad = (typeof instance)['ads'][number];
|
2021-05-07 07:22:13 +02:00
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
prefer: string[];
|
|
|
|
specify?: Ad;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const showMenu = ref(false);
|
|
|
|
const toggleMenu = (): void => {
|
|
|
|
showMenu.value = !showMenu.value;
|
|
|
|
};
|
|
|
|
|
|
|
|
const choseAd = (): Ad | null => {
|
|
|
|
if (props.specify) {
|
|
|
|
return props.specify;
|
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
|
|
|
if (ads.length === 0) {
|
|
|
|
ads = allAds.filter(ad => ad.place === 'square');
|
|
|
|
}
|
|
|
|
|
|
|
|
const lowPriorityAds = ads.filter(ad => ad.ratio === 0);
|
|
|
|
ads = ads.filter(ad => ad.ratio !== 0);
|
|
|
|
|
|
|
|
if (ads.length === 0) {
|
|
|
|
if (lowPriorityAds.length !== 0) {
|
|
|
|
return lowPriorityAds[Math.floor(Math.random() * lowPriorityAds.length)];
|
|
|
|
} else {
|
2021-05-07 07:22:13 +02:00
|
|
|
return null;
|
2022-08-31 16:12:22 +02: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;
|
|
|
|
}
|
2021-05-04 14:15:57 +02:00
|
|
|
}
|
2022-08-31 16:12:22 +02:00
|
|
|
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
|
|
|
const chosen = ref(choseAd());
|
|
|
|
|
|
|
|
function reduceFrequency(): void {
|
|
|
|
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 14:15:57 +02: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 16:39:17 +02:00
|
|
|
text-align: center;
|
|
|
|
|
2021-05-04 14:15:57 +02:00
|
|
|
> a {
|
2021-05-04 16:39:17 +02:00
|
|
|
display: inline-block;
|
2021-05-04 14:15:57 +02:00
|
|
|
position: relative;
|
2021-05-05 07:06:57 +02:00
|
|
|
vertical-align: bottom;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> img {
|
|
|
|
filter: contrast(120%);
|
|
|
|
}
|
|
|
|
}
|
2021-05-04 14:15:57 +02:00
|
|
|
|
|
|
|
> img {
|
|
|
|
display: block;
|
|
|
|
object-fit: contain;
|
2021-05-04 16:39:17 +02:00
|
|
|
margin: auto;
|
2022-07-16 10:50:12 +02:00
|
|
|
border-radius: 5px;
|
2021-05-04 14:15:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
> .menu {
|
|
|
|
position: absolute;
|
2022-07-16 10:50:12 +02:00
|
|
|
top: 1px;
|
|
|
|
right: 1px;
|
|
|
|
|
|
|
|
> .info-circle {
|
|
|
|
border: 3px solid var(--panel);
|
|
|
|
border-radius: 50%;
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
2021-05-04 14:15:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.square {
|
2021-05-04 16:39:17 +02:00
|
|
|
> a ,
|
|
|
|
> a > img {
|
2021-05-04 14:15:57 +02:00
|
|
|
max-width: min(300px, 100%);
|
2021-05-04 16:39:17 +02:00
|
|
|
max-height: 300px;
|
2021-05-04 14:15:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.horizontal {
|
|
|
|
padding: 8px;
|
|
|
|
|
2021-05-04 16:39:17 +02:00
|
|
|
> a ,
|
|
|
|
> a > img {
|
2021-05-04 14:15:57 +02:00
|
|
|
max-width: min(600px, 100%);
|
2021-05-05 07:06:57 +02:00
|
|
|
max-height: 80px;
|
2021-05-04 14:15:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-05 12:05:19 +02:00
|
|
|
&.horizontal-big {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
> a ,
|
|
|
|
> a > img {
|
|
|
|
max-width: min(600px, 100%);
|
|
|
|
max-height: 250px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-04 14:15:57 +02:00
|
|
|
&.vertical {
|
2021-05-04 16:39:17 +02:00
|
|
|
> a ,
|
|
|
|
> a > img {
|
2021-05-04 14:15:57 +02: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 05:50:11 +02:00
|
|
|
|
|
|
|
> .button {
|
|
|
|
margin: 8px auto;
|
|
|
|
}
|
2021-05-04 14:15:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|