mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	select note component in <setup>
this makes our templates much more similar to upstream's, making merges simpler changing note design is already marked as needing a reload, so having non-reactive code that selects the note component is not a problem
This commit is contained in:
		
							parent
							
								
									717696c472
								
							
						
					
					
						commit
						513a8e5de4
					
				
					 5 changed files with 29 additions and 44 deletions
				
			
		| 
						 | 
				
			
			@ -15,7 +15,6 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
	<template #default="{ items: notes }">
 | 
			
		||||
		<div :class="[$style.root, { [$style.noGap]: noGap }]">
 | 
			
		||||
			<MkDateSeparatedList
 | 
			
		||||
				v-if="defaultStore.state.noteDesign === 'misskey'"
 | 
			
		||||
				ref="notes"
 | 
			
		||||
				v-slot="{ item: note }"
 | 
			
		||||
				:items="notes"
 | 
			
		||||
| 
						 | 
				
			
			@ -27,19 +26,6 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
			>
 | 
			
		||||
				<MkNote :key="note._featuredId_ || note._prId_ || note.id" :class="$style.note" :note="note" :withHardMute="true"/>
 | 
			
		||||
			</MkDateSeparatedList>
 | 
			
		||||
			<MkDateSeparatedList
 | 
			
		||||
				v-else-if="defaultStore.state.noteDesign === 'sharkey'"
 | 
			
		||||
				ref="notes" 
 | 
			
		||||
				v-slot="{ item: note }"
 | 
			
		||||
				:items="notes"
 | 
			
		||||
				:direction="pagination.reversed ? 'up' : 'down'"
 | 
			
		||||
				:reversed="pagination.reversed"
 | 
			
		||||
				:noGap="noGap"
 | 
			
		||||
				:ad="true"
 | 
			
		||||
				:class="$style.notes"
 | 
			
		||||
			>
 | 
			
		||||
				<SkNote :key="note._featuredId_ || note._prId_ || note.id" :class="$style.note" :note="note" :withHardMute="true"/>
 | 
			
		||||
			</MkDateSeparatedList>
 | 
			
		||||
		</div>
 | 
			
		||||
	</template>
 | 
			
		||||
</MkPagination>
 | 
			
		||||
| 
						 | 
				
			
			@ -47,14 +33,17 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
 | 
			
		||||
<script lang="ts" setup>
 | 
			
		||||
import { shallowRef, ref } from 'vue';
 | 
			
		||||
import MkNote from '@/components/MkNote.vue';
 | 
			
		||||
import SkNote from '@/components/SkNote.vue';
 | 
			
		||||
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
 | 
			
		||||
import MkPagination, { Paging } from '@/components/MkPagination.vue';
 | 
			
		||||
import { i18n } from '@/i18n.js';
 | 
			
		||||
import { infoImageUrl } from '@/instance.js';
 | 
			
		||||
import { defaultStore } from '@/store.js';
 | 
			
		||||
 | 
			
		||||
const MkNote = (
 | 
			
		||||
	(defaultStore.state.noteDesign === 'misskey') ? (await import('@/components/MkNote.vue')).default :
 | 
			
		||||
	(defaultStore.state.noteDesign === 'sharkey') ? (await import('@/components/SkNote.vue')).default :
 | 
			
		||||
	null);
 | 
			
		||||
 | 
			
		||||
const props = defineProps<{
 | 
			
		||||
	pagination: Paging;
 | 
			
		||||
	noGap?: boolean;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -14,14 +14,10 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
		</template>
 | 
			
		||||
 | 
			
		||||
		<template #default="{ items: notifications }">
 | 
			
		||||
			<MkDateSeparatedList v-if="defaultStore.state.noteDesign === 'misskey'" v-slot="{ item: notification }" :class="$style.list" :items="notifications" :noGap="true">
 | 
			
		||||
			<MkDateSeparatedList v-slot="{ item: notification }" :class="$style.list" :items="notifications" :noGap="true">
 | 
			
		||||
				<MkNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :key="notification.id + ':note'" :note="notification.note" :withHardMute="true"/>
 | 
			
		||||
				<XNotification v-else :key="notification.id" :notification="notification" :withTime="true" :full="true" class="_panel"/>
 | 
			
		||||
			</MkDateSeparatedList>
 | 
			
		||||
			<MkDateSeparatedList v-else-if="defaultStore.state.noteDesign === 'sharkey'" v-slot="{ item: notification }" :class="$style.list" :items="notifications" :noGap="true">
 | 
			
		||||
				<SkNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :key="notification.id + ':note'" :note="notification.note" :withHardMute="true"/>
 | 
			
		||||
				<XNotification v-else :key="notification.id" :notification="notification" :withTime="true" :full="true" class="_panel"/>
 | 
			
		||||
			</MkDateSeparatedList>
 | 
			
		||||
		</template>
 | 
			
		||||
	</MkPagination>
 | 
			
		||||
</MkPullToRefresh>
 | 
			
		||||
| 
						 | 
				
			
			@ -32,8 +28,6 @@ import { onUnmounted, onDeactivated, onMounted, computed, shallowRef, onActivate
 | 
			
		|||
import MkPagination from '@/components/MkPagination.vue';
 | 
			
		||||
import XNotification from '@/components/MkNotification.vue';
 | 
			
		||||
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
 | 
			
		||||
import MkNote from '@/components/MkNote.vue';
 | 
			
		||||
import SkNote from '@/components/SkNote.vue';
 | 
			
		||||
import { useStream } from '@/stream.js';
 | 
			
		||||
import { i18n } from '@/i18n.js';
 | 
			
		||||
import { notificationTypes } from '@/const.js';
 | 
			
		||||
| 
						 | 
				
			
			@ -42,6 +36,11 @@ import { defaultStore } from '@/store.js';
 | 
			
		|||
import MkPullToRefresh from '@/components/MkPullToRefresh.vue';
 | 
			
		||||
import * as Misskey from 'misskey-js';
 | 
			
		||||
 | 
			
		||||
const MkNote = (
 | 
			
		||||
	(defaultStore.state.noteDesign === 'misskey') ? (await import('@/components/MkNote.vue')).default :
 | 
			
		||||
	(defaultStore.state.noteDesign === 'sharkey') ? (await import('@/components/SkNote.vue')).default :
 | 
			
		||||
	null);
 | 
			
		||||
 | 
			
		||||
const props = defineProps<{
 | 
			
		||||
	excludeTypes?: typeof notificationTypes[number][];
 | 
			
		||||
}>();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -16,14 +16,9 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
			</template>
 | 
			
		||||
 | 
			
		||||
			<template #default="{ items }">
 | 
			
		||||
				<MkDateSeparatedList v-if="defaultStore.state.noteDesign === 'misskey'"
 | 
			
		||||
					v-slot="{ item }" :items="items" :direction="'down'" :noGap="false" :ad="false">
 | 
			
		||||
				<MkDateSeparatedList v-slot="{ item }" :items="items" :direction="'down'" :noGap="false" :ad="false">
 | 
			
		||||
					<MkNote :key="item.id" :note="item.note" :class="$style.note"/>
 | 
			
		||||
				</MkDateSeparatedList>
 | 
			
		||||
				<MkDateSeparatedList v-if="defaultStore.state.noteDesign === 'sharkey'"
 | 
			
		||||
					v-slot="{ item }" :items="items" :direction="'down'" :noGap="false" :ad="false">
 | 
			
		||||
					<SkNote :key="item.id" :note="item.note" :class="$style.note"/>
 | 
			
		||||
				</MkDateSeparatedList>
 | 
			
		||||
			</template>
 | 
			
		||||
		</MkPagination>
 | 
			
		||||
	</MkSpacer>
 | 
			
		||||
| 
						 | 
				
			
			@ -32,14 +27,17 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
 | 
			
		||||
<script lang="ts" setup>
 | 
			
		||||
import MkPagination from '@/components/MkPagination.vue';
 | 
			
		||||
import MkNote from '@/components/MkNote.vue';
 | 
			
		||||
import SkNote from '@/components/SkNote.vue';
 | 
			
		||||
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
 | 
			
		||||
import { i18n } from '@/i18n.js';
 | 
			
		||||
import { definePageMetadata } from '@/scripts/page-metadata.js';
 | 
			
		||||
import { infoImageUrl } from '@/instance.js';
 | 
			
		||||
import { defaultStore } from '@/store.js';
 | 
			
		||||
 | 
			
		||||
const MkNote = (
 | 
			
		||||
	(defaultStore.state.noteDesign === 'misskey') ? (await import('@/components/MkNote.vue')).default :
 | 
			
		||||
	(defaultStore.state.noteDesign === 'sharkey') ? (await import('@/components/SkNote.vue')).default :
 | 
			
		||||
	null);
 | 
			
		||||
 | 
			
		||||
const pagination = {
 | 
			
		||||
	endpoint: 'i/favorites' as const,
 | 
			
		||||
	limit: 10,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -19,14 +19,10 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
							<MkButton v-if="note.channelId" rounded :class="$style.loadButton" @click="showNext = 'channel'"><i class="ph-caret-up ph-bold ph-lg"></i> <i class="ph-television-simple ph-bold ph-lg"></i></MkButton>
 | 
			
		||||
							<MkButton rounded :class="$style.loadButton" @click="showNext = 'user'"><i class="ph-caret-up ph-bold ph-lg"></i> <i class="ph-user ph-bold ph-lg"></i></MkButton>
 | 
			
		||||
						</div>
 | 
			
		||||
						<div v-if="defaultStore.state.noteDesign === 'misskey'" class="_margin _gaps_s">
 | 
			
		||||
						<div class="_margin _gaps_s">
 | 
			
		||||
							<MkRemoteCaution v-if="note.user.host != null" :href="note.url ?? note.uri"/>
 | 
			
		||||
							<MkNoteDetailed :key="note.id" v-model:note="note" :initialTab="initialTab" :class="$style.note" :expandAllCws="expandAllCws"/>
 | 
			
		||||
						</div>
 | 
			
		||||
						<div v-else-if="defaultStore.state.noteDesign === 'sharkey'" class="_margin _gaps_s">
 | 
			
		||||
							<MkRemoteCaution v-if="note.user.host != null" :href="note.url ?? note.uri"/>
 | 
			
		||||
							<SkNoteDetailed :key="note.id" v-model:note="note" :initialTab="initialTab" :class="$style.note" :expandAllCws="expandAllCws"/>
 | 
			
		||||
						</div>
 | 
			
		||||
						<div v-if="clips && clips.length > 0" class="_margin">
 | 
			
		||||
							<div style="font-weight: bold; padding: 12px;">{{ i18n.ts.clip }}</div>
 | 
			
		||||
							<div class="_gaps">
 | 
			
		||||
| 
						 | 
				
			
			@ -55,9 +51,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
import { computed, watch, ref } from 'vue';
 | 
			
		||||
import * as Misskey from 'misskey-js';
 | 
			
		||||
import type { Paging } from '@/components/MkPagination.vue';
 | 
			
		||||
import MkNoteDetailed from '@/components/MkNoteDetailed.vue';
 | 
			
		||||
import MkNotes from '@/components/MkNotes.vue';
 | 
			
		||||
import SkNoteDetailed from '@/components/SkNoteDetailed.vue';
 | 
			
		||||
import MkRemoteCaution from '@/components/MkRemoteCaution.vue';
 | 
			
		||||
import MkButton from '@/components/MkButton.vue';
 | 
			
		||||
import { misskeyApi } from '@/scripts/misskey-api.js';
 | 
			
		||||
| 
						 | 
				
			
			@ -67,6 +61,11 @@ import { dateString } from '@/filters/date.js';
 | 
			
		|||
import MkClipPreview from '@/components/MkClipPreview.vue';
 | 
			
		||||
import { defaultStore } from '@/store.js';
 | 
			
		||||
 | 
			
		||||
const MkNoteDetailed = (
 | 
			
		||||
	(defaultStore.state.noteDesign === 'misskey') ? (await import('@/components/MkNoteDetailed.vue')).default :
 | 
			
		||||
	(defaultStore.state.noteDesign === 'sharkey') ? (await import('@/components/SkNoteDetailed.vue')).default :
 | 
			
		||||
	null);
 | 
			
		||||
 | 
			
		||||
const props = defineProps<{
 | 
			
		||||
	noteId: string;
 | 
			
		||||
	initialTab?: string;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -120,12 +120,9 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
			</div>
 | 
			
		||||
 | 
			
		||||
			<div class="contents _gaps">
 | 
			
		||||
				<div v-if="user.pinnedNotes.length > 0 && defaultStore.state.noteDesign === 'misskey'" class="_gaps">
 | 
			
		||||
				<div v-if="user.pinnedNotes.length > 0" class="_gaps">
 | 
			
		||||
					<MkNote v-for="note in user.pinnedNotes" :key="note.id" class="note _panel" :note="note" :pinned="true"/>
 | 
			
		||||
				</div>
 | 
			
		||||
				<div v-else-if="user.pinnedNotes.length > 0 && defaultStore.state.noteDesign === 'sharkey'" class="_gaps">
 | 
			
		||||
					<SkNote v-for="note in user.pinnedNotes" :key="note.id" class="note _panel" :note="note" :pinned="true"/>
 | 
			
		||||
				</div>
 | 
			
		||||
				<MkInfo v-else-if="$i && $i.id === user.id">{{ i18n.ts.userPagePinTip }}</MkInfo>
 | 
			
		||||
				<template v-if="narrow">
 | 
			
		||||
					<MkLazy>
 | 
			
		||||
| 
						 | 
				
			
			@ -171,9 +168,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
import { defineAsyncComponent, computed, onMounted, onUnmounted, nextTick, watch, ref } from 'vue';
 | 
			
		||||
import * as Misskey from 'misskey-js';
 | 
			
		||||
import MkTab from '@/components/MkTab.vue';
 | 
			
		||||
import MkNote from '@/components/MkNote.vue';
 | 
			
		||||
import MkNotes from '@/components/MkNotes.vue';
 | 
			
		||||
import SkNote from '@/components/SkNote.vue';
 | 
			
		||||
import MkFollowButton from '@/components/MkFollowButton.vue';
 | 
			
		||||
import MkAccountMoved from '@/components/MkAccountMoved.vue';
 | 
			
		||||
import MkRemoteCaution from '@/components/MkRemoteCaution.vue';
 | 
			
		||||
| 
						 | 
				
			
			@ -194,6 +189,11 @@ import { misskeyApi } from '@/scripts/misskey-api.js';
 | 
			
		|||
import { isFollowingVisibleForMe, isFollowersVisibleForMe } from '@/scripts/isFfVisibleForMe.js';
 | 
			
		||||
import { useRouter } from '@/router/supplier.js';
 | 
			
		||||
 | 
			
		||||
const MkNote = (
 | 
			
		||||
	(defaultStore.state.noteDesign === 'misskey') ? (await import('@/components/MkNote.vue')).default :
 | 
			
		||||
	(defaultStore.state.noteDesign === 'sharkey') ? (await import('@/components/SkNote.vue')).default :
 | 
			
		||||
	null);
 | 
			
		||||
 | 
			
		||||
function calcAge(birthdate: string): number {
 | 
			
		||||
	const date = new Date(birthdate);
 | 
			
		||||
	const now = new Date();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue