2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-02-27 05:08:34 +01:00
|
|
|
<template>
|
2023-05-19 06:58:09 +02:00
|
|
|
<MkWindow
|
|
|
|
ref="window"
|
|
|
|
:initialWidth="300"
|
|
|
|
:initialHeight="290"
|
|
|
|
:canResize="true"
|
2021-02-27 05:08:34 +01:00
|
|
|
:mini="true"
|
|
|
|
:front="true"
|
2022-01-18 15:06:16 +01:00
|
|
|
@closed="emit('closed')"
|
2021-02-27 05:08:34 +01:00
|
|
|
>
|
2023-05-19 06:58:09 +02:00
|
|
|
<MkEmojiPicker :showPinned="showPinned" :asReactionPicker="asReactionPicker" asWindow :class="$style.picker" @chosen="chosen"/>
|
2021-02-27 05:08:34 +01:00
|
|
|
</MkWindow>
|
|
|
|
</template>
|
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkWindow from '@/components/MkWindow.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkEmojiPicker from '@/components/MkEmojiPicker.vue';
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
withDefaults(defineProps<{
|
|
|
|
src?: HTMLElement;
|
|
|
|
showPinned?: boolean;
|
|
|
|
asReactionPicker?: boolean;
|
|
|
|
}>(), {
|
|
|
|
showPinned: true,
|
|
|
|
});
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
const emit = defineEmits<{
|
2022-05-07 10:00:05 +02:00
|
|
|
(ev: 'chosen', v: any): void;
|
|
|
|
(ev: 'closed'): void;
|
2022-01-18 15:06:16 +01:00
|
|
|
}>();
|
2021-02-27 05:08:34 +01:00
|
|
|
|
2022-01-18 15:06:16 +01:00
|
|
|
function chosen(emoji: any) {
|
|
|
|
emit('chosen', emoji);
|
|
|
|
}
|
2021-02-27 05:08:34 +01:00
|
|
|
</script>
|
|
|
|
|
2023-01-07 06:44:50 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.picker {
|
|
|
|
height: 100%;
|
2021-02-27 05:08:34 +01:00
|
|
|
}
|
|
|
|
</style>
|