2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-08-18 15:44:21 +02:00
|
|
|
<template>
|
2022-12-20 03:00:05 +01:00
|
|
|
<button
|
2023-05-30 03:20:06 +02:00
|
|
|
class="_button"
|
2023-09-23 02:01:20 +02:00
|
|
|
:class="[$style.root, { [$style.wait]: wait, [$style.active]: isFollowing, [$style.full]: full },[$style.text,{[$style.gamingDark]: gaming === 'dark',[$style.gamingLight]: gaming === 'light'}]]"
|
2020-08-18 15:44:21 +02:00
|
|
|
:disabled="wait"
|
2021-11-19 11:36:12 +01:00
|
|
|
@click="onClick"
|
2020-08-18 15:44:21 +02:00
|
|
|
>
|
|
|
|
<template v-if="!wait">
|
|
|
|
<template v-if="isFollowing">
|
2023-09-23 02:01:20 +02:00
|
|
|
<span v-if="full" :class="[$style.text,{[$style.gamingDark]: gaming === 'dark',[$style.gamingLight]: gaming === 'light'}]">{{ i18n.ts.unfollow }}</span><i class="ti ti-minus"></i>
|
2020-08-18 15:44:21 +02:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2023-09-23 02:01:20 +02:00
|
|
|
<span v-if="full" :class="[$style.text,{[$style.gamingDark]: gaming === 'dark',[$style.gamingLight]: gaming === 'light'}]">{{ i18n.ts.follow }}</span><i class="ti ti-plus"></i>
|
2020-08-18 15:44:21 +02:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2023-09-23 02:01:20 +02:00
|
|
|
<span v-if="full" :class="[$style.text,{[$style.gamingDark]: gaming === 'dark',[$style.gamingLight]: gaming === 'light'}]">{{ i18n.ts.processing }}</span><MkLoading :em="true"/>
|
2020-08-18 15:44:21 +02:00
|
|
|
</template>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
<script lang="ts" setup>
|
2023-09-23 02:01:20 +02:00
|
|
|
import {computed, ref, watch} from 'vue';
|
2023-09-19 09:37:43 +02:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2023-09-23 02:01:20 +02:00
|
|
|
import {defaultStore} from "@/store.js";
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
channel: Record<string, any>;
|
|
|
|
full?: boolean;
|
|
|
|
}>(), {
|
|
|
|
full: false,
|
|
|
|
});
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-09-23 02:01:20 +02:00
|
|
|
|
|
|
|
let gaming = ref('');
|
|
|
|
|
|
|
|
const gamingMode = computed(defaultStore.makeGetterSetter('gamingMode'));
|
|
|
|
const darkMode = computed(defaultStore.makeGetterSetter('darkMode'));
|
|
|
|
if (darkMode.value && gamingMode.value == true) {
|
|
|
|
gaming.value = 'dark';
|
|
|
|
} else if (!darkMode.value && gamingMode.value == true) {
|
|
|
|
gaming.value = 'light';
|
|
|
|
} else {
|
|
|
|
gaming.value = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(darkMode, () => {
|
|
|
|
console.log(gaming)
|
|
|
|
if (darkMode.value && gamingMode.value == true) {
|
|
|
|
gaming.value = 'dark';
|
|
|
|
} else if (!darkMode.value && gamingMode.value == true) {
|
|
|
|
gaming.value = 'light';
|
|
|
|
} else {
|
|
|
|
gaming.value = '';
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
watch(gamingMode, () => {
|
|
|
|
if (darkMode.value && gamingMode.value == true) {
|
|
|
|
gaming.value = 'dark';
|
|
|
|
} else if (!darkMode.value && gamingMode.value == true) {
|
|
|
|
gaming.value = 'light';
|
|
|
|
} else {
|
|
|
|
gaming.value = '';
|
|
|
|
}
|
|
|
|
})
|
2022-01-10 16:05:18 +01:00
|
|
|
const isFollowing = ref<boolean>(props.channel.isFollowing);
|
|
|
|
const wait = ref(false);
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
async function onClick() {
|
|
|
|
wait.value = true;
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2022-01-10 16:05:18 +01:00
|
|
|
try {
|
|
|
|
if (isFollowing.value) {
|
|
|
|
await os.api('channels/unfollow', {
|
2022-12-20 03:00:05 +01:00
|
|
|
channelId: props.channel.id,
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
|
|
|
isFollowing.value = false;
|
|
|
|
} else {
|
|
|
|
await os.api('channels/follow', {
|
2022-12-20 03:00:05 +01:00
|
|
|
channelId: props.channel.id,
|
2022-01-10 16:05:18 +01:00
|
|
|
});
|
|
|
|
isFollowing.value = true;
|
2020-08-18 15:44:21 +02:00
|
|
|
}
|
2022-05-26 15:53:09 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
2022-01-10 16:05:18 +01:00
|
|
|
} finally {
|
|
|
|
wait.value = false;
|
2020-08-18 15:44:21 +02:00
|
|
|
}
|
2022-01-10 16:05:18 +01:00
|
|
|
}
|
2020-08-18 15:44:21 +02:00
|
|
|
</script>
|
|
|
|
|
2023-05-30 03:20:06 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-08-18 15:44:21 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
color: var(--accent);
|
|
|
|
background: transparent;
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
padding: 0;
|
|
|
|
height: 31px;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 32px;
|
|
|
|
background: #fff;
|
2023-09-23 02:01:20 +02:00
|
|
|
&.gamingDark {
|
|
|
|
color: black;
|
|
|
|
background: linear-gradient(270deg, #e7a2a2, #e3cfa2, #ebefa1, #b3e7a6, #a6ebe7, #aec5e3, #cabded, #e0b9e3, #f4bddd);
|
|
|
|
background-size: 1800% 1800%;
|
|
|
|
-webkit-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
-moz-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingLight {
|
|
|
|
color: #fff;
|
|
|
|
background: linear-gradient(270deg, #c06161, #c0a567, #b6ba69, #81bc72, #63c3be, #8bacd6, #9f8bd6, #d18bd6, #d883b4);
|
|
|
|
background-size: 1800% 1800% !important;
|
|
|
|
-webkit-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
-moz-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
|
|
|
}
|
2020-08-18 15:44:21 +02:00
|
|
|
&.full {
|
|
|
|
padding: 0 8px 0 12px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.full) {
|
|
|
|
width: 31px;
|
|
|
|
}
|
|
|
|
|
2021-10-02 19:46:58 +02:00
|
|
|
&:focus-visible {
|
2020-08-18 15:44:21 +02:00
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
right: -5px;
|
|
|
|
bottom: -5px;
|
|
|
|
left: -5px;
|
|
|
|
border: 2px solid var(--focus);
|
|
|
|
border-radius: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
//background: mix($primary, #fff, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
//background: mix($primary, #fff, 40);
|
|
|
|
}
|
|
|
|
|
2023-09-23 02:01:20 +02:00
|
|
|
&.active {
|
|
|
|
color: var(--fgOnAccent);
|
|
|
|
background: var(--accent);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
border-color: var(--accentLighten);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accentDarken);
|
|
|
|
border-color: var(--accentDarken);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingDark:hover {
|
|
|
|
-webkit-text-fill-color: unset;
|
|
|
|
color: black;
|
|
|
|
background: linear-gradient(270deg, #e7a2a2, #e3cfa2, #ebefa1, #b3e7a6, #a6ebe7, #aec5e3, #cabded, #e0b9e3, #f4bddd); background-size: 1800% 1800%;
|
|
|
|
-webkit-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
-moz-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingDark:active {
|
|
|
|
-webkit-text-fill-color: unset !important;
|
|
|
|
color: white;
|
|
|
|
background: linear-gradient(270deg, #e7a2a2, #e3cfa2, #ebefa1, #b3e7a6, #a6ebe7, #aec5e3, #cabded, #e0b9e3, #f4bddd); background-size: 1800% 1800%;
|
|
|
|
-webkit-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
-moz-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
border-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingLight:hover {
|
|
|
|
-webkit-text-fill-color: unset !important;
|
|
|
|
background: linear-gradient(270deg, #c06161, #c0a567, #b6ba69, #81bc72, #63c3be, #8bacd6, #9f8bd6, #d18bd6, #d883b4);
|
|
|
|
background-size: 1800% 1800% !important;
|
|
|
|
-webkit-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
-moz-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
border-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingLight:active {
|
|
|
|
-webkit-text-fill-color: unset !important;
|
|
|
|
color: white;
|
|
|
|
background: linear-gradient(270deg, #c06161, #c0a567, #b6ba69, #81bc72, #63c3be, #8bacd6, #9f8bd6, #d18bd6, #d883b4); background-size: 1800% 1800% !important;
|
|
|
|
-webkit-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
-moz-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
border-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingDark {
|
|
|
|
-webkit-text-fill-color: unset !important;
|
|
|
|
color: black;
|
|
|
|
background: linear-gradient(270deg, #e7a2a2, #e3cfa2, #ebefa1, #b3e7a6, #a6ebe7, #aec5e3, #cabded, #e0b9e3, #f4bddd); background-size: 1800% 1800%;
|
|
|
|
-webkit-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
-moz-animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
animation: AnimationDark 44s cubic-bezier(0, 0.2, 0.90, 1) infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.gamingLight {
|
|
|
|
-webkit-text-fill-color: unset !important;
|
|
|
|
color: white;
|
|
|
|
background: linear-gradient(270deg, #c06161, #c0a567, #b6ba69, #81bc72, #63c3be, #8bacd6, #9f8bd6, #d18bd6, #d883b4); background-size: 1800% 1800% !important;
|
|
|
|
-webkit-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
-moz-animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
animation: AnimationLight 45s cubic-bezier(0, 0.2, 0.90, 1) infinite !important;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
&.wait {
|
|
|
|
cursor: wait !important;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
2023-05-30 03:20:06 +02:00
|
|
|
}
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2023-05-30 03:20:06 +02:00
|
|
|
.text {
|
|
|
|
margin-right: 6px;
|
2020-08-18 15:44:21 +02:00
|
|
|
}
|
|
|
|
</style>
|