mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
81 lines
2.0 KiB
JavaScript
81 lines
2.0 KiB
JavaScript
import { observes, on } from "discourse-common/utils/decorators";
|
|
import Component from "@ember/component";
|
|
import I18n from "I18n";
|
|
import discourseDebounce from "discourse-common/lib/debounce";
|
|
import { scheduleOnce } from "@ember/runloop";
|
|
|
|
export default Component.extend({
|
|
classNames: ["admin-backups-logs"],
|
|
showLoadingSpinner: false,
|
|
hasFormattedLogs: false,
|
|
noLogsMessage: I18n.t("admin.backups.logs.none"),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this._reset();
|
|
},
|
|
|
|
_reset() {
|
|
this.setProperties({ formattedLogs: "", index: 0 });
|
|
},
|
|
|
|
_scrollDown() {
|
|
const div = this.element;
|
|
div.scrollTop = div.scrollHeight;
|
|
},
|
|
|
|
@on("init")
|
|
@observes("logs.[]")
|
|
_resetFormattedLogs() {
|
|
if (this.logs.length === 0) {
|
|
this._reset(); // reset the cached logs whenever the model is reset
|
|
this.renderLogs();
|
|
}
|
|
},
|
|
|
|
_updateFormattedLogsFunc() {
|
|
const logs = this.logs;
|
|
if (logs.length === 0) {
|
|
return;
|
|
}
|
|
|
|
// do the log formatting only once for HELLish performance
|
|
let formattedLogs = this.formattedLogs;
|
|
for (let i = this.index, length = logs.length; i < length; i++) {
|
|
const date = logs[i].get("timestamp"),
|
|
message = logs[i].get("message");
|
|
formattedLogs += "[" + date + "] " + message + "\n";
|
|
}
|
|
// update the formatted logs & cache index
|
|
this.setProperties({
|
|
formattedLogs,
|
|
index: logs.length,
|
|
});
|
|
// force rerender
|
|
this.renderLogs();
|
|
|
|
scheduleOnce("afterRender", this, this._scrollDown);
|
|
},
|
|
|
|
@on("init")
|
|
@observes("logs.[]")
|
|
_updateFormattedLogs() {
|
|
discourseDebounce(this, this._updateFormattedLogsFunc, 150);
|
|
},
|
|
|
|
renderLogs() {
|
|
const formattedLogs = this.formattedLogs;
|
|
if (formattedLogs && formattedLogs.length > 0) {
|
|
this.set("hasFormattedLogs", true);
|
|
} else {
|
|
this.set("hasFormattedLogs", false);
|
|
}
|
|
// add a loading indicator
|
|
if (this.get("status.isOperationRunning")) {
|
|
this.set("showLoadingSpinner", true);
|
|
} else {
|
|
this.set("showLoadingSpinner", false);
|
|
}
|
|
},
|
|
});
|