Newer
Older
import "@github/clipboard-copy-element";
import { css, html, LitElement, TemplateResult } from "lit";
import {
customElement,
property,
query,
queryAssignedNodes,
state,
} from "lit/decorators.js";
@customElement("permalink-edit")
export class PermalinkEdit extends LitElement {
@queryAssignedNodes("domain", true)
_domain!: NodeListOf<HTMLSpanElement>;
@queryAssignedNodes("slug-input", true)
_slugInput!: NodeListOf<HTMLInputElement>;
@query("clipboard-copy")
_clipboardCopy!: any;
@property({ attribute: "edit-label" })
editLabel = "Edit";
@property({ attribute: "copy-label" })
copyLabel = "Copy";

Yassine Doghri
committed
@property({ attribute: "permalink-base" })
permalinkBase = "";
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
@state()
isEditable = false;
@state()
permalink = "";
@state()
slugInputEvents = [
{
name: "change",
onEvent: (): void => {
this.setPermalink();
},
},
{
name: "focus",
onEvent: (): void => {
this.editSlug();
},
},
{
name: "focusin",
onEvent: (event: Event): void => {
setTimeout(() => {
(event.target as HTMLInputElement).selectionStart = (
event.target as HTMLInputElement
).selectionEnd = 10000;
}, 0);
},
},
{
name: "focusout",
onEvent: (): void => {
this.stopEdit();
},
},
];
connectedCallback(): void {
super.connectedCallback();
}
firstUpdated(): void {

Yassine Doghri
committed
this.permalinkBase += this.permalinkBase.endsWith("/") ? "" : "/";
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
// set permalink value
this.setPermalink();
this._clipboardCopy.addEventListener("clipboard-copy", (event: Event) => {
const notice = (event.target as HTMLDivElement).querySelector(
".notice"
) as HTMLSpanElement;
if (notice) {
notice.hidden = false;
setTimeout(() => {
notice.hidden = true;
}, 1000);
}
});
this._slugInput[0].readOnly = !this.isEditable;
this.slugInputEvents.forEach((slugInputEvent) => {
this._slugInput[0].addEventListener(
slugInputEvent.name,
slugInputEvent.onEvent
);
});
}
disconnectedCallback(): void {
super.disconnectedCallback();
this.slugInputEvents.forEach((slugInputEvent) => {
this._slugInput[0].removeEventListener(
slugInputEvent.name,
slugInputEvent.onEvent
);
});
this._clipboardCopy.removeEventListener(
"clipboard-copy",
(event: Event) => {
const notice = (event.target as HTMLDivElement).querySelector(
".notice"
) as HTMLSpanElement;
if (notice) {
notice.hidden = false;
setTimeout(() => {
notice.hidden = true;
}, 1000);
}
}
);
}
editSlug(): void {
this.isEditable = true;
this._slugInput[0].readOnly = !this.isEditable;
this._slugInput[0].focus();
}
stopEdit(): void {
this.isEditable = false;
this._slugInput[0].readOnly = !this.isEditable;
}
setPermalink(): void {

Yassine Doghri
committed
this.permalink = this.permalinkBase + this._slugInput[0].value;
}
static styles = css`
::slotted(input[slot="slug-input"][readonly]) {
background-color: transparent !important;
border-color: transparent !important;
padding-left: 0 !important;
margin-left: -0.25rem !important;
font-weight: 600;
}
::slotted([slot="domain"]) {
margin-right: 0.25rem;
}
button,
clipboard-copy {
background: transparent;
border: none;
padding: 0.25rem;
cursor: pointer;
}
button svg,
clipboard-copy svg {

Yassine Doghri
committed
fill: hsl(var(--color-text-base));
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
opacity: 0.6;
font-size: 1.25rem;
}
button:hover svg,
clipboard-copy:hover svg {
opacity: 1;
}
clipboard-copy {
position: relative;
}
.notice {
position: absolute;
background-color: black;
color: #ffffff;
bottom: -1rem;
right: 0;
font-size: 0.75rem;
padding: 0 0.25rem;
}
`;
render(): TemplateResult<1> {
return html`<slot name="domain"></slot><slot name="slug-input"></slot>${this
.isEditable
? ""
: html`<button @click="${this.editSlug}" title="${this.editLabel}">
<svg
viewBox="0 0 24 24"
fill="currentColor"
width="1em"
height="1em"
>
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path
d="M7.243 18H3v-4.243L14.435 2.322a1 1 0 0 1 1.414 0l2.829 2.829a1 1 0 0 1 0 1.414L7.243 18zM3 20h18v2H3v-2z"
/>
</g>
</svg>
</button> `}<clipboard-copy
.value="${this.permalink}"
title="${this.copyLabel}"
><svg viewBox="0 0 24 24" fill="currentColor" width="1em" height="1em">
<g>
<path fill="none" d="M0 0h24v24H0z" />
<path
d="M6 4v4h12V4h2.007c.548 0 .993.445.993.993v16.014a.994.994 0 0 1-.993.993H3.993A.994.994 0 0 1 3 21.007V4.993C3 4.445 3.445 4 3.993 4H6zm2-2h8v4H8V2z"
/>
</g>
</svg>
<span class="notice" hidden>Copied!</span></clipboard-copy
>`;
}
}