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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
<template>
<div id="clone">
<button
id="dropdown-button" aria-describedby="dropdown-menu"
type="button">
Clone
</button>
<div id="dropdown-menu" role="dropdown-menu">
<div>
<p id="dropdown-title" class="fs-5">
Clone with HTTP
</p>
<div
id="copied-tooltip" role="copied-tooltip"
class="fs-5">
<div id="tooltip-arrow" />
Copied!
</div>
<label id="clone-url-copy">
<input
type="text" :value="getURL()"
readonly>
<svg
xmlns="http://www.w3.org/2000/svg" height="18px"
viewBox="0 0 24 24" width="18px"
fill="#FFFFFF" @click="copyToClipboard"
id="copy">
<path d="M0 0h24v24H0z" fill="none" />
<path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z" />
</svg>
</label>
</div>
</div>
</div>
</template>
<script>
import { createPopper } from "@popperjs/core";
export default {
name: "RepositoryCloneDropdown",
props: {
repository: {
type: String,
required: true
}
},
methods: {
async copyToClipboard(event) {
const url_box = document.getElementById("clone").getElementsByTagName("input")[0];
url_box.select();
url_box.setSelectionRange(0, 99999);
document.execCommand("copy");
const copied_tooltip = document.querySelector("#copied-tooltip");
copied_tooltip.classList.add("show");
await new Promise(resolve => setTimeout(resolve, 2000));
copied_tooltip.classList.remove("show");
},
getURL() {
return `${window.location.protocol}//${window.location.host}/${this.repository}`;
}
},
mounted() {
const dropdown_button = document.querySelector("#dropdown-button");
const dropdown_menu = document.querySelector("#dropdown-menu");
const copied_tooltip = document.querySelector("#copied-tooltip");
const copy = document.querySelector("#copy");
const tooltip_arrow = document.querySelector("#tooltip-arrow");
createPopper(dropdown_button, dropdown_menu, {
placement: "bottom-end",
modifiers: [
{
name: "offset",
options: { offset: [ 0, 2 ] }
}
]
});
createPopper(copy, copied_tooltip, {
placement: "top",
modifiers: [
{
name: "offset",
options: { offset: [ 0, 10 ] }
},
{
name: "arrow",
options: { element: tooltip_arrow }
}
]
});
const clickOutsideDropdown = (event) => {
if(!dropdown_menu.contains(event.target) && event.target !== dropdown_button) {
dropdown_menu.classList.remove("show");
document.removeEventListener("click", clickOutsideDropdown);
}
};
dropdown_button.addEventListener("click", () => {
if(dropdown_menu.classList.contains("show")) {
dropdown_menu.classList.remove("show");
document.removeEventListener("click", clickOutsideDropdown);
} else {
dropdown_menu.classList.add("show");
document.addEventListener("click", clickOutsideDropdown);
}
});
}
};
</script>
<style lang="scss" scoped>
@use "../scss/colors";
@use "../scss/mixins";
@use "../scss/fonts";
#clone {
display: flex;
align-items: center;
}
#clone-url-copy {
position: relative;
height: 30px;
display: block;
text-align: left;
margin: 10px auto;
input {
display: inline-block;
padding-right: 30px;
min-height: 0;
background: lighten(#000000, 15%);
border: 1px solid lighten(#000000, 28%);
color: colors.$text;
border-radius: 2px;
height: 25px;
margin-left: 0.5rem;
margin-right: 0.5rem;
font-family: fonts.$primary;
}
svg {
content: "";
position: absolute;
right: 12px;
top: 7px;
bottom: 0;
width: 18px;
fill: colors.$not-selected;
&:hover {
fill: colors.$text;
}
}
}
#dropdown-button {
@include mixins.button;
padding: 3px 5px 3px 6px;
font-size: 15px;
font-family: fonts.$primary;
&::after {
display: inline-block;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.3em solid transparent;
}
}
#dropdown-menu {
visibility: hidden;
pointer-events: none;
background-color: lighten(#000000, 12%);
opacity: 0;
transition:visibility 0.08s linear,opacity 0.08s linear;
border-radius: 5px;
z-index: 1000;
position: absolute;
}
#copied-tooltip {
visibility: hidden;
pointer-events: none;
position: absolute;
background-color: #000000;
padding-left: 10px;
padding-right: 10px;
padding-top: 2px;
padding-bottom: 2px;
border-radius: 3px;
z-index: 99999;
opacity: 0;
transition:visibility 0.4s linear,opacity 0.4s linear;
}
.show {
visibility: visible !important;
pointer-events: all !important;
opacity: 1 !important;
}
#tooltip-arrow {
bottom: -4px;
}
#tooltip-arrow,
#tooltip-arrow::before {
position: absolute;
width: 8px;
height: 8px;
z-index: -1;
}
#tooltip-arrow::before {
content: '';
transform: rotate(45deg);
background: #000000;
}
#dropdown-title {
margin-left: 0.5rem;
font-weight: 700;
}
</style>
|