mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
38 lines
855 B
JavaScript
38 lines
855 B
JavaScript
import Component from "@ember/component";
|
|
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) {
|
|
$(
|
|
this.element.querySelector(".site-text-id, .site-text-value")
|
|
).highlight(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;
|
|
}
|
|
});
|