2018-12-12 05:06:05 +01:00
|
|
|
<template>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA class="ldlomzub" :class="{ isMe }" :to="url" v-user-preview="canonical" v-if="url.startsWith('/')">
|
2020-07-24 18:56:52 +02:00
|
|
|
<span class="me" v-if="isMe">{{ $t('you') }}</span>
|
2018-12-12 05:06:05 +01:00
|
|
|
<span class="main">
|
|
|
|
<span class="username">@{{ username }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<span class="host" v-if="(host != localHost) || $store.state.settings.showFullAcct">@{{ toUnicode(host) }}</span>
|
2018-12-12 05:06:05 +01:00
|
|
|
</span>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
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>
|
2020-01-29 20:37:25 +01:00
|
|
|
<span class="host">@{{ toUnicode(host) }}</span>
|
2019-07-18 20:13:47 +02:00
|
|
|
</span>
|
|
|
|
</a>
|
2018-12-12 05:06:05 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2018-12-12 05:06:05 +01:00
|
|
|
import { toUnicode } from 'punycode';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { host as localHost } from '@/config';
|
2020-08-07 04:27:37 +02:00
|
|
|
import { wellKnownServices } from '../../well-known-services';
|
2020-10-17 13:12:00 +02:00
|
|
|
import * as os from '@/os';
|
2018-12-12 05:06:05 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2018-12-12 05:06:05 +01:00
|
|
|
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 {
|
2020-08-07 04:27:37 +02:00
|
|
|
const wellKnown = wellKnownServices.find(x => x[0] === this.host);
|
|
|
|
if (wellKnown) {
|
|
|
|
return wellKnown[1](this.username);
|
|
|
|
} else {
|
|
|
|
return `/${this.canonical}`;
|
2019-07-18 20:13:47 +02:00
|
|
|
}
|
|
|
|
},
|
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>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ldlomzub {
|
|
|
|
color: var(--mention);
|
2020-06-04 15:19:08 +02:00
|
|
|
|
|
|
|
&.isMe {
|
|
|
|
color: var(--mentionMe);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .me {
|
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
|
|
|
font-size: 70%;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2018-12-12 05:06:05 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .main {
|
|
|
|
> .host {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-12 05:06:05 +01:00
|
|
|
</style>
|