-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathOneEditLink.vue
117 lines (103 loc) · 1.99 KB
/
OneEditLink.vue
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<template>
<a
class="one-edit-link"
:class="
variant
? {
[`one-edit-link-${variant}`]: true,
}
: {}
"
:href="href"
target="_blank"
rel="noopener"
@click="handleClick"
>
<slot :label="t('editOnGitHub')">
<span class="full">{{ t('editOnGitHub', { item: t(type) }) }}</span>
<span class="short">{{ t('edit') }}</span>
<veui-icon
class="icon"
name="external-link"
/>
</slot>
</a>
</template>
<script>
import { Icon } from 'veui'
import i18n from 'veui/mixins/i18n'
import { track } from '../common/util'
import 'veui-theme-dls-icons/external-link'
const BASE_URL = 'https://github.com/ecomfe/veui-docs/edit/master/one/docs/'
export default {
name: 'one-edit-link',
components: {
'veui-icon': Icon
},
mixins: [i18n],
props: {
variant: {
type: String,
default: 'default'
},
path: String,
type: {
type: String,
default: 'page'
}
},
computed: {
href () {
return `${BASE_URL}${this.path}`
}
},
methods: {
handleClick () {
track('edit-source', { path: this.path })
}
}
}
</script>
<style lang="stylus" scoped>
.one-edit-link
display inline-flex
align-items center
text-decoration none
transition background 0.2s, color 0.2s, border-color 0.2s
.icon
margin-left 4px
&-default
display inline-flex
align-items center
padding 4px 6px
border-radius 4px
background-color #fff
color #848b99
border 1px solid #e2e6f0
&:hover
&[data-focus-visible-added]
background-color #f6f7fa
color #282c33
border-color #d3d9e6
&:active
background-color #e2e6f0
color #000
border-color #d3d9e6
&-quiet
color #282c33
&:hover
&[data-focus-visible-added]
color #545b66
&:active
color #000
.full
display inline
.short
display none
@media (max-width 480px)
.one-edit-link-quiet
.full
display none
.short
display inline
</style>