2023-10-22 07:02:24 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MkModalWindow
|
|
|
|
ref="dialog"
|
|
|
|
:width="400"
|
|
|
|
:height="450"
|
|
|
|
@close="cancel"
|
|
|
|
@closed="emit('closed')"
|
|
|
|
>
|
|
|
|
<template #header>{{ i18n.ts.avatarDecorations }}</template>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
|
|
|
<div style="text-align: center;">
|
|
|
|
<div :class="$style.name">{{ decoration.name }}</div>
|
2023-12-14 04:29:27 +02:00
|
|
|
<MkAvatar style="width: 64px; height: 64px; margin-bottom: 20px;" :user="$i" :decorations="decorationsForPreview" forceShowDecoration/>
|
2023-10-22 07:02:24 +03:00
|
|
|
</div>
|
|
|
|
<div class="_gaps_s">
|
|
|
|
<MkRange v-model="angle" continuousUpdate :min="-0.5" :max="0.5" :step="0.025" :textConverter="(v) => `${Math.floor(v * 360)}°`">
|
|
|
|
<template #label>{{ i18n.ts.angle }}</template>
|
|
|
|
</MkRange>
|
|
|
|
<MkSwitch v-model="flipH">
|
|
|
|
<template #label>{{ i18n.ts.flip }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
|
|
|
|
<div :class="$style.footer" class="_buttonsCenter">
|
2023-12-14 04:29:27 +02:00
|
|
|
<MkButton v-if="usingIndex != null" primary rounded @click="update"><i class="ti ti-check"></i> {{ i18n.ts.update }}</MkButton>
|
|
|
|
<MkButton v-if="usingIndex != null" rounded @click="detach"><i class="ti ti-x"></i> {{ i18n.ts.detach }}</MkButton>
|
2023-10-22 07:02:24 +03:00
|
|
|
<MkButton v-else primary rounded @click="attach"><i class="ti ti-check"></i> {{ i18n.ts.attach }}</MkButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkModalWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { shallowRef, ref, computed } from 'vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
|
|
import MkRange from '@/components/MkRange.vue';
|
|
|
|
import { $i } from '@/account.js';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
2023-12-14 04:29:27 +02:00
|
|
|
usingIndex: number | null;
|
2023-10-22 07:02:24 +03:00
|
|
|
decoration: {
|
|
|
|
id: string;
|
|
|
|
url: string;
|
2023-12-13 09:56:19 +02:00
|
|
|
name: string;
|
2023-12-14 04:29:27 +02:00
|
|
|
};
|
2023-10-22 07:02:24 +03:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
2023-12-14 04:29:27 +02:00
|
|
|
(ev: 'attach', payload: {
|
|
|
|
angle: number;
|
|
|
|
flipH: boolean;
|
|
|
|
}): void;
|
|
|
|
(ev: 'update', payload: {
|
|
|
|
angle: number;
|
|
|
|
flipH: boolean;
|
|
|
|
}): void;
|
|
|
|
(ev: 'detach'): void;
|
2023-10-22 07:02:24 +03:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const dialog = shallowRef<InstanceType<typeof MkModalWindow>>();
|
2023-12-14 04:29:27 +02:00
|
|
|
const angle = ref((props.usingIndex != null ? $i.avatarDecorations[props.usingIndex].angle : null) ?? 0);
|
|
|
|
const flipH = ref((props.usingIndex != null ? $i.avatarDecorations[props.usingIndex].flipH : null) ?? false);
|
|
|
|
|
|
|
|
const decorationsForPreview = computed(() => {
|
|
|
|
const decoration = {
|
|
|
|
id: props.decoration.id,
|
|
|
|
url: props.decoration.url,
|
|
|
|
angle: angle.value,
|
|
|
|
flipH: flipH.value,
|
|
|
|
};
|
|
|
|
const decorations = [...$i.avatarDecorations];
|
|
|
|
if (props.usingIndex != null) {
|
|
|
|
decorations[props.usingIndex] = decoration;
|
|
|
|
} else {
|
|
|
|
decorations.push(decoration);
|
|
|
|
}
|
|
|
|
return decorations;
|
|
|
|
});
|
2023-10-22 07:02:24 +03:00
|
|
|
|
|
|
|
function cancel() {
|
|
|
|
dialog.value.close();
|
|
|
|
}
|
|
|
|
|
2023-12-14 04:29:27 +02:00
|
|
|
async function update() {
|
|
|
|
emit('update', {
|
2023-10-22 07:02:24 +03:00
|
|
|
angle: angle.value,
|
|
|
|
flipH: flipH.value,
|
|
|
|
});
|
|
|
|
dialog.value.close();
|
|
|
|
}
|
|
|
|
|
2023-12-14 04:29:27 +02:00
|
|
|
async function attach() {
|
|
|
|
emit('attach', {
|
|
|
|
angle: angle.value,
|
|
|
|
flipH: flipH.value,
|
2023-10-22 07:02:24 +03:00
|
|
|
});
|
2023-12-14 04:29:27 +02:00
|
|
|
dialog.value.close();
|
|
|
|
}
|
2023-10-22 07:02:24 +03:00
|
|
|
|
2023-12-14 04:29:27 +02:00
|
|
|
async function detach() {
|
|
|
|
emit('detach');
|
2023-10-22 07:02:24 +03:00
|
|
|
dialog.value.close();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.name {
|
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 12px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
}
|
|
|
|
</style>
|