2018-01-15 18:55:16 +08:00
|
|
|
import DropdownSelectBoxRowComponent from "select-kit/components/dropdown-select-box/dropdown-select-box-row";
|
2018-03-28 19:19:25 +08:00
|
|
|
import computed from "ember-addons/ember-computed-decorators";
|
2018-01-15 18:55:16 +08:00
|
|
|
|
|
|
|
export default DropdownSelectBoxRowComponent.extend({
|
2018-06-15 23:03:24 +08:00
|
|
|
layoutName:
|
|
|
|
"select-kit/templates/components/period-chooser/period-chooser-row",
|
2018-03-28 19:19:25 +08:00
|
|
|
classNames: "period-chooser-row",
|
|
|
|
|
|
|
|
@computed("computedContent")
|
|
|
|
title(computedContent) {
|
2018-06-15 23:03:24 +08:00
|
|
|
return I18n.t(`filters.top.${computedContent.name || "this_week"}`).title;
|
2018-03-28 19:19:25 +08:00
|
|
|
}
|
2018-01-15 18:55:16 +08:00
|
|
|
});
|