2018-03-31 14:41:08 +02:00
|
|
|
<template>
|
2019-05-25 17:38:26 +02:00
|
|
|
<component :is="hasRoute ? 'router-link' : 'a'" class="mk-url" :[attr]="hasRoute ? url.substr(local.length) : url" :rel="rel" :target="target">
|
2019-05-25 02:04:16 +02:00
|
|
|
<template v-if="!self">
|
|
|
|
<span class="schema">{{ schema }}//</span>
|
|
|
|
<span class="hostname">{{ hostname }}</span>
|
|
|
|
<span class="port" v-if="port != ''">:{{ port }}</span>
|
|
|
|
</template>
|
2019-07-02 12:17:14 +02:00
|
|
|
<template v-if="pathname === '/' && self">
|
|
|
|
<span class="self">{{ hostname }}</span>
|
|
|
|
</template>
|
2019-05-25 02:05:14 +02:00
|
|
|
<span class="pathname" v-if="pathname != ''">{{ self ? pathname.substr(1) : pathname }}</span>
|
2018-03-31 14:41:08 +02:00
|
|
|
<span class="query">{{ query }}</span>
|
|
|
|
<span class="hash">{{ hash }}</span>
|
2019-05-25 17:38:26 +02:00
|
|
|
<fa icon="external-link-square-alt" v-if="target === '_blank'"/>
|
2019-05-24 12:19:43 +02:00
|
|
|
</component>
|
2018-03-31 14:41:08 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-09-02 13:19:59 +02:00
|
|
|
import { toUnicode as decodePunycode } from 'punycode';
|
2019-05-24 12:19:43 +02:00
|
|
|
import { url as local } from '../../../config';
|
2018-11-08 19:44:35 +01:00
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
export default Vue.extend({
|
2019-05-25 17:38:26 +02:00
|
|
|
props: ['url', 'rel'],
|
2018-03-31 14:41:08 +02:00
|
|
|
data() {
|
2019-05-25 17:38:26 +02:00
|
|
|
const isSelf = this.url.startsWith(local);
|
2019-06-07 13:11:23 +02:00
|
|
|
const hasRoute = isSelf && (
|
2019-07-02 12:17:14 +02:00
|
|
|
(this.url.substr(local.length) === '/') ||
|
2019-05-25 17:38:26 +02:00
|
|
|
this.url.substr(local.length).startsWith('/@') ||
|
|
|
|
this.url.substr(local.length).startsWith('/notes/') ||
|
2019-07-11 19:08:13 +02:00
|
|
|
this.url.substr(local.length).startsWith('/tags/') ||
|
2019-06-07 13:11:23 +02:00
|
|
|
this.url.substr(local.length).startsWith('/pages/'));
|
2018-03-31 14:41:08 +02:00
|
|
|
return {
|
2019-05-24 12:19:43 +02:00
|
|
|
local,
|
2018-03-31 14:41:08 +02:00
|
|
|
schema: null,
|
|
|
|
hostname: null,
|
|
|
|
port: null,
|
|
|
|
pathname: null,
|
|
|
|
query: null,
|
2019-05-24 12:19:43 +02:00
|
|
|
hash: null,
|
2019-05-25 17:38:26 +02:00
|
|
|
self: isSelf,
|
|
|
|
hasRoute: hasRoute,
|
|
|
|
attr: hasRoute ? 'to' : 'href',
|
|
|
|
target: hasRoute ? null : '_blank'
|
2018-03-31 14:41:08 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
const url = new URL(this.url);
|
|
|
|
this.schema = url.protocol;
|
2018-09-02 13:19:59 +02:00
|
|
|
this.hostname = decodePunycode(url.hostname);
|
2018-03-31 14:41:08 +02:00
|
|
|
this.port = url.port;
|
2018-09-02 13:19:59 +02:00
|
|
|
this.pathname = decodeURIComponent(url.pathname);
|
|
|
|
this.query = decodeURIComponent(url.search);
|
|
|
|
this.hash = decodeURIComponent(url.hash);
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-url
|
|
|
|
word-break break-all
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-03-31 14:41:08 +02:00
|
|
|
padding-left 2px
|
|
|
|
font-size .9em
|
|
|
|
font-weight 400
|
|
|
|
font-style normal
|
2019-07-02 12:17:14 +02:00
|
|
|
|
|
|
|
> .self
|
|
|
|
font-weight bold
|
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
> .schema
|
|
|
|
opacity 0.5
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
> .hostname
|
|
|
|
font-weight bold
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
> .pathname
|
|
|
|
opacity 0.8
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
> .query
|
|
|
|
opacity 0.5
|
2019-07-02 12:17:14 +02:00
|
|
|
|
2018-03-31 14:41:08 +02:00
|
|
|
> .hash
|
|
|
|
font-style italic
|
|
|
|
</style>
|