mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
43 lines
955 B
JavaScript
43 lines
955 B
JavaScript
import Component from "@ember/component";
|
|
import highlightHTML from "discourse/lib/highlight-html";
|
|
import { on } from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
classNames: ["site-text"],
|
|
classNameBindings: ["siteText.overridden"],
|
|
|
|
@on("didInsertElement")
|
|
highlightTerm() {
|
|
const term = this._searchTerm();
|
|
|
|
if (term) {
|
|
highlightHTML(
|
|
this.element.querySelector(".site-text-id, .site-text-value"),
|
|
term,
|
|
{
|
|
className: "text-highlight",
|
|
}
|
|
);
|
|
}
|
|
$(this.element.querySelector(".site-text-value")).ellipsis();
|
|
},
|
|
|
|
click() {
|
|
this.editAction(this.siteText);
|
|
},
|
|
|
|
_searchTerm() {
|
|
const regex = this.searchRegex;
|
|
const siteText = this.siteText;
|
|
|
|
if (regex && siteText) {
|
|
const matches = siteText.value.match(new RegExp(regex, "i"));
|
|
if (matches) {
|
|
return matches[0];
|
|
}
|
|
}
|
|
|
|
return this.term;
|
|
},
|
|
});
|