fix: copy visibility for renotes

This commit is contained in:
Johann150 2022-08-05 08:36:59 +02:00 committed by ThatOneCalculator
parent ef2ec5035b
commit 7ad306831d
1 changed files with 62 additions and 47 deletions

View File

@ -1,6 +1,5 @@
<template>
<button
v-if="canRenote"
<button v-if="canRenote"
ref="buttonRef"
class="eddddedb _button canRenote"
@click="renote()"
@ -13,9 +12,8 @@
</button>
</template>
<script lang="ts" setup>
import { computed, ref } from 'vue';
import * as misskey from 'misskey-js';
<script lang="ts">
import { computed, defineComponent, ref } from 'vue';
import XDetails from '@/components/users-tooltip.vue';
import { pleaseLogin } from '@/scripts/please-login';
import * as os from '@/os';
@ -23,11 +21,19 @@ import { $i } from '@/account';
import { useTooltip } from '@/scripts/use-tooltip';
import { i18n } from '@/i18n';
const props = defineProps<{
note: misskey.entities.Note;
count: number;
}>();
export default defineComponent({
props: {
count: {
type: Number,
required: true,
},
note: {
type: Object,
required: true,
},
},
setup(props) {
const buttonRef = ref<HTMLElement>();
const canRenote = computed(() => ['public', 'home'].includes(props.note.visibility) || props.note.userId === $i.id);
@ -35,7 +41,7 @@ const canRenote = computed(() => ['public', 'home'].includes(props.note.visibili
useTooltip(buttonRef, async (showing) => {
const renotes = await os.api('notes/renotes', {
noteId: props.note.id,
limit: 11,
limit: 11
});
const users = renotes.map(x => x.user);
@ -46,7 +52,7 @@ useTooltip(buttonRef, async (showing) => {
showing,
users,
count: props.count,
targetElement: buttonRef.value,
targetElement: buttonRef.value
}, {}, 'closed');
});
@ -58,8 +64,9 @@ const renote = (viaKeyboard = false) => {
action: () => {
os.api('notes/create', {
renoteId: props.note.id,
visibility: props.note.visibility,
});
},
}
}, {
text: i18n.ts.quote,
icon: 'fas fa-quote-right',
@ -67,11 +74,19 @@ const renote = (viaKeyboard = false) => {
os.post({
renote: props.note,
});
},
}
}], buttonRef.value, {
viaKeyboard,
viaKeyboard
});
};
return {
buttonRef,
canRenote,
renote,
};
},
});
</script>
<style lang="scss" scoped>