mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	sort pinned notes by date
This commit is contained in:
		
							parent
							
								
									35114df6d4
								
							
						
					
					
						commit
						c783ccf8cb
					
				
					 1 changed files with 7 additions and 4 deletions
				
			
		| 
						 | 
					@ -156,11 +156,11 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
					</template>
 | 
										</template>
 | 
				
			||||||
					<MkLazy>
 | 
										<MkLazy>
 | 
				
			||||||
						<div v-if="noteview === 'pinned'" class="_gaps">
 | 
											<div v-if="noteview === 'pinned'" class="_gaps">
 | 
				
			||||||
							<div v-if="user.pinnedNotes.length < 1" class="_fullinfo">
 | 
												<div v-if="pinnedNotes.length < 1" class="_fullinfo">
 | 
				
			||||||
								<img :src="infoImageUrl" class="_ghost" aria-hidden="true" :alt="i18n.ts.noNotes"/>
 | 
													<img :src="infoImageUrl" class="_ghost" aria-hidden="true" :alt="i18n.ts.noNotes"/>
 | 
				
			||||||
								<div>{{ i18n.ts.noNotes }}</div>
 | 
													<div>{{ i18n.ts.noNotes }}</div>
 | 
				
			||||||
							</div>
 | 
												</div>
 | 
				
			||||||
							<MkDateSeparatedList v-else v-slot="{ item: note }" :items="user.pinnedNotes" :noGap="true" :ad="true" class="_panel">
 | 
												<MkDateSeparatedList v-else v-slot="{ item: note }" :items="pinnedNotes" :noGap="true" :ad="true" class="_panel">
 | 
				
			||||||
								<MkNote :key="note.id" class="note" :note="note" :pinned="true"/>
 | 
													<MkNote :key="note.id" class="note" :note="note" :pinned="true"/>
 | 
				
			||||||
							</MkDateSeparatedList>
 | 
												</MkDateSeparatedList>
 | 
				
			||||||
						</div>
 | 
											</div>
 | 
				
			||||||
| 
						 | 
					@ -204,8 +204,8 @@ import { misskeyApi } from '@/scripts/misskey-api.js';
 | 
				
			||||||
import { isFollowingVisibleForMe, isFollowersVisibleForMe } from '@/scripts/isFfVisibleForMe.js';
 | 
					import { isFollowingVisibleForMe, isFollowersVisibleForMe } from '@/scripts/isFfVisibleForMe.js';
 | 
				
			||||||
import { useRouter } from '@/router/supplier.js';
 | 
					import { useRouter } from '@/router/supplier.js';
 | 
				
			||||||
import { getStaticImageUrl } from '@/scripts/media-proxy.js';
 | 
					import { getStaticImageUrl } from '@/scripts/media-proxy.js';
 | 
				
			||||||
import { infoImageUrl } from "@/instance.js";
 | 
					import { infoImageUrl } from '@/instance.js';
 | 
				
			||||||
import MkDateSeparatedList from "@/components/MkDateSeparatedList.vue";
 | 
					import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const MkNote = defineAsyncComponent(() =>
 | 
					const MkNote = defineAsyncComponent(() =>
 | 
				
			||||||
	(defaultStore.state.noteDesign === 'misskey') ? import('@/components/MkNote.vue') :
 | 
						(defaultStore.state.noteDesign === 'misskey') ? import('@/components/MkNote.vue') :
 | 
				
			||||||
| 
						 | 
					@ -255,6 +255,9 @@ const moderationNote = ref(props.user.moderationNote);
 | 
				
			||||||
const editModerationNote = ref(false);
 | 
					const editModerationNote = ref(false);
 | 
				
			||||||
const noteview = ref<string | null>(null);
 | 
					const noteview = ref<string | null>(null);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Sort pinned notes by date to match the other columns and ensure that MkDateSeparatedList does not break.
 | 
				
			||||||
 | 
					const pinnedNotes = computed(() => Array.from(user.value.pinnedNotes).sort((a, b) => b.id.localeCompare(a.id)));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const listenbrainzdata = ref(false);
 | 
					const listenbrainzdata = ref(false);
 | 
				
			||||||
if (props.user.listenbrainz) {
 | 
					if (props.user.listenbrainz) {
 | 
				
			||||||
	(async function() {
 | 
						(async function() {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue