summaryrefslogtreecommitdiff
path: root/src/web/app/common/views/components/url.vue
blob: 4cc76f7e242fd77660fa7dc32e0702aa0df6db5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<template>
	<a :href="url" :target="target">
		<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>
		%fa:external-link-square-alt%
	</a>
</template>

<script lang="typescript">
	export default {
		props: ['url', 'target'],
		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;
			this.hostname = url.hostname;
			this.port = url.port;
			this.pathname = url.pathname;
			this.query = url.search;
			this.hash = url.hash;
		}
	};
</script>

<style lang="stylus" scoped>
	:scope
		word-break break-all

	> a
		> [data-fa]
			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>