37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
import { exportUserArchive } from 'discourse/lib/export-csv';
|
|
|
|
export default Ember.Controller.extend({
|
|
userActionType: null,
|
|
needs: ["application", "user"],
|
|
currentPath: Em.computed.alias('controllers.application.currentPath'),
|
|
viewingSelf: Em.computed.alias("controllers.user.viewingSelf"),
|
|
showBookmarks: Em.computed.alias("controllers.user.showBookmarks"),
|
|
|
|
_showFooter: function() {
|
|
var showFooter;
|
|
if (this.get("userActionType")) {
|
|
const stat = _.find(this.get("model.stats"), { action_type: this.get("userActionType") });
|
|
showFooter = stat && stat.count <= this.get("model.stream.itemsLoaded");
|
|
} else {
|
|
showFooter = this.get("model.statsCountNonPM") <= this.get("model.stream.itemsLoaded");
|
|
}
|
|
this.set("controllers.application.showFooter", showFooter);
|
|
}.observes("userActionType", "model.stream.itemsLoaded"),
|
|
|
|
actions: {
|
|
exportUserArchive() {
|
|
bootbox.confirm(
|
|
I18n.t("admin.export_csv.user_archive_confirm"),
|
|
I18n.t("no_value"),
|
|
I18n.t("yes_value"),
|
|
function(confirmed) {
|
|
if (confirmed) {
|
|
exportUserArchive();
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
});
|