wip
This commit is contained in:
		
							parent
							
								
									5e9fb8bd84
								
							
						
					
					
						commit
						03ce87d710
					
				
					 31 changed files with 39 additions and 39 deletions
				
			
		| 
						 | 
				
			
			@ -2,7 +2,7 @@
 | 
			
		|||
<div class="form">
 | 
			
		||||
	<header>
 | 
			
		||||
		<h1><i>{{ app.name }}</i>があなたのアカウントにアクセスすることを<b>許可</b>しますか?</h1>
 | 
			
		||||
		<img :src="`${app.iconUrl}?thumbnail&size=64`"/>
 | 
			
		||||
		<img :src="app.iconUrl"/>
 | 
			
		||||
	</header>
 | 
			
		||||
	<div class="app">
 | 
			
		||||
		<section>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -17,21 +17,21 @@ export default function(type, data): Notification {
 | 
			
		|||
			return {
 | 
			
		||||
				title: 'ファイルがアップロードされました',
 | 
			
		||||
				body: data.name,
 | 
			
		||||
				icon: data.url + '?thumbnail&size=64'
 | 
			
		||||
				icon: data.url
 | 
			
		||||
			};
 | 
			
		||||
 | 
			
		||||
		case 'unread_messaging_message':
 | 
			
		||||
			return {
 | 
			
		||||
				title: `${getUserName(data.user)}さんからメッセージ:`,
 | 
			
		||||
				body: data.text, // TODO: getMessagingMessageSummary(data),
 | 
			
		||||
				icon: data.user.avatarUrl + '?thumbnail&size=64'
 | 
			
		||||
				icon: data.user.avatarUrl
 | 
			
		||||
			};
 | 
			
		||||
 | 
			
		||||
		case 'reversi_invited':
 | 
			
		||||
			return {
 | 
			
		||||
				title: '対局への招待があります',
 | 
			
		||||
				body: `${getUserName(data.parent)}さんから`,
 | 
			
		||||
				icon: data.parent.avatarUrl + '?thumbnail&size=64'
 | 
			
		||||
				icon: data.parent.avatarUrl
 | 
			
		||||
			};
 | 
			
		||||
 | 
			
		||||
		case 'notification':
 | 
			
		||||
| 
						 | 
				
			
			@ -40,28 +40,28 @@ export default function(type, data): Notification {
 | 
			
		|||
					return {
 | 
			
		||||
						title: `${getUserName(data.user)}さんから:`,
 | 
			
		||||
						body: getNoteSummary(data),
 | 
			
		||||
						icon: data.user.avatarUrl + '?thumbnail&size=64'
 | 
			
		||||
						icon: data.user.avatarUrl
 | 
			
		||||
					};
 | 
			
		||||
 | 
			
		||||
				case 'reply':
 | 
			
		||||
					return {
 | 
			
		||||
						title: `${getUserName(data.user)}さんから返信:`,
 | 
			
		||||
						body: getNoteSummary(data),
 | 
			
		||||
						icon: data.user.avatarUrl + '?thumbnail&size=64'
 | 
			
		||||
						icon: data.user.avatarUrl
 | 
			
		||||
					};
 | 
			
		||||
 | 
			
		||||
				case 'quote':
 | 
			
		||||
					return {
 | 
			
		||||
						title: `${getUserName(data.user)}さんが引用:`,
 | 
			
		||||
						body: getNoteSummary(data),
 | 
			
		||||
						icon: data.user.avatarUrl + '?thumbnail&size=64'
 | 
			
		||||
						icon: data.user.avatarUrl
 | 
			
		||||
					};
 | 
			
		||||
 | 
			
		||||
				case 'reaction':
 | 
			
		||||
					return {
 | 
			
		||||
						title: `${getUserName(data.user)}: ${getReactionEmoji(data.reaction)}:`,
 | 
			
		||||
						body: getNoteSummary(data.note),
 | 
			
		||||
						icon: data.user.avatarUrl + '?thumbnail&size=64'
 | 
			
		||||
						icon: data.user.avatarUrl
 | 
			
		||||
					};
 | 
			
		||||
 | 
			
		||||
				default:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,7 @@
 | 
			
		|||
<div class="mk-autocomplete" @contextmenu.prevent="() => {}">
 | 
			
		||||
	<ol class="users" ref="suggests" v-if="users.length > 0">
 | 
			
		||||
		<li v-for="user in users" @click="complete(type, user)" @keydown="onKeydown" tabindex="-1">
 | 
			
		||||
			<img class="avatar" :src="`${user.avatarUrl}?thumbnail&size=32`" alt=""/>
 | 
			
		||||
			<img class="avatar" :src="user.avatarUrl" alt=""/>
 | 
			
		||||
			<span class="name">{{ user | userName }}</span>
 | 
			
		||||
			<span class="username">@{{ user | acct }}</span>
 | 
			
		||||
		</li>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -31,7 +31,7 @@ export default Vue.extend({
 | 
			
		|||
					: this.user.avatarColor && this.user.avatarColor.length == 3
 | 
			
		||||
						? `rgb(${ this.user.avatarColor.join(',') })`
 | 
			
		||||
						: null,
 | 
			
		||||
				backgroundImage: this.lightmode ? null : `url(${ this.user.avatarUrl }?thumbnail)`,
 | 
			
		||||
				backgroundImage: this.lightmode ? null : `url(${ this.user.avatarUrl })`,
 | 
			
		||||
				borderRadius: this.$store.state.settings.circleIcons ? '100%' : null
 | 
			
		||||
			};
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -26,8 +26,8 @@
 | 
			
		|||
						:class="{ empty: stone == null, none: o.map[i] == 'null', isEnded: game.isEnded, myTurn: !game.isEnded && isMyTurn, can: turnUser ? o.canPut(turnUser.id == blackUser.id, i) : null, prev: o.prevPos == i }"
 | 
			
		||||
						@click="set(i)"
 | 
			
		||||
						:title="`${String.fromCharCode(65 + o.transformPosToXy(i)[0])}${o.transformPosToXy(i)[1] + 1}`">
 | 
			
		||||
					<img v-if="stone === true" :src="`${blackUser.avatarUrl}?thumbnail&size=128`" alt="">
 | 
			
		||||
					<img v-if="stone === false" :src="`${whiteUser.avatarUrl}?thumbnail&size=128`" alt="">
 | 
			
		||||
					<img v-if="stone === true" :src="blackUser.avatarUrl" alt="">
 | 
			
		||||
					<img v-if="stone === false" :src="whiteUser.avatarUrl" alt="">
 | 
			
		||||
				</div>
 | 
			
		||||
			</div>
 | 
			
		||||
			<div class="labels-y" v-if="this.$store.state.settings.reversiBoardLabels">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,7 +5,7 @@
 | 
			
		|||
 | 
			
		||||
		<p :class="$style.fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
 | 
			
		||||
		<div :class="$style.stream" v-if="!fetching && images.length > 0">
 | 
			
		||||
			<div v-for="image in images" :class="$style.img" :style="`background-image: url(${image.url}?thumbnail&size=256)`"></div>
 | 
			
		||||
			<div v-for="image in images" :class="$style.img" :style="`background-image: url(${image.url})`"></div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<p :class="$style.empty" v-if="!fetching && images.length == 0">%i18n:@no-photos%</p>
 | 
			
		||||
	</mk-widget-container>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -72,7 +72,7 @@ export default define({
 | 
			
		|||
			if (this.images.length == 0) return;
 | 
			
		||||
 | 
			
		||||
			const index = Math.floor(Math.random() * this.images.length);
 | 
			
		||||
			const img = `url(${ this.images[index].url }?thumbnail&size=1024)`;
 | 
			
		||||
			const img = `url(${ this.images[index].url })`;
 | 
			
		||||
 | 
			
		||||
			(this.$refs.slideB as any).style.backgroundImage = img;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -16,7 +16,7 @@
 | 
			
		|||
		<p>%i18n:@banner%</p>
 | 
			
		||||
	</div>
 | 
			
		||||
	<div class="thumbnail" ref="thumbnail" :style="`background-color: ${ background }`">
 | 
			
		||||
		<img :src="`${file.url}?thumbnail&size=128`" alt="" @load="onThumbnailLoaded"/>
 | 
			
		||||
		<img :src="file.url" alt="" @load="onThumbnailLoaded"/>
 | 
			
		||||
	</div>
 | 
			
		||||
	<p class="name">
 | 
			
		||||
		<span>{{ file.name.lastIndexOf('.') != -1 ? file.name.substr(0, file.name.lastIndexOf('.')) : file.name }}</span>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
<template>
 | 
			
		||||
<mk-window width="400px" height="550px" @closed="$destroy">
 | 
			
		||||
	<span slot="header" :class="$style.header">
 | 
			
		||||
		<img :src="`${user.avatarUrl}?thumbnail&size=64`" alt=""/>{{ '%i18n:@followers%'.replace('{}', name) }}
 | 
			
		||||
		<img :src="user.avatarUrl" alt=""/>{{ '%i18n:@followers%'.replace('{}', name) }}
 | 
			
		||||
	</span>
 | 
			
		||||
	<mk-followers :user="user"/>
 | 
			
		||||
</mk-window>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
<template>
 | 
			
		||||
<mk-window width="400px" height="550px" @closed="$destroy">
 | 
			
		||||
	<span slot="header" :class="$style.header">
 | 
			
		||||
		<img :src="`${user.avatarUrl}?thumbnail&size=64`" alt=""/>{{ '%i18n:@following%'.replace('{}', name) }}
 | 
			
		||||
		<img :src="user.avatarUrl" alt=""/>{{ '%i18n:@following%'.replace('{}', name) }}
 | 
			
		||||
	</span>
 | 
			
		||||
	<mk-following :user="user"/>
 | 
			
		||||
</mk-window>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -37,7 +37,7 @@ export default Vue.extend({
 | 
			
		|||
		style(): any {
 | 
			
		||||
			return {
 | 
			
		||||
				'background-color': this.image.properties.avgColor && this.image.properties.avgColor.length == 3 ? `rgb(${this.image.properties.avgColor.join(',')})` : 'transparent',
 | 
			
		||||
				'background-image': this.raw ? `url(${this.image.url})` : `url(${this.image.url}?thumbnail&size=512)`
 | 
			
		||||
				'background-image': this.raw ? `url(${this.image.url})` : `url(${this.image.url})`
 | 
			
		||||
			};
 | 
			
		||||
		}
 | 
			
		||||
	},
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -45,7 +45,7 @@ export default Vue.extend({
 | 
			
		|||
	computed: {
 | 
			
		||||
		imageStyle(): any {
 | 
			
		||||
			return {
 | 
			
		||||
				'background-image': `url(${this.video.url}?thumbnail&size=512)`
 | 
			
		||||
				'background-image': `url(${this.video.url})`
 | 
			
		||||
			};
 | 
			
		||||
		}
 | 
			
		||||
	},
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,7 +23,7 @@
 | 
			
		|||
		<div class="medias" :class="{ with: poll }" v-show="files.length != 0">
 | 
			
		||||
			<x-draggable :list="files" :options="{ animation: 150 }">
 | 
			
		||||
				<div v-for="file in files" :key="file.id">
 | 
			
		||||
					<div class="img" :style="{ backgroundImage: `url(${file.url}?thumbnail&size=64)` }" :title="file.name"></div>
 | 
			
		||||
					<div class="img" :style="{ backgroundImage: `url(${file.url})` }" :title="file.name"></div>
 | 
			
		||||
					<img class="remove" @click="detachMedia(file.id)" src="/assets/desktop/remove.png" title="%i18n:@attach-cancel%" alt=""/>
 | 
			
		||||
				</div>
 | 
			
		||||
			</x-draggable>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,7 @@
 | 
			
		|||
<div class="profile">
 | 
			
		||||
	<label class="avatar ui from group">
 | 
			
		||||
		<p>%i18n:@avatar%</p>
 | 
			
		||||
		<img class="avatar" :src="`${$store.state.i.avatarUrl}?thumbnail&size=64`" alt="avatar"/>
 | 
			
		||||
		<img class="avatar" :src="$store.state.i.avatarUrl" alt="avatar"/>
 | 
			
		||||
		<button class="ui" @click="updateAvatar">%i18n:@choice-avatar%</button>
 | 
			
		||||
	</label>
 | 
			
		||||
	<label class="ui from group">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
<template>
 | 
			
		||||
<div class="mk-user-preview">
 | 
			
		||||
	<template v-if="u != null">
 | 
			
		||||
		<div class="banner" :style="u.bannerUrl ? `background-image: url(${u.bannerUrl}?thumbnail&size=512)` : ''"></div>
 | 
			
		||||
		<div class="banner" :style="u.bannerUrl ? `background-image: url(${u.bannerUrl})` : ''"></div>
 | 
			
		||||
		<mk-avatar class="avatar" :user="u" :disable-preview="true"/>
 | 
			
		||||
		<div class="title">
 | 
			
		||||
			<router-link class="name" :to="u | userPage">{{ u | userName }}</router-link>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,7 +4,7 @@
 | 
			
		|||
	<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:@loading%<mk-ellipsis/></p>
 | 
			
		||||
	<div v-if="!fetching && users.length > 0">
 | 
			
		||||
	<router-link v-for="user in users" :to="user | userPage" :key="user.id">
 | 
			
		||||
		<img :src="`${user.avatarUrl}?thumbnail&size=64`" :alt="user | userName" v-user-preview="user.id"/>
 | 
			
		||||
		<img :src="user.avatarUrl" :alt="user | userName" v-user-preview="user.id"/>
 | 
			
		||||
	</router-link>
 | 
			
		||||
	</div>
 | 
			
		||||
	<p class="empty" v-if="!fetching && users.length == 0">%i18n:@no-users%</p>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,7 +4,7 @@
 | 
			
		|||
	<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:@loading%<mk-ellipsis/></p>
 | 
			
		||||
	<div class="stream" v-if="!fetching && images.length > 0">
 | 
			
		||||
		<div v-for="image in images" class="img"
 | 
			
		||||
			:style="`background-image: url(${image.url}?thumbnail&size=256)`"
 | 
			
		||||
			:style="`background-image: url(${image.url})`"
 | 
			
		||||
		></div>
 | 
			
		||||
	</div>
 | 
			
		||||
	<p class="empty" v-if="!fetching && images.length == 0">%i18n:@no-photos%</p>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,7 +4,7 @@
 | 
			
		|||
	:data-melt="props.design == 2"
 | 
			
		||||
>
 | 
			
		||||
	<div class="banner"
 | 
			
		||||
		:style="$store.state.i.bannerUrl ? `background-image: url(${$store.state.i.bannerUrl}?thumbnail&size=256)` : ''"
 | 
			
		||||
		:style="$store.state.i.bannerUrl ? `background-image: url(${$store.state.i.bannerUrl})` : ''"
 | 
			
		||||
		title="%i18n:@update-banner%"
 | 
			
		||||
		@click="os.apis.updateBanner"
 | 
			
		||||
	></div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -43,7 +43,7 @@ export default Vue.extend({
 | 
			
		|||
		thumbnail(): any {
 | 
			
		||||
			return {
 | 
			
		||||
				'background-color': this.file.properties.avgColor && this.file.properties.avgColor.length == 3 ? `rgb(${this.file.properties.avgColor.join(',')})` : 'transparent',
 | 
			
		||||
				'background-image': `url(${this.file.url}?thumbnail&size=128)`
 | 
			
		||||
				'background-image': `url(${this.file.url})`
 | 
			
		||||
			};
 | 
			
		||||
		}
 | 
			
		||||
	},
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -27,7 +27,7 @@ export default Vue.extend({
 | 
			
		|||
	},
 | 
			
		||||
	computed: {
 | 
			
		||||
		style(): any {
 | 
			
		||||
			let url = `url(${this.image.url}?thumbnail)`;
 | 
			
		||||
			let url = `url(${this.image.url})`;
 | 
			
		||||
 | 
			
		||||
			if (this.$store.state.device.loadRemoteMedia || this.$store.state.device.lightmode) {
 | 
			
		||||
				url = null;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -30,7 +30,7 @@ export default Vue.extend({
 | 
			
		|||
	computed: {
 | 
			
		||||
		imageStyle(): any {
 | 
			
		||||
			return {
 | 
			
		||||
				'background-image': `url(${this.video.url}?thumbnail&size=512)`
 | 
			
		||||
				'background-image': `url(${this.video.url})`
 | 
			
		||||
			};
 | 
			
		||||
		}
 | 
			
		||||
	},})
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,7 @@
 | 
			
		|||
<div class="mk-note-card">
 | 
			
		||||
	<a :href="note | notePage">
 | 
			
		||||
		<header>
 | 
			
		||||
			<img :src="`${note.user.avatarUrl}?thumbnail&size=64`" alt="avatar"/><h3>{{ note.user | userName }}</h3>
 | 
			
		||||
			<img :src="note.user.avatarUrl" alt="avatar"/><h3>{{ note.user | userName }}</h3>
 | 
			
		||||
		</header>
 | 
			
		||||
		<div>
 | 
			
		||||
			{{ text }}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -21,7 +21,7 @@
 | 
			
		|||
			<div class="attaches" v-show="files.length != 0">
 | 
			
		||||
				<x-draggable class="files" :list="files" :options="{ animation: 150 }">
 | 
			
		||||
					<div class="file" v-for="file in files" :key="file.id">
 | 
			
		||||
						<div class="img" :style="`background-image: url(${file.url}?thumbnail&size=128)`" @click="detachMedia(file)"></div>
 | 
			
		||||
						<div class="img" :style="`background-image: url(${file.url})`" @click="detachMedia(file)"></div>
 | 
			
		||||
					</div>
 | 
			
		||||
				</x-draggable>
 | 
			
		||||
			</div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -10,7 +10,7 @@
 | 
			
		|||
	<transition name="nav">
 | 
			
		||||
		<div class="body" v-if="isOpen">
 | 
			
		||||
			<router-link class="me" v-if="$store.getters.isSignedIn" :to="`/@${$store.state.i.username}`">
 | 
			
		||||
				<img class="avatar" :src="`${$store.state.i.avatarUrl}?thumbnail&size=128`" alt="avatar"/>
 | 
			
		||||
				<img class="avatar" :src="$store.state.i.avatarUrl" alt="avatar"/>
 | 
			
		||||
				<p class="name">{{ $store.state.i | userName }}</p>
 | 
			
		||||
			</router-link>
 | 
			
		||||
			<div class="links">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
<template>
 | 
			
		||||
<div class="mk-user-card">
 | 
			
		||||
	<header :style="user.bannerUrl ? `background-image: url(${user.bannerUrl}?thumbnail&size=1024)` : ''">
 | 
			
		||||
	<header :style="user.bannerUrl ? `background-image: url(${user.bannerUrl})` : ''">
 | 
			
		||||
		<mk-avatar class="avatar" :user="user"/>
 | 
			
		||||
	</header>
 | 
			
		||||
	<a class="name" :href="user | userPage" target="_blank">{{ user | userName }}</a>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
<template>
 | 
			
		||||
<mk-ui>
 | 
			
		||||
	<template slot="header" v-if="!fetching">
 | 
			
		||||
		<img :src="`${user.avatarUrl}?thumbnail&size=64`" alt="">
 | 
			
		||||
		<img :src="user.avatarUrl" alt="">
 | 
			
		||||
		{{ '%i18n:@followers-of%'.replace('{}', name) }}
 | 
			
		||||
	</template>
 | 
			
		||||
	<mk-users-list
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
<template>
 | 
			
		||||
<mk-ui>
 | 
			
		||||
	<template slot="header" v-if="!fetching">
 | 
			
		||||
		<img :src="`${user.avatarUrl}?thumbnail&size=64`" alt="">
 | 
			
		||||
		<img :src="user.avatarUrl" alt="">
 | 
			
		||||
		{{ '%i18n:@following-of%'.replace('{}', name) }}
 | 
			
		||||
	</template>
 | 
			
		||||
	<mk-users-list
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
<template>
 | 
			
		||||
<mk-ui>
 | 
			
		||||
	<template slot="header" v-if="!fetching"><img :src="`${user.avatarUrl}?thumbnail&size=64`" alt="">{{ user | userName }}</template>
 | 
			
		||||
	<template slot="header" v-if="!fetching"><img :src="user.avatarUrl" alt="">{{ user | userName }}</template>
 | 
			
		||||
	<main v-if="!fetching" :data-darkmode="$store.state.device.darkmode">
 | 
			
		||||
		<div class="is-suspended" v-if="user.isSuspended"><p>%fa:exclamation-triangle% %i18n:@is-suspended%</p></div>
 | 
			
		||||
		<div class="is-remote" v-if="user.host != null"><p>%fa:exclamation-triangle% %i18n:@is-remote%<a :href="user.url || user.uri" target="_blank">%i18n:@view-remote%</a></p></div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3,7 +3,7 @@
 | 
			
		|||
	<p class="initializing" v-if="fetching">%fa:spinner .pulse .fw%%i18n:@loading%<mk-ellipsis/></p>
 | 
			
		||||
	<div v-if="!fetching && users.length > 0">
 | 
			
		||||
		<a v-for="user in users" :key="user.id" :href="user | userPage">
 | 
			
		||||
			<img :src="`${user.avatarUrl}?thumbnail&size=64`" :alt="user | userName"/>
 | 
			
		||||
			<img :src="user.avatarUrl" :alt="user | userName"/>
 | 
			
		||||
		</a>
 | 
			
		||||
	</div>
 | 
			
		||||
	<p class="empty" v-if="!fetching && users.length == 0">%i18n:@no-users%</p>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,7 +4,7 @@
 | 
			
		|||
	<div class="stream" v-if="!fetching && images.length > 0">
 | 
			
		||||
		<a v-for="image in images"
 | 
			
		||||
			class="img"
 | 
			
		||||
			:style="`background-image: url(${image.media.url}?thumbnail&size=256)`"
 | 
			
		||||
			:style="`background-image: url(${image.media.url})`"
 | 
			
		||||
			:href="image.note | notePage"
 | 
			
		||||
		></a>
 | 
			
		||||
	</div>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,10 +2,10 @@
 | 
			
		|||
<div class="mkw-profile">
 | 
			
		||||
	<mk-widget-container>
 | 
			
		||||
		<div :class="$style.banner"
 | 
			
		||||
			:style="$store.state.i.bannerUrl ? `background-image: url(${$store.state.i.bannerUrl}?thumbnail&size=256)` : ''"
 | 
			
		||||
			:style="$store.state.i.bannerUrl ? `background-image: url(${$store.state.i.bannerUrl})` : ''"
 | 
			
		||||
		></div>
 | 
			
		||||
		<img :class="$style.avatar"
 | 
			
		||||
			:src="`${$store.state.i.avatarUrl}?thumbnail&size=96`"
 | 
			
		||||
			:src="$store.state.i.avatarUrl"
 | 
			
		||||
			alt="avatar"
 | 
			
		||||
		/>
 | 
			
		||||
		<router-link :class="$style.name" :to="$store.state.i | userPage">{{ $store.state.i | userName }}</router-link>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue