2018-12-12 05:06:05 +01:00
|
|
|
<template>
|
2019-07-18 20:13:47 +02:00
|
|
|
<router-link class="ldlomzub" :to="url" v-user-preview="canonical" v-if="url.startsWith('/')">
|
2018-12-12 05:06:05 +01:00
|
|
|
<span class="me" v-if="isMe">{{ $t('@.you') }}</span>
|
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
|
|
|
<span class="host" :class="{ fade: $store.state.settings.contrastedAcct }" v-if="(host != localHost) || $store.state.settings.showFullAcct">@{{ toUnicode(host) }}</span>
|
|
|
|
</span>
|
|
|
|
</router-link>
|
2019-07-18 20:13:47 +02:00
|
|
|
<a class="ldlomzub" :href="url" target="_blank" rel="noopener" v-else>
|
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
|
|
|
<span class="host" :class="{ fade: $store.state.settings.contrastedAcct }">@{{ toUnicode(host) }}</span>
|
|
|
|
</span>
|
|
|
|
</a>
|
2018-12-12 05:06:05 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import i18n from '../../../i18n';
|
|
|
|
import { toUnicode } from 'punycode';
|
|
|
|
import { host as localHost } from '../../../config';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
i18n: i18n(),
|
|
|
|
props: {
|
|
|
|
username: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
localHost
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
2019-07-18 20:13:47 +02:00
|
|
|
url(): string {
|
|
|
|
switch (this.host) {
|
|
|
|
case 'twitter.com':
|
|
|
|
case 'github.com':
|
|
|
|
return `https://${this.host}/${this.username}`;
|
|
|
|
default:
|
|
|
|
return `/${this.canonical}`;
|
|
|
|
}
|
|
|
|
},
|
2018-12-12 05:06:05 +01:00
|
|
|
canonical(): string {
|
2019-04-07 14:50:36 +02:00
|
|
|
return this.host === localHost ? `@${this.username}` : `@${this.username}@${toUnicode(this.host)}`;
|
2018-12-12 05:06:05 +01:00
|
|
|
},
|
|
|
|
isMe(): boolean {
|
2019-04-15 13:41:56 +02:00
|
|
|
return this.$store.getters.isSignedIn && (
|
|
|
|
`@${this.username}@${toUnicode(this.host)}` === `@${this.$store.state.i.username}@${toUnicode(localHost)}`.toLowerCase()
|
|
|
|
);
|
2018-12-12 05:06:05 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toUnicode
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.ldlomzub
|
|
|
|
color var(--mfmMention)
|
|
|
|
|
|
|
|
> .me
|
|
|
|
pointer-events none
|
|
|
|
user-select none
|
|
|
|
padding 0 4px
|
2018-12-30 05:19:06 +01:00
|
|
|
background var(--mfmMention)
|
2018-12-30 06:00:57 +01:00
|
|
|
border solid var(--lineWidth) var(--mfmMention)
|
2018-12-12 05:06:05 +01:00
|
|
|
border-radius 4px 0 0 4px
|
2018-12-30 05:19:06 +01:00
|
|
|
color var(--mfmMentionForeground)
|
2018-12-12 05:06:05 +01:00
|
|
|
|
|
|
|
& + .main
|
|
|
|
padding 0 4px
|
2018-12-30 06:00:57 +01:00
|
|
|
border solid var(--lineWidth) var(--mfmMention)
|
2018-12-12 05:06:05 +01:00
|
|
|
border-radius 0 4px 4px 0
|
|
|
|
|
|
|
|
> .main
|
|
|
|
> .host.fade
|
|
|
|
opacity 0.5
|
|
|
|
|
|
|
|
</style>
|