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