diff --git a/octoprint/static/js/ui.js b/octoprint/static/js/ui.js index dda2fa7..1bec8c8 100644 --- a/octoprint/static/js/ui.js +++ b/octoprint/static/js/ui.js @@ -686,6 +686,15 @@ function GcodeFilesViewModel() { self.currentPage = ko.observable(0); self.currentSorting = ko.observable("name"); self.currentFilters = ko.observableArray([]); + + if( localStorage["currentSorting"] ) + self.currentSorting( localStorage["currentSorting"] ); + + if( localStorage["filterPrinted"] == 1 ) { + var filters = self.currentFilters(); + filters.push("printed"); + self.currentFilters(_.uniq(filters)); + } self.paginatedFiles = ko.dependentObservable(function() { if (self.files() == undefined) { @@ -806,6 +815,7 @@ function GcodeFilesViewModel() { return; self.currentSorting(sorting); + localStorage["currentSorting"] = self.currentSorting(); //store setting in local storage self.changePage(0); self._updateFiles(); } @@ -825,6 +835,7 @@ function GcodeFilesViewModel() { var filters = self.currentFilters(); filters.push(filter); self.currentFilters(_.uniq(filters)); + localStorage["filterPrinted"] = 1; self._updateFiles(); } @@ -833,6 +844,7 @@ function GcodeFilesViewModel() { return; self.currentFilters(_.without(self.currentFilters(), filter)); + localStorage["filterPrinted"] = 0; self._updateFiles(); }