mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:43:42 +08:00
315b9d796d
* better test helper * more reliable tests * more consistent use of data-value/data-name/title/aria-label everywhere: header and rows
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
attributeBindings: [
|
|
"tabindex",
|
|
"ariaLabel:aria-label",
|
|
"title",
|
|
"name:data-name",
|
|
"value:data-value",
|
|
"guid:data-guid"
|
|
],
|
|
classNames: ["selected-name", "choice"],
|
|
classNameBindings: ["isHighlighted", "isLocked"],
|
|
layoutName: "select-kit/templates/components/multi-select/selected-name",
|
|
tagName: "span",
|
|
tabindex: -1,
|
|
|
|
@computed("computedContent")
|
|
guid(computedContent) { return Ember.guidFor(computedContent); },
|
|
|
|
ariaLabel: Ember.computed.or("computedContent.ariaLabel", "title"),
|
|
|
|
@computed("computedContent.title", "name")
|
|
title(computedContentTitle, name) {
|
|
if (computedContentTitle) return computedContentTitle;
|
|
if (name) return name;
|
|
|
|
return null;
|
|
},
|
|
|
|
label: Ember.computed.or("computedContent.label", "title", "name"),
|
|
|
|
name: Ember.computed.alias("computedContent.name"),
|
|
|
|
value: Ember.computed.alias("computedContent.value"),
|
|
|
|
isLocked: Ember.computed("computedContent.locked", function() {
|
|
return this.getWithDefault("computedContent.locked", false);
|
|
}),
|
|
|
|
click() {
|
|
if (this.get("isLocked") === true) { return false; }
|
|
this.toggleProperty("isHighlighted");
|
|
return false;
|
|
}
|
|
});
|