2018-03-31 07:41:08 -05:00
|
|
|
<template>
|
2019-05-13 12:50:23 -05:00
|
|
|
<a class="mk-url" :href="url" :rel="rel" :target="target">
|
2018-03-31 07:41:08 -05:00
|
|
|
<span class="schema">{{ schema }}//</span>
|
|
|
|
<span class="hostname">{{ hostname }}</span>
|
|
|
|
<span class="port" v-if="port != ''">:{{ port }}</span>
|
|
|
|
<span class="pathname" v-if="pathname != ''">{{ pathname }}</span>
|
|
|
|
<span class="query">{{ query }}</span>
|
|
|
|
<span class="hash">{{ hash }}</span>
|
2018-11-05 10:40:11 -06:00
|
|
|
<fa icon="external-link-square-alt"/>
|
2018-03-31 07:41:08 -05:00
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-09-02 06:19:59 -05:00
|
|
|
import { toUnicode as decodePunycode } from 'punycode';
|
2018-11-08 12:44:35 -06:00
|
|
|
|
2018-03-31 07:41:08 -05:00
|
|
|
export default Vue.extend({
|
2019-05-13 12:50:23 -05:00
|
|
|
props: ['url', 'rel', 'target'],
|
2018-03-31 07:41:08 -05:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
schema: null,
|
|
|
|
hostname: null,
|
|
|
|
port: null,
|
|
|
|
pathname: null,
|
|
|
|
query: null,
|
|
|
|
hash: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
const url = new URL(this.url);
|
|
|
|
this.schema = url.protocol;
|
2018-09-02 06:19:59 -05:00
|
|
|
this.hostname = decodePunycode(url.hostname);
|
2018-03-31 07:41:08 -05:00
|
|
|
this.port = url.port;
|
2018-09-02 06:19:59 -05:00
|
|
|
this.pathname = decodeURIComponent(url.pathname);
|
|
|
|
this.query = decodeURIComponent(url.search);
|
|
|
|
this.hash = decodeURIComponent(url.hash);
|
2018-03-31 07:41:08 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-url
|
|
|
|
word-break break-all
|
2018-11-05 10:40:11 -06:00
|
|
|
> [data-icon]
|
2018-03-31 07:41:08 -05:00
|
|
|
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>
|