112 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
| <header class="kkwtjztg">
 | |
| 	<MkA class="name" :to="userPage(note.user)" v-user-preview="note.user.id">
 | |
| 		<MkUserName :user="note.user"/>
 | |
| 	</MkA>
 | |
| 	<span class="is-bot" v-if="note.user.isBot">bot</span>
 | |
| 	<span class="username"><MkAcct :user="note.user"/></span>
 | |
| 	<span class="admin" v-if="note.user.isAdmin"><i class="fas fa-bookmark"></i></span>
 | |
| 	<span class="moderator" v-if="!note.user.isAdmin && note.user.isModerator"><i class="far fa-bookmark"></i></span>
 | |
| 	<div class="info">
 | |
| 		<span class="mobile" v-if="note.viaMobile"><i class="fas fa-mobile-alt"></i></span>
 | |
| 		<MkA class="created-at" :to="notePage(note)">
 | |
| 			<MkTime :time="note.createdAt"/>
 | |
| 		</MkA>
 | |
| 		<span class="visibility" v-if="note.visibility !== 'public'">
 | |
| 			<i v-if="note.visibility === 'home'" class="fas fa-home"></i>
 | |
| 			<i v-else-if="note.visibility === 'followers'" class="fas fa-unlock"></i>
 | |
| 			<i v-else-if="note.visibility === 'specified'" class="fas fa-envelope"></i>
 | |
| 		</span>
 | |
| 		<span class="localOnly" v-if="note.localOnly"><i class="fas fa-biohazard"></i></span>
 | |
| 	</div>
 | |
| </header>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent } from 'vue';
 | |
| import notePage from '@client/filters/note';
 | |
| import { userPage } from '@client/filters/user';
 | |
| import * as os from '@client/os';
 | |
| 
 | |
| export default defineComponent({
 | |
| 	props: {
 | |
| 		note: {
 | |
| 			type: Object,
 | |
| 			required: true
 | |
| 		},
 | |
| 	},
 | |
| 
 | |
| 	data() {
 | |
| 		return {
 | |
| 		};
 | |
| 	},
 | |
| 
 | |
| 	methods: {
 | |
| 		notePage,
 | |
| 		userPage
 | |
| 	}
 | |
| });
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped>
 | |
| .kkwtjztg {
 | |
| 	display: flex;
 | |
| 	align-items: baseline;
 | |
| 	white-space: nowrap;
 | |
| 
 | |
| 	> .name {
 | |
| 		display: block;
 | |
| 		margin: 0 .5em 0 0;
 | |
| 		padding: 0;
 | |
| 		overflow: hidden;
 | |
| 		font-size: 1em;
 | |
| 		font-weight: bold;
 | |
| 		text-decoration: none;
 | |
| 		text-overflow: ellipsis;
 | |
| 
 | |
| 		&:hover {
 | |
| 			text-decoration: underline;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	> .is-bot {
 | |
| 		flex-shrink: 0;
 | |
| 		align-self: center;
 | |
| 		margin: 0 .5em 0 0;
 | |
| 		padding: 1px 6px;
 | |
| 		font-size: 80%;
 | |
| 		border: solid 0.5px var(--divider);
 | |
| 		border-radius: 3px;
 | |
| 	}
 | |
| 
 | |
| 	> .admin,
 | |
| 	> .moderator {
 | |
| 		margin-right: 0.5em;
 | |
| 		color: var(--badge);
 | |
| 	}
 | |
| 
 | |
| 	> .username {
 | |
| 		margin: 0 .5em 0 0;
 | |
| 		overflow: hidden;
 | |
| 		text-overflow: ellipsis;
 | |
| 	}
 | |
| 
 | |
| 	> .info {
 | |
| 		margin-left: auto;
 | |
| 		font-size: 0.9em;
 | |
| 
 | |
| 		> .mobile {
 | |
| 			margin-right: 8px;
 | |
| 		}
 | |
| 
 | |
| 		> .visibility {
 | |
| 			margin-left: 8px;
 | |
| 		}
 | |
| 
 | |
| 		> .localOnly {
 | |
| 			margin-left: 8px;
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| </style>
 | 
