upd: expandAllCws also expands all long posts on first click

this mimics glitch-soc behavior
This commit is contained in:
ShittyKopper 2024-02-03 14:55:20 +03:00
parent bffac25c57
commit c61adcf61d
5 changed files with 10 additions and 5 deletions

View file

@ -39,7 +39,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>
<script lang="ts" setup>
import { ref, computed } from 'vue';
import { ref, computed, watch } from 'vue';
import * as Misskey from 'misskey-js';
import * as mfm from '@transfem-org/sfm-js';
import MkMediaList from '@/components/MkMediaList.vue';
@ -57,6 +57,7 @@ const props = defineProps<{
translating?: boolean;
translation?: any;
hideFiles?: boolean;
expandAllCws?: boolean;
}>();
const router = useRouter();
@ -87,6 +88,10 @@ function animatedMFM() {
}
const collapsed = ref(isLong);
watch(() => props.expandAllCws, (expandAllCws) => {
if (expandAllCws) collapsed.value = false;
});
</script>
<style lang="scss" module>