2022-08-26 08:35:55 -07:00
|
|
|
import { IgniteHtml } from '../ignite-html/ignite-html.js';
|
2020-09-18 17:01:41 -07:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
2020-09-18 20:12:01 -07:00
|
|
|
import { IgniteTemplate, button, ul, slot, span, div } from "../ignite-html/ignite-template.js";
|
2020-09-20 22:30:57 -07:00
|
|
|
import { IgniteProperty } from "../ignite-html/ignite-html.js";
|
2020-09-18 17:01:41 -07:00
|
|
|
|
|
|
|
class EditableLabel extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
2020-09-18 20:12:01 -07:00
|
|
|
get styles() {
|
2020-12-08 09:19:34 -08:00
|
|
|
return /*css*/`
|
2020-09-18 20:12:01 -07:00
|
|
|
mt-editable-label {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2021-01-08 19:58:33 -08:00
|
|
|
justify-content: space-between;
|
2020-09-21 17:34:49 -07:00
|
|
|
border-radius: 0.3rem;
|
2020-12-01 11:49:01 -08:00
|
|
|
border: solid 0.13rem #ced4da;
|
2020-10-28 10:03:50 -07:00
|
|
|
padding: 0.4rem;
|
2020-09-18 20:12:01 -07:00
|
|
|
}
|
|
|
|
|
2020-12-01 11:49:01 -08:00
|
|
|
mt-editable-label.no-border {
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
mt-editable-label.editing {
|
|
|
|
border: solid 0.13rem rgba(0,0,0,0.1);
|
|
|
|
}
|
|
|
|
|
2021-01-08 19:58:33 -08:00
|
|
|
mt-editable-label.truncate > div {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2020-09-18 20:12:01 -07:00
|
|
|
mt-editable-label:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-01-08 19:58:33 -08:00
|
|
|
mt-editable-label>div {
|
|
|
|
flex: 1;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2020-10-28 10:03:50 -07:00
|
|
|
mt-editable-label>div:focus {
|
|
|
|
outline: none;
|
2020-09-18 20:12:01 -07:00
|
|
|
}
|
|
|
|
|
2020-09-24 09:28:14 -07:00
|
|
|
mt-editable-label>div:empty:before {
|
|
|
|
content: attr(data-placeholder);
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2020-09-18 20:12:01 -07:00
|
|
|
mt-editable-label>button {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
background-color: #2196F3;
|
|
|
|
color: #fff;
|
|
|
|
border: none;
|
2020-09-21 17:34:49 -07:00
|
|
|
border-radius: 0.3rem;
|
2020-09-18 20:12:01 -07:00
|
|
|
padding: 0;
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
min-width: 1.5em;
|
|
|
|
min-height: 1.5em;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
2020-10-26 15:27:43 -07:00
|
|
|
stopEditingOnBlur: true,
|
2020-09-18 20:12:01 -07:00
|
|
|
editing: false,
|
2020-11-18 11:26:50 -08:00
|
|
|
value: null,
|
2020-09-18 20:12:01 -07:00
|
|
|
multiLine: false,
|
2021-01-08 19:58:33 -08:00
|
|
|
truncate: false,
|
2020-09-18 20:12:01 -07:00
|
|
|
saveButton: true,
|
2020-09-24 09:28:14 -07:00
|
|
|
input: null,
|
2020-12-01 11:49:01 -08:00
|
|
|
placeholder: null,
|
|
|
|
border: false
|
2020-09-18 20:12:01 -07:00
|
|
|
};
|
|
|
|
}
|
2020-09-18 17:01:41 -07:00
|
|
|
|
|
|
|
render() {
|
2020-09-18 20:12:01 -07:00
|
|
|
return this.template
|
2020-10-26 15:27:43 -07:00
|
|
|
.attribute("tabindex", "0")
|
2020-12-01 11:49:01 -08:00
|
|
|
.class(this.border, value => value ? null : "no-border")
|
2020-10-28 10:03:50 -07:00
|
|
|
.class(this.editing, value => value ? "editing" : null)
|
2021-01-08 19:58:33 -08:00
|
|
|
.class([this.editing, this.truncate], (editing, truncate) => !editing && truncate ? "truncate" : null)
|
2021-01-09 16:26:51 -08:00
|
|
|
.onFocus(e => this.onFocus(e))
|
2020-09-18 20:12:01 -07:00
|
|
|
.child(
|
2020-09-20 22:30:57 -07:00
|
|
|
new div()
|
|
|
|
.innerHTML(this.value)
|
|
|
|
.class(this.editing, (value) => { return value ? "focus" : null; })
|
2020-09-18 20:12:01 -07:00
|
|
|
.attribute("contenteditable", this.editing)
|
2020-09-24 09:28:14 -07:00
|
|
|
.data("placeholder", this.placeholder)
|
2020-09-18 20:12:01 -07:00
|
|
|
.ref(this.input)
|
2021-01-09 16:26:51 -08:00
|
|
|
.onBlur(e => this.onBlur(e))
|
2020-09-18 20:12:01 -07:00
|
|
|
.on("keydown", (e) => this.onKeyDown(e)),
|
|
|
|
new button(`<i class="fas fa-check"></i>`)
|
2021-01-09 16:26:51 -08:00
|
|
|
.onClick(e => this.onBlur(e))
|
2020-09-18 20:12:01 -07:00
|
|
|
.style("display", this.editing, true, (value) => { return value && this.saveButton ? null : "none" })
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onKeyDown(e) {
|
|
|
|
if ((e.keyCode === 13 || e.keyCode === 27) && !this.multiLine) {
|
|
|
|
this.input.blur();
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-09 16:26:51 -08:00
|
|
|
onBlur(e) {
|
2020-09-18 20:12:01 -07:00
|
|
|
if (this.editing) {
|
2020-10-26 15:27:43 -07:00
|
|
|
if (this.stopEditingOnBlur) {
|
|
|
|
this.editing = false;
|
|
|
|
}
|
2020-09-18 20:12:01 -07:00
|
|
|
|
2021-01-10 11:13:00 -08:00
|
|
|
if (this.input.innerText !== this.value) {
|
|
|
|
this.value = this.input.innerText;
|
2020-11-18 11:26:50 -08:00
|
|
|
|
|
|
|
//Dispatch a native change event
|
2021-01-09 16:26:51 -08:00
|
|
|
this.dispatchEvent(new CustomEvent("change", { bubbles: true }));
|
2020-09-18 20:12:01 -07:00
|
|
|
}
|
|
|
|
}
|
2020-09-18 17:01:41 -07:00
|
|
|
}
|
2020-10-26 15:27:43 -07:00
|
|
|
|
2021-01-09 16:26:51 -08:00
|
|
|
onFocus(e) {
|
2020-10-26 15:27:43 -07:00
|
|
|
this.editing = true;
|
|
|
|
this.input.focus();
|
|
|
|
this.placeCaretAtEnd(this.input);
|
|
|
|
}
|
|
|
|
|
|
|
|
placeCaretAtEnd(el) {
|
|
|
|
el.focus();
|
|
|
|
if (typeof window.getSelection != "undefined"
|
|
|
|
&& typeof document.createRange != "undefined") {
|
|
|
|
var range = document.createRange();
|
|
|
|
range.selectNodeContents(el);
|
|
|
|
range.collapse(false);
|
|
|
|
var sel = window.getSelection();
|
|
|
|
sel.removeAllRanges();
|
|
|
|
sel.addRange(range);
|
|
|
|
} else if (typeof document.body.createTextRange != "undefined") {
|
|
|
|
var textRange = document.body.createTextRange();
|
|
|
|
textRange.moveToElementText(el);
|
|
|
|
textRange.collapse(false);
|
|
|
|
textRange.select();
|
|
|
|
}
|
|
|
|
}
|
2020-09-18 17:01:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
class EditableLabelTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-editable-label", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:35:55 -07:00
|
|
|
IgniteHtml.register("mt-editable-label", EditableLabel);
|
2020-09-18 17:01:41 -07:00
|
|
|
|
|
|
|
export {
|
|
|
|
EditableLabelTemplate as EditableLabel
|
2022-08-26 08:35:55 -07:00
|
|
|
}
|