mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	upd: expandAllCws also expands all long posts on first click
this mimics glitch-soc behavior
This commit is contained in:
		
							parent
							
								
									bffac25c57
								
							
						
					
					
						commit
						c61adcf61d
					
				
					 5 changed files with 10 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
				<MkCwButton v-model="showContent" :text="note.text" :files="note.files" :poll="note.poll" @click.stop/>
 | 
			
		||||
			</p>
 | 
			
		||||
			<div v-show="note.cw == null || showContent">
 | 
			
		||||
				<MkSubNoteContent :hideFiles="hideFiles" :class="$style.text" :note="note"/>
 | 
			
		||||
				<MkSubNoteContent :hideFiles="hideFiles" :class="$style.text" :note="note" :expandAllCws="props.expandAllCws"/>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -16,7 +16,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
					<MkCwButton v-model="showContent" :text="note.text" :files="note.files" :poll="note.poll"/>
 | 
			
		||||
				</p>
 | 
			
		||||
				<div v-show="note.cw == null || showContent">
 | 
			
		||||
					<MkSubNoteContent :class="$style.text" :note="note" :translating="translating" :translation="translation"/>
 | 
			
		||||
					<MkSubNoteContent :class="$style.text" :note="note" :translating="translating" :translation="translation" :expandAllCws="props.expandAllCws"/>
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
			<footer :class="$style.footer">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
				<MkCwButton v-model="showContent" :text="note.text" :files="note.files" :poll="note.poll" @click.stop/>
 | 
			
		||||
			</p>
 | 
			
		||||
			<div v-show="note.cw == null || showContent">
 | 
			
		||||
				<MkSubNoteContent :hideFiles="hideFiles" :class="$style.text" :note="note"/>
 | 
			
		||||
				<MkSubNoteContent :hideFiles="hideFiles" :class="$style.text" :note="note" :expandAllCws="props.expandAllCws"/>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
	</div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -24,7 +24,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
					<MkCwButton v-model="showContent" :text="note.text" :files="note.files" :poll="note.poll"/>
 | 
			
		||||
				</p>
 | 
			
		||||
				<div v-show="note.cw == null || showContent">
 | 
			
		||||
					<MkSubNoteContent :class="$style.text" :note="note" :translating="translating" :translation="translation"/>
 | 
			
		||||
					<MkSubNoteContent :class="$style.text" :note="note" :translating="translating" :translation="translation" :expandAllCws="props.expandAllCws"/>
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
			<MkReactionsViewer ref="reactionsViewer" :note="note"/>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue