wip
This commit is contained in:
		
							parent
							
								
									bb3e2c123a
								
							
						
					
					
						commit
						d892819a9e
					
				
					 26 changed files with 493 additions and 419 deletions
				
			
		|  | @ -1,5 +1,5 @@ | |||
| <template> | ||||
| <div class="fdidabkb" :class="{ slim: narrow, thin }" :style="{ background: bg }"> | ||||
| <div class="fdidabkb" :class="{ slim: narrow, thin }" :style="{ background: bg }" @click="onClick"> | ||||
| 	<template v-if="info"> | ||||
| 		<div class="titleContainer" @click="showTabsPopup"> | ||||
| 			<i v-if="info.icon" class="icon" :class="info.icon"></i> | ||||
|  | @ -35,9 +35,10 @@ | |||
| 
 | ||||
| <script lang="ts"> | ||||
| import { defineComponent } from 'vue'; | ||||
| import * as tinycolor from 'tinycolor2'; | ||||
| import { popupMenu } from '@client/os'; | ||||
| import { url } from '@client/config'; | ||||
| import * as tinycolor from 'tinycolor2'; | ||||
| import { scrollToTop } from '@client/scripts/scroll'; | ||||
| 
 | ||||
| export default defineComponent({ | ||||
| 	props: { | ||||
|  | @ -77,7 +78,7 @@ export default defineComponent({ | |||
| 	}, | ||||
| 
 | ||||
| 	mounted() { | ||||
| 		const rawBg = this.info.bg || 'var(--bg)'; | ||||
| 		const rawBg = this.info?.bg || 'var(--bg)'; | ||||
| 		const bg = tinycolor(rawBg.startsWith('var(') ? getComputedStyle(document.documentElement).getPropertyValue(rawBg.slice(4, -1)) : rawBg); | ||||
| 		bg.setAlpha(0.85); | ||||
| 		this.bg = bg.toRgbString(); | ||||
|  | @ -136,6 +137,10 @@ export default defineComponent({ | |||
| 
 | ||||
| 		preventDrag(ev) { | ||||
| 			ev.stopPropagation(); | ||||
| 		}, | ||||
| 
 | ||||
| 		onClick(ev) { | ||||
| 			scrollToTop(this.$el, { behavior: 'smooth' }); | ||||
| 		} | ||||
| 	} | ||||
| }); | ||||
|  | @ -146,7 +151,7 @@ export default defineComponent({ | |||
| 	--height: 60px; | ||||
| 	display: flex; | ||||
| 	position: sticky; | ||||
| 	top: 0; | ||||
| 	top: var(--stickyTop, 0); | ||||
| 	z-index: 1000; | ||||
| 	width: 100%; | ||||
| 	-webkit-backdrop-filter: var(--blur, blur(15px)); | ||||
|  |  | |||
|  | @ -11,7 +11,6 @@ | |||
| 			<button class="_button" @click="$refs.modal.close()"><i class="fas fa-times"></i></button> | ||||
| 		</div> | ||||
| 		<div class="body _flat_"> | ||||
| 			<MkHeader v-if="!pageInfo?.hide" :info="pageInfo"/> | ||||
| 			<keep-alive> | ||||
| 				<component :is="component" v-bind="props" :ref="changePage"/> | ||||
| 			</keep-alive> | ||||
|  |  | |||
|  | @ -9,14 +9,14 @@ | |||
| > | ||||
| 	<template #header> | ||||
| 		<template v-if="pageInfo"> | ||||
| 			{{ pageInfo.title }} | ||||
| 			<i v-if="pageInfo.icon" class="icon" :class="pageInfo.icon" style="margin-right: 0.5em;"></i> | ||||
| 			<span>{{ pageInfo.title }}</span> | ||||
| 		</template> | ||||
| 	</template> | ||||
| 	<template #headerLeft> | ||||
| 		<button v-if="history.length > 0" class="_button" @click="back()"><i class="fas fa-arrow-left"></i></button> | ||||
| 	</template> | ||||
| 	<div class="yrolvcoq _flat_"> | ||||
| 		<MkHeader :info="pageInfo"/> | ||||
| 		<component :is="component" v-bind="props" :ref="changePage"/> | ||||
| 	</div> | ||||
| </XWindow> | ||||
|  |  | |||
|  | @ -1,4 +1,6 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="_section"> | ||||
| 		<MkPagination :pagination="pagination" #default="{items}" class="ruryvtyk _content"> | ||||
| 			<section class="_card announcement _gap" v-for="(announcement, i) in items" :key="announcement.id"> | ||||
|  | @ -13,6 +15,7 @@ | |||
| 			</section> | ||||
| 		</MkPagination> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -35,6 +38,11 @@ export default defineComponent({ | |||
| 				icon: 'fas fa-broadcast-tower', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.announcements, | ||||
| 				icon: 'fas fa-broadcast-tower', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			pagination: { | ||||
| 				endpoint: 'announcements', | ||||
| 				limit: 10, | ||||
|  |  | |||
|  | @ -89,7 +89,7 @@ export default defineComponent({ | |||
| 		}, | ||||
| 
 | ||||
| 		top() { | ||||
| 			scroll(this.$el, 0); | ||||
| 			scroll(this.$el, { top: 0 }); | ||||
| 		}, | ||||
| 
 | ||||
| 		async timetravel() { | ||||
|  |  | |||
|  | @ -1,7 +1,10 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div :class="$style.root"> | ||||
| 		<XCategory v-if="tab === 'category'"/> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -22,6 +25,11 @@ export default defineComponent({ | |||
| 				icon: 'fas fa-laugh', | ||||
| 				bg: 'var(--bg)', | ||||
| 			})), | ||||
| 			header: computed(() => ({ | ||||
| 				title: this.$ts.customEmojis, | ||||
| 				icon: 'fas fa-laugh', | ||||
| 				bg: 'var(--bg)', | ||||
| 			})), | ||||
| 			tab: 'category', | ||||
| 		} | ||||
| 	}, | ||||
|  |  | |||
|  | @ -1,9 +1,12 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="jmelgwjh"> | ||||
| 		<div class="body"> | ||||
| 			<XNotes class="notes" :pagination="pagination" :detail="true" :prop="'note'" @before="before()" @after="after()"/> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -25,6 +28,11 @@ export default defineComponent({ | |||
| 				icon: 'fas fa-star', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.favorites, | ||||
| 				icon: 'fas fa-star', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			pagination: { | ||||
| 				endpoint: 'i/favorites', | ||||
| 				limit: 10, | ||||
|  |  | |||
|  | @ -1,7 +1,10 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="_section"> | ||||
| 		<XNotes class="_content" ref="notes" :pagination="pagination" @before="before" @after="after"/> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -19,12 +22,18 @@ export default defineComponent({ | |||
| 		return { | ||||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: this.$ts.featured, | ||||
| 				icon: 'fas fa-fire-alt' | ||||
| 				icon: 'fas fa-fire-alt', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.featured, | ||||
| 				icon: 'fas fa-fire-alt', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			pagination: { | ||||
| 				endpoint: 'notes/featured', | ||||
| 				limit: 10, | ||||
| 				offsetMode: true | ||||
| 				offsetMode: true, | ||||
| 			}, | ||||
| 		}; | ||||
| 	}, | ||||
|  |  | |||
|  | @ -1,4 +1,6 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="taeiyria"> | ||||
| 		<div class="query"> | ||||
| 			<MkInput v-model="host" :debounce="true" class=""> | ||||
|  | @ -91,6 +93,7 @@ | |||
| 			</div> | ||||
| 		</MkPagination> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -119,6 +122,11 @@ export default defineComponent({ | |||
| 				icon: 'fas fa-globe', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.federation, | ||||
| 				icon: 'fas fa-globe', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			host: '', | ||||
| 			state: 'federating', | ||||
| 			sort: '+pubSub', | ||||
|  |  | |||
|  | @ -127,7 +127,7 @@ export default defineComponent({ | |||
| 			pageProps.value = {}; | ||||
| 
 | ||||
| 			nextTick(() => { | ||||
| 				scroll(el.value, 0); | ||||
| 				scroll(el.value, { top: 0 }); | ||||
| 			}); | ||||
| 		}, { immediate: true }); | ||||
| 
 | ||||
|  |  | |||
|  | @ -1,7 +1,10 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="_section"> | ||||
| 		<XNotes class="_content" :pagination="pagination" @before="before()" @after="after()"/> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -19,7 +22,13 @@ export default defineComponent({ | |||
| 		return { | ||||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: this.$ts.mentions, | ||||
| 				icon: 'fas fa-at' | ||||
| 				icon: 'fas fa-at', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.mentions, | ||||
| 				icon: 'fas fa-at', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			pagination: { | ||||
| 				endpoint: 'notes/mentions', | ||||
|  |  | |||
|  | @ -1,7 +1,10 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div> | ||||
| 		<XNotes :pagination="pagination" @before="before()" @after="after()"/> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -19,7 +22,13 @@ export default defineComponent({ | |||
| 		return { | ||||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: this.$ts.directNotes, | ||||
| 				icon: 'fas fa-envelope' | ||||
| 				icon: 'fas fa-envelope', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.directNotes, | ||||
| 				icon: 'fas fa-envelope', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			pagination: { | ||||
| 				endpoint: 'notes/mentions', | ||||
|  |  | |||
|  | @ -1,4 +1,7 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 
 | ||||
| 	<div class="yweeujhr _root" v-size="{ max: [400] }"> | ||||
| 		<MkButton @click="start" primary class="start"><i class="fas fa-plus"></i> {{ $ts.startMessaging }}</MkButton> | ||||
| 
 | ||||
|  | @ -34,6 +37,7 @@ | |||
| 		</div> | ||||
| 		<MkLoading v-if="fetching"/> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -56,6 +60,11 @@ export default defineComponent({ | |||
| 				icon: 'fas fa-comments', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.messaging, | ||||
| 				icon: 'fas fa-comments', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			fetching: true, | ||||
| 			moreFetching: false, | ||||
| 			messages: [], | ||||
|  |  | |||
|  | @ -284,7 +284,7 @@ const Component = defineComponent({ | |||
| 		}, | ||||
| 
 | ||||
| 		scrollToBottom() { | ||||
| 			scroll(this.$el, this.$el.offsetHeight); | ||||
| 			scroll(this.$el, { top: this.$el.offsetHeight }); | ||||
| 		}, | ||||
| 
 | ||||
| 		onIndicatorClick() { | ||||
|  |  | |||
|  | @ -1,4 +1,6 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="qkcjvfiv"> | ||||
| 		<MkButton @click="create" primary class="add"><i class="fas fa-plus"></i> {{ $ts.createList }}</MkButton> | ||||
| 
 | ||||
|  | @ -9,6 +11,7 @@ | |||
| 			</MkA> | ||||
| 		</MkPagination> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -31,6 +34,12 @@ export default defineComponent({ | |||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: this.$ts.manageLists, | ||||
| 				icon: 'fas fa-list-ul', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.manageLists, | ||||
| 				icon: 'fas fa-list-ul', | ||||
| 				bg: 'var(--bg)', | ||||
| 				action: { | ||||
| 					icon: 'fas fa-plus', | ||||
| 					handler: this.create | ||||
|  |  | |||
|  | @ -1,4 +1,6 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader v-if="header" :info="header"/> | ||||
| 	<div class="mk-list-page"> | ||||
| 		<transition name="zoom" mode="out-in"> | ||||
| 			<div v-if="list" class="_section"> | ||||
|  | @ -30,6 +32,7 @@ | |||
| 			</div> | ||||
| 		</transition> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -50,6 +53,10 @@ export default defineComponent({ | |||
| 				title: this.list.name, | ||||
| 				icon: 'fas fa-list-ul', | ||||
| 			} : null), | ||||
| 			header: computed(() => this.list ? { | ||||
| 				title: this.list.name, | ||||
| 				icon: 'fas fa-list-ul', | ||||
| 			} : null), | ||||
| 			list: null, | ||||
| 			users: [], | ||||
| 		}; | ||||
|  |  | |||
|  | @ -1,5 +1,8 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 
 | ||||
| 	<!-- TODO: MkHeaderに統合 --> | ||||
| 	<MkTab v-model="tab" v-if="$i"> | ||||
| 		<option value="featured"><i class="fas fa-fire-alt"></i> {{ $ts._pages.featured }}</option> | ||||
| 		<option value="my"><i class="fas fa-edit"></i> {{ $ts._pages.my }}</option> | ||||
|  | @ -46,11 +49,17 @@ export default defineComponent({ | |||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: this.$ts.pages, | ||||
| 				icon: 'fas fa-sticky-note', | ||||
| 				bg: 'var(--bg)', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: this.$ts.pages, | ||||
| 				icon: 'fas fa-sticky-note', | ||||
| 				bg: 'var(--bg)', | ||||
| 				actions: [{ | ||||
| 					icon: 'fas fa-plus', | ||||
| 					text: this.$ts.create, | ||||
| 					handler: this.create | ||||
| 				}] | ||||
| 					handler: this.create, | ||||
| 				}], | ||||
| 			}, | ||||
| 			tab: 'featured', | ||||
| 			featuredPagesPagination: { | ||||
|  |  | |||
|  | @ -1,9 +1,12 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<div class="_section"> | ||||
| 		<div class="_content"> | ||||
| 			<XNotes ref="notes" :pagination="pagination" @before="before" @after="after"/> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -21,7 +24,11 @@ export default defineComponent({ | |||
| 		return { | ||||
| 			[symbols.PAGE_INFO]: { | ||||
| 				title: computed(() => this.$t('searchWith', { q: this.$route.query.q })), | ||||
| 				icon: 'fas fa-search' | ||||
| 				icon: 'fas fa-search', | ||||
| 			}, | ||||
| 			header: { | ||||
| 				title: computed(() => this.$t('searchWith', { q: this.$route.query.q })), | ||||
| 				icon: 'fas fa-search', | ||||
| 			}, | ||||
| 			pagination: { | ||||
| 				endpoint: 'notes/search', | ||||
|  |  | |||
|  | @ -143,7 +143,7 @@ export default defineComponent({ | |||
| 			} | ||||
| 
 | ||||
| 			nextTick(() => { | ||||
| 				scroll(el.value, 0); | ||||
| 				scroll(el.value, { top: 0 }); | ||||
| 			}); | ||||
| 		}, { immediate: true }); | ||||
| 
 | ||||
|  |  | |||
|  | @ -137,7 +137,7 @@ export default defineComponent({ | |||
| 		}, | ||||
| 
 | ||||
| 		top() { | ||||
| 			scroll(this.$el, 0); | ||||
| 			scroll(this.$el, { top: 0 }); | ||||
| 		}, | ||||
| 
 | ||||
| 		async chooseList(ev) { | ||||
|  |  | |||
|  | @ -89,7 +89,7 @@ export default defineComponent({ | |||
| 		}, | ||||
| 
 | ||||
| 		top() { | ||||
| 			scroll(this.$el, 0); | ||||
| 			scroll(this.$el, { top: 0 }); | ||||
| 		}, | ||||
| 
 | ||||
| 		settings() { | ||||
|  |  | |||
|  | @ -1,4 +1,6 @@ | |||
| <template> | ||||
| <div> | ||||
| 	<MkHeader :info="header"/> | ||||
| 	<transition name="fade" mode="out-in"> | ||||
| 		<div class="ftskorzw wide" v-if="user && narrow === false"> | ||||
| 			<MkRemoteCaution v-if="user.host != null" :href="user.url"/> | ||||
|  | @ -187,6 +189,7 @@ | |||
| 		<MkError v-else-if="error" @retry="fetch()"/> | ||||
| 		<MkLoading v-else/> | ||||
| 	</transition> | ||||
| </div> | ||||
| </template> | ||||
| 
 | ||||
| <script lang="ts"> | ||||
|  | @ -242,6 +245,15 @@ export default defineComponent({ | |||
| 	data() { | ||||
| 		return { | ||||
| 			[symbols.PAGE_INFO]: computed(() => this.user ? { | ||||
| 				icon: 'fas fa-user', | ||||
| 				title: this.user.name ? `${this.user.name} (@${this.user.username})` : `@${this.user.username}`, | ||||
| 				path: `/@${this.user.username}`, | ||||
| 				share: { | ||||
| 					title: this.user.name, | ||||
| 				}, | ||||
| 				bg: 'var(--bg)', | ||||
| 			} : null), | ||||
| 			header: computed(() => this.user ? { | ||||
| 				title: this.user.name ? `${this.user.name} (@${this.user.username})` : `@${this.user.username}`, | ||||
| 				subtitle: `@${getAcct(this.user)}`, | ||||
| 				userName: this.user, | ||||
|  |  | |||
|  | @ -1,3 +1,5 @@ | |||
| type ScrollBehavior = 'auto' | 'smooth' | 'instant'; | ||||
| 
 | ||||
| export function getScrollContainer(el: Element | null): Element | null { | ||||
| 	if (el == null || el.tagName === 'BODY') return null; | ||||
| 	const overflow = window.getComputedStyle(el).getPropertyValue('overflow'); | ||||
|  | @ -45,21 +47,25 @@ export function onScrollBottom(el: Element, cb) { | |||
| 	container.addEventListener('scroll', onScroll, { passive: true }); | ||||
| } | ||||
| 
 | ||||
| export function scroll(el: Element, top: number) { | ||||
| export function scroll(el: Element, options: { | ||||
| 	top?: number; | ||||
| 	left?: number; | ||||
| 	behavior?: ScrollBehavior; | ||||
| }) { | ||||
| 	const container = getScrollContainer(el); | ||||
| 	if (container == null) { | ||||
| 		window.scroll({ top: top, behavior: 'instant' }); | ||||
| 		window.scroll(options); | ||||
| 	} else { | ||||
| 		container.scrollTop = top; | ||||
| 		container.scroll(options); | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| export function scrollToTop(el: Element) { | ||||
| 	scroll(el, 0); | ||||
| export function scrollToTop(el: Element, options: { behavior?: ScrollBehavior; } = {}) { | ||||
| 	scroll(el, { top: 0, ...options }); | ||||
| } | ||||
| 
 | ||||
| export function scrollToBottom(el: Element) { | ||||
| 	scroll(el, 99999); // TODO: ちゃんと計算する
 | ||||
| export function scrollToBottom(el: Element, options: { behavior?: ScrollBehavior; } = {}) { | ||||
| 	scroll(el, { top: 99999, ...options }); // TODO: ちゃんと計算する
 | ||||
| } | ||||
| 
 | ||||
| export function isBottom(el: Element, asobi = 0) { | ||||
|  |  | |||
|  | @ -6,7 +6,6 @@ | |||
| 		</template> | ||||
| 	</template> | ||||
| 
 | ||||
| 	<MkHeader :info="pageInfo"/> | ||||
| 	<router-view v-slot="{ Component }" class="_flat_"> | ||||
| 		<transition> | ||||
| 			<keep-alive :include="['timeline']"> | ||||
|  |  | |||
|  | @ -1,6 +1,6 @@ | |||
| <template> | ||||
| <div class="mk-app" :class="{ wallpaper, isMobile }" :style="`--headerHeight:` + headerHeight + 'px'"> | ||||
| 	<XHeaderMenu v-if="showMenuOnTop"/> | ||||
| <div class="mk-app" :class="{ wallpaper, isMobile }" :style="`--globalHeaderHeight:${globalHeaderHeight}px`"> | ||||
| 	<XHeaderMenu v-if="showMenuOnTop" v-get-size="(w, h) => globalHeaderHeight = h"/> | ||||
| 
 | ||||
| 	<div class="columns" :class="{ fullView, withGlobalHeader: showMenuOnTop }"> | ||||
| 		<template v-if="!isMobile"> | ||||
|  | @ -13,9 +13,6 @@ | |||
| 		</template> | ||||
| 
 | ||||
| 		<main class="main" @contextmenu.stop="onContextmenu" :style="{ background: pageInfo?.bg }"> | ||||
| 			<header class="header" @click="onHeaderClick"> | ||||
| 				<MkHeader :info="pageInfo" v-get-size="(w, h) => headerHeight = h" :thin="true"/> | ||||
| 			</header> | ||||
| 			<div class="content" :class="{ _flat_: !fullView }"> | ||||
| 				<router-view v-slot="{ Component }"> | ||||
| 					<transition :name="$store.state.animation ? 'page' : ''" mode="out-in" @enter="onTransition"> | ||||
|  | @ -86,8 +83,8 @@ export default defineComponent({ | |||
| 	data() { | ||||
| 		return { | ||||
| 			pageInfo: null, | ||||
| 			headerHeight: 0, | ||||
| 			menuDef: menuDef, | ||||
| 			globalHeaderHeight: 0, | ||||
| 			isMobile: window.innerWidth <= MOBILE_THRESHOLD, | ||||
| 			isDesktop: window.innerWidth >= DESKTOP_THRESHOLD, | ||||
| 			widgetsShowing: false, | ||||
|  | @ -192,10 +189,6 @@ export default defineComponent({ | |||
| 			if (window._scroll) window._scroll(); | ||||
| 		}, | ||||
| 
 | ||||
| 		onHeaderClick() { | ||||
| 			window.scroll({ top: 0, behavior: 'smooth' }); | ||||
| 		}, | ||||
| 
 | ||||
| 		onContextmenu(e) { | ||||
| 			const isLink = (el: HTMLElement) => { | ||||
| 				if (el.tagName === 'A') return true; | ||||
|  | @ -280,10 +273,6 @@ export default defineComponent({ | |||
| 				border: none; | ||||
| 				width: 100%; | ||||
| 				border-radius: 0; | ||||
| 
 | ||||
| 				> .header { | ||||
| 					width: 100%; | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
|  | @ -323,29 +312,6 @@ export default defineComponent({ | |||
| 			border-radius: 0; | ||||
| 			overflow: clip; | ||||
| 			--margin: 12px; | ||||
| 
 | ||||
| 			> .header { | ||||
| 				position: sticky; | ||||
| 				z-index: 1000; | ||||
| 				top: var(--globalHeaderHeight, 0px); | ||||
| 				-webkit-backdrop-filter: var(--blur, blur(32px)); | ||||
| 				backdrop-filter: var(--blur, blur(32px)); | ||||
| 				background-color: var(--header); | ||||
| 				border-bottom: solid 0.5px var(--divider); | ||||
| 			} | ||||
| 
 | ||||
| 			> .content { | ||||
| 				--stickyTop: calc(var(--globalHeaderHeight, 0px) + var(--headerHeight)); | ||||
| 			} | ||||
| 
 | ||||
| 			@media (max-width: 850px) { | ||||
| 				padding-top: var(--headerHeight); | ||||
| 
 | ||||
| 				> .header { | ||||
| 					position: fixed; | ||||
| 					width: calc(100% - #{$nav-icon-only-width}); | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 
 | ||||
| 		> .widgets { | ||||
|  | @ -367,12 +333,11 @@ export default defineComponent({ | |||
| 		} | ||||
| 
 | ||||
| 		&.withGlobalHeader { | ||||
| 			--globalHeaderHeight: 60px; // TODO: 60pxと決め打ちしているのを直す | ||||
| 
 | ||||
| 			> .main { | ||||
| 				margin-top: 0; | ||||
| 				border: solid 1px var(--divider); | ||||
| 				border-radius: var(--radius); | ||||
| 				--stickyTop: var(--globalHeaderHeight); | ||||
| 			} | ||||
| 
 | ||||
| 			> .widgets { | ||||
|  |  | |||
|  | @ -252,18 +252,6 @@ export default defineComponent({ | |||
| 		min-width: 0; | ||||
| 		background: var(--panel); | ||||
| 
 | ||||
| 		> .header { | ||||
| 			position: fixed; | ||||
| 			z-index: 1000; | ||||
| 			top: 0; | ||||
| 			//background-color: var(--panel); | ||||
| 			-webkit-backdrop-filter: var(--blur, blur(32px)); | ||||
| 			backdrop-filter: var(--blur, blur(32px)); | ||||
| 			background-color: var(--header); | ||||
| 			border-bottom: solid 0.5px var(--divider); | ||||
| 			user-select: none; | ||||
| 		} | ||||
| 
 | ||||
| 		> main { | ||||
| 			min-width: 0; | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue