66 lines
1.6 KiB
Vue
66 lines
1.6 KiB
Vue
<template>
|
|
<component :is="self ? 'router-link' : 'a'" class="mk-url" :[attr]="self ? url.substr(local.length) : url" :rel="rel" :target="target">
|
|
<template v-if="!self">
|
|
<span class="schema">{{ schema }}//</span>
|
|
<span class="hostname">{{ hostname }}</span>
|
|
<span class="port" v-if="port != ''">:{{ port }}</span>
|
|
</template>
|
|
<span class="pathname" v-if="pathname != ''">{{ pathname }}</span>
|
|
<span class="query">{{ query }}</span>
|
|
<span class="hash">{{ hash }}</span>
|
|
<fa icon="external-link-square-alt" v-if="!self"/>
|
|
</component>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { toUnicode as decodePunycode } from 'punycode';
|
|
import { url as local } from '../../../config';
|
|
|
|
export default Vue.extend({
|
|
props: ['url', 'rel', 'target'],
|
|
data() {
|
|
return {
|
|
local,
|
|
schema: null,
|
|
hostname: null,
|
|
port: null,
|
|
pathname: null,
|
|
query: null,
|
|
hash: null,
|
|
self: this.url.startsWith(local),
|
|
attr: this.url.startsWith(local) ? 'to' : 'href'
|
|
};
|
|
},
|
|
created() {
|
|
const url = new URL(this.url);
|
|
this.schema = url.protocol;
|
|
this.hostname = decodePunycode(url.hostname);
|
|
this.port = url.port;
|
|
this.pathname = decodeURIComponent(url.pathname);
|
|
this.query = decodeURIComponent(url.search);
|
|
this.hash = decodeURIComponent(url.hash);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.mk-url
|
|
word-break break-all
|
|
> [data-icon]
|
|
padding-left 2px
|
|
font-size .9em
|
|
font-weight 400
|
|
font-style normal
|
|
> .schema
|
|
opacity 0.5
|
|
> .hostname
|
|
font-weight bold
|
|
> .pathname
|
|
opacity 0.8
|
|
> .query
|
|
opacity 0.5
|
|
> .hash
|
|
font-style italic
|
|
</style>
|