mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:54:13 +08:00
7c4d4331bc
It also matches 3 dots with the ellipsis symbol.
41 lines
867 B
JavaScript
41 lines
867 B
JavaScript
import { on } from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
classNames: ["site-text"],
|
|
classNameBindings: ["siteText.overridden"],
|
|
|
|
@on("didInsertElement")
|
|
highlightTerm() {
|
|
const term = this._searchTerm();
|
|
|
|
if (term) {
|
|
this.$(".site-text-id, .site-text-value").highlight(term, {
|
|
className: "text-highlight"
|
|
});
|
|
}
|
|
this.$(".site-text-value").ellipsis();
|
|
},
|
|
|
|
click() {
|
|
this.send("edit");
|
|
},
|
|
|
|
_searchTerm() {
|
|
const regex = this.get("searchRegex");
|
|
const siteText = this.get("siteText");
|
|
|
|
if (regex && siteText) {
|
|
const matches = siteText.value.match(new RegExp(regex, "i"));
|
|
if (matches) return matches[0];
|
|
}
|
|
|
|
return this.get("term");
|
|
},
|
|
|
|
actions: {
|
|
edit() {
|
|
this.sendAction("editAction", this.get("siteText"));
|
|
}
|
|
}
|
|
});
|