2018-09-07 02:56:00 +08:00
|
|
|
import {
|
|
|
|
default as computed,
|
|
|
|
observes
|
|
|
|
} from "ember-addons/ember-computed-decorators";
|
2018-08-31 03:23:15 +08:00
|
|
|
|
|
|
|
const MAX_COMPONENTS = 4;
|
|
|
|
|
|
|
|
export default Ember.Component.extend({
|
2018-09-07 02:56:00 +08:00
|
|
|
childrenExpanded: false,
|
2018-08-31 03:23:15 +08:00
|
|
|
classNames: ["themes-list-item"],
|
2018-09-07 02:56:00 +08:00
|
|
|
classNameBindings: ["theme.selected:selected"],
|
2019-01-12 00:54:23 +08:00
|
|
|
hasComponents: Ember.computed.gt("children.length", 0),
|
|
|
|
displayComponents: Ember.computed.and("hasComponents", "theme.isActive"),
|
|
|
|
displayHasMore: Ember.computed.gt("theme.childThemes.length", MAX_COMPONENTS),
|
2018-09-07 02:56:00 +08:00
|
|
|
|
|
|
|
click(e) {
|
|
|
|
if (!$(e.target).hasClass("others-count")) {
|
|
|
|
this.navigateToTheme();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this.scheduleAnimation();
|
|
|
|
},
|
|
|
|
|
|
|
|
@observes("theme.selected")
|
|
|
|
triggerAnimation() {
|
|
|
|
this.animate();
|
|
|
|
},
|
|
|
|
|
|
|
|
scheduleAnimation() {
|
|
|
|
Ember.run.schedule("afterRender", () => {
|
|
|
|
this.animate(true);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
animate(isInitial) {
|
|
|
|
const $container = this.$();
|
|
|
|
const $list = this.$(".components-list");
|
|
|
|
if ($list.length === 0 || Ember.testing) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const duration = 300;
|
|
|
|
if (this.get("theme.selected")) {
|
|
|
|
this.collapseComponentsList($container, $list, duration);
|
|
|
|
} else if (!isInitial) {
|
|
|
|
this.expandComponentsList($container, $list, duration);
|
|
|
|
}
|
|
|
|
},
|
2018-08-31 03:23:15 +08:00
|
|
|
|
|
|
|
@computed(
|
|
|
|
"theme.component",
|
|
|
|
"theme.childThemes.@each.name",
|
2018-09-07 02:56:00 +08:00
|
|
|
"theme.childThemes.length",
|
|
|
|
"childrenExpanded"
|
2018-08-31 03:23:15 +08:00
|
|
|
)
|
|
|
|
children() {
|
|
|
|
const theme = this.get("theme");
|
2018-09-07 02:56:00 +08:00
|
|
|
let children = theme.get("childThemes");
|
2018-08-31 03:23:15 +08:00
|
|
|
if (theme.get("component") || !children) {
|
|
|
|
return [];
|
|
|
|
}
|
2018-09-07 02:56:00 +08:00
|
|
|
children = this.get("childrenExpanded")
|
|
|
|
? children
|
|
|
|
: children.slice(0, MAX_COMPONENTS);
|
|
|
|
return children.map(t => t.get("name"));
|
2018-08-31 03:23:15 +08:00
|
|
|
},
|
|
|
|
|
2018-11-13 21:57:50 +08:00
|
|
|
@computed("children")
|
|
|
|
childrenString(children) {
|
|
|
|
return children.join(", ");
|
|
|
|
},
|
|
|
|
|
2018-09-07 02:56:00 +08:00
|
|
|
@computed(
|
|
|
|
"theme.childThemes.length",
|
|
|
|
"theme.component",
|
|
|
|
"childrenExpanded",
|
|
|
|
"children.length"
|
|
|
|
)
|
|
|
|
moreCount(childrenCount, component, expanded) {
|
|
|
|
if (component || !childrenCount || expanded) {
|
2018-08-31 03:23:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return childrenCount - MAX_COMPONENTS;
|
2018-09-07 02:56:00 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
expandComponentsList($container, $list, duration) {
|
|
|
|
$container.css("height", `${$container.height()}px`);
|
|
|
|
$list.css("display", "");
|
|
|
|
$container.animate(
|
|
|
|
{
|
|
|
|
height: `${$container.height() + $list.outerHeight(true)}px`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
duration,
|
|
|
|
done: () => {
|
|
|
|
$list.css("display", "");
|
|
|
|
$container.css("height", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$list.animate(
|
|
|
|
{
|
|
|
|
opacity: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
duration
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
collapseComponentsList($container, $list, duration) {
|
|
|
|
$container.animate(
|
|
|
|
{
|
|
|
|
height: `${$container.height() - $list.outerHeight(true)}px`
|
|
|
|
},
|
|
|
|
{
|
|
|
|
duration,
|
|
|
|
done: () => {
|
|
|
|
$list.css("display", "none");
|
|
|
|
$container.css("height", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
$list.animate(
|
|
|
|
{
|
|
|
|
opacity: 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
duration
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
toggleChildrenExpanded() {
|
|
|
|
this.toggleProperty("childrenExpanded");
|
|
|
|
}
|
2018-08-31 03:23:15 +08:00
|
|
|
}
|
|
|
|
});
|