2020-01-04 00:18:51 +00:00
|
|
|
local BD = require("ui/bidi")
|
2017-09-22 16:24:38 +00:00
|
|
|
local ButtonDialogTitle = require("ui/widget/buttondialogtitle")
|
2021-07-23 15:14:25 +00:00
|
|
|
local ConfirmBox = require("ui/widget/confirmbox")
|
2017-07-01 10:11:44 +00:00
|
|
|
local FileManagerBookInfo = require("apps/filemanager/filemanagerbookinfo")
|
2014-08-14 11:49:42 +00:00
|
|
|
local Menu = require("ui/widget/menu")
|
2017-04-25 16:49:39 +00:00
|
|
|
local UIManager = require("ui/uimanager")
|
Clarify our OOP semantics across the codebase (#9586)
Basically:
* Use `extend` for class definitions
* Use `new` for object instantiations
That includes some minor code cleanups along the way:
* Updated `Widget`'s docs to make the semantics clearer.
* Removed `should_restrict_JIT` (it's been dead code since https://github.com/koreader/android-luajit-launcher/pull/283)
* Minor refactoring of LuaSettings/LuaData/LuaDefaults/DocSettings to behave (mostly, they are instantiated via `open` instead of `new`) like everything else and handle inheritance properly (i.e., DocSettings is now a proper LuaSettings subclass).
* Default to `WidgetContainer` instead of `InputContainer` for stuff that doesn't actually setup key/gesture events.
* Ditto for explicit `*Listener` only classes, make sure they're based on `EventListener` instead of something uselessly fancier.
* Unless absolutely necessary, do not store references in class objects, ever; only values. Instead, always store references in instances, to avoid both sneaky inheritance issues, and sneaky GC pinning of stale references.
* ReaderUI: Fix one such issue with its `active_widgets` array, with critical implications, as it essentially pinned *all* of ReaderUI's modules, including their reference to the `Document` instance (i.e., that was a big-ass leak).
* Terminal: Make sure the shell is killed on plugin teardown.
* InputText: Fix Home/End/Del physical keys to behave sensibly.
* InputContainer/WidgetContainer: If necessary, compute self.dimen at paintTo time (previously, only InputContainers did, which might have had something to do with random widgets unconcerned about input using it as a baseclass instead of WidgetContainer...).
* OverlapGroup: Compute self.dimen at *init* time, because for some reason it needs to do that, but do it directly in OverlapGroup instead of going through a weird WidgetContainer method that it was the sole user of.
* ReaderCropping: Under no circumstances should a Document instance member (here, self.bbox) risk being `nil`ed!
* Kobo: Minor code cleanups.
2022-10-06 00:14:48 +00:00
|
|
|
local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
2014-10-30 18:42:18 +00:00
|
|
|
local Screen = require("device").screen
|
2017-09-22 16:24:38 +00:00
|
|
|
local filemanagerutil = require("apps/filemanager/filemanagerutil")
|
2013-10-18 20:38:07 +00:00
|
|
|
local _ = require("gettext")
|
2022-03-15 15:16:04 +00:00
|
|
|
local C_ = _.pgettext
|
2023-02-17 21:06:55 +00:00
|
|
|
local T = require("ffi/util").template
|
2017-04-25 16:49:39 +00:00
|
|
|
|
Clarify our OOP semantics across the codebase (#9586)
Basically:
* Use `extend` for class definitions
* Use `new` for object instantiations
That includes some minor code cleanups along the way:
* Updated `Widget`'s docs to make the semantics clearer.
* Removed `should_restrict_JIT` (it's been dead code since https://github.com/koreader/android-luajit-launcher/pull/283)
* Minor refactoring of LuaSettings/LuaData/LuaDefaults/DocSettings to behave (mostly, they are instantiated via `open` instead of `new`) like everything else and handle inheritance properly (i.e., DocSettings is now a proper LuaSettings subclass).
* Default to `WidgetContainer` instead of `InputContainer` for stuff that doesn't actually setup key/gesture events.
* Ditto for explicit `*Listener` only classes, make sure they're based on `EventListener` instead of something uselessly fancier.
* Unless absolutely necessary, do not store references in class objects, ever; only values. Instead, always store references in instances, to avoid both sneaky inheritance issues, and sneaky GC pinning of stale references.
* ReaderUI: Fix one such issue with its `active_widgets` array, with critical implications, as it essentially pinned *all* of ReaderUI's modules, including their reference to the `Document` instance (i.e., that was a big-ass leak).
* Terminal: Make sure the shell is killed on plugin teardown.
* InputText: Fix Home/End/Del physical keys to behave sensibly.
* InputContainer/WidgetContainer: If necessary, compute self.dimen at paintTo time (previously, only InputContainers did, which might have had something to do with random widgets unconcerned about input using it as a baseclass instead of WidgetContainer...).
* OverlapGroup: Compute self.dimen at *init* time, because for some reason it needs to do that, but do it directly in OverlapGroup instead of going through a weird WidgetContainer method that it was the sole user of.
* ReaderCropping: Under no circumstances should a Document instance member (here, self.bbox) risk being `nil`ed!
* Kobo: Minor code cleanups.
2022-10-06 00:14:48 +00:00
|
|
|
local FileManagerHistory = WidgetContainer:extend{
|
2014-03-13 13:52:43 +00:00
|
|
|
hist_menu_title = _("History"),
|
2013-08-14 09:29:05 +00:00
|
|
|
}
|
|
|
|
|
2022-12-02 15:56:00 +00:00
|
|
|
local filter_text = {
|
2022-03-15 15:16:04 +00:00
|
|
|
all = C_("Book status filter", "All"),
|
|
|
|
reading = C_("Book status filter", "Reading"),
|
|
|
|
abandoned = C_("Book status filter", "On hold"),
|
|
|
|
complete = C_("Book status filter", "Finished"),
|
|
|
|
deleted = C_("Book status filter", "Deleted"),
|
|
|
|
new = C_("Book status filter", "New"),
|
2022-03-12 10:26:11 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 09:29:05 +00:00
|
|
|
function FileManagerHistory:init()
|
2014-03-13 13:52:43 +00:00
|
|
|
self.ui.menu:registerToMainMenu(self)
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
2017-03-04 13:46:38 +00:00
|
|
|
function FileManagerHistory:addToMainMenu(menu_items)
|
|
|
|
menu_items.history = {
|
2016-02-17 07:10:23 +00:00
|
|
|
text = self.hist_menu_title,
|
|
|
|
callback = function()
|
|
|
|
self:onShowHist()
|
|
|
|
end,
|
2017-02-28 21:46:32 +00:00
|
|
|
}
|
2016-02-17 07:10:23 +00:00
|
|
|
end
|
|
|
|
|
2022-12-02 15:56:00 +00:00
|
|
|
function FileManagerHistory:fetchStatuses(count)
|
|
|
|
for _, v in ipairs(require("readhistory").hist) do
|
2023-02-17 21:06:55 +00:00
|
|
|
v.status = v.dim and "deleted" or filemanagerutil.getStatus(v.file)
|
|
|
|
if v.status == "new" and v.file == (self.ui.document and self.ui.document.file) then
|
|
|
|
v.status = "reading" -- file currently opened for the first time
|
2022-12-02 15:56:00 +00:00
|
|
|
end
|
|
|
|
if count then
|
2023-02-17 21:06:55 +00:00
|
|
|
self.count[v.status] = self.count[v.status] + 1
|
2022-12-02 15:56:00 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
self.statuses_fetched = true
|
|
|
|
end
|
|
|
|
|
2016-02-17 07:10:23 +00:00
|
|
|
function FileManagerHistory:updateItemTable()
|
2017-09-22 16:24:38 +00:00
|
|
|
-- try to stay on current page
|
|
|
|
local select_number = nil
|
2022-03-12 10:26:11 +00:00
|
|
|
if self.hist_menu.page and self.hist_menu.perpage and self.hist_menu.page > 0 then
|
2017-09-22 16:24:38 +00:00
|
|
|
select_number = (self.hist_menu.page - 1) * self.hist_menu.perpage + 1
|
|
|
|
end
|
2022-03-12 10:26:11 +00:00
|
|
|
self.count = { all = #require("readhistory").hist,
|
|
|
|
reading = 0, abandoned = 0, complete = 0, deleted = 0, new = 0, }
|
|
|
|
local item_table = {}
|
|
|
|
for _, v in ipairs(require("readhistory").hist) do
|
2022-12-02 15:56:00 +00:00
|
|
|
if self.filter == "all" or v.status == self.filter then
|
2022-03-12 10:26:11 +00:00
|
|
|
table.insert(item_table, v)
|
|
|
|
end
|
|
|
|
if self.statuses_fetched then
|
|
|
|
self.count[v.status] = self.count[v.status] + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local title = self.hist_menu_title
|
2022-12-02 15:56:00 +00:00
|
|
|
if self.filter ~= "all" then
|
|
|
|
title = title .. " (" .. filter_text[self.filter] .. ": " .. self.count[self.filter] .. ")"
|
2022-03-12 10:26:11 +00:00
|
|
|
end
|
|
|
|
self.hist_menu:switchItemTable(title, item_table, select_number)
|
2016-02-17 07:10:23 +00:00
|
|
|
end
|
|
|
|
|
2013-08-14 09:29:05 +00:00
|
|
|
function FileManagerHistory:onSetDimensions(dimen)
|
2014-03-13 13:52:43 +00:00
|
|
|
self.dimen = dimen
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
2014-01-22 18:03:44 +00:00
|
|
|
function FileManagerHistory:onMenuHold(item)
|
2017-09-22 16:24:38 +00:00
|
|
|
self.histfile_dialog = nil
|
2023-02-04 21:05:06 +00:00
|
|
|
local function status_button_callback()
|
2023-02-17 21:06:55 +00:00
|
|
|
UIManager:close(self.histfile_dialog)
|
2023-02-04 21:05:06 +00:00
|
|
|
if self._manager.filter ~= "all" then
|
|
|
|
self._manager:fetchStatuses(false)
|
|
|
|
else
|
|
|
|
self._manager.statuses_fetched = false
|
|
|
|
end
|
|
|
|
self._manager:updateItemTable()
|
2023-02-17 21:06:55 +00:00
|
|
|
self._manager.files_updated = true -- sidecar folder may be created/deleted
|
|
|
|
end
|
|
|
|
local is_currently_opened = item.file == (self.ui.document and self.ui.document.file)
|
|
|
|
|
|
|
|
local buttons = {}
|
|
|
|
if not (item.dim or is_currently_opened) then
|
|
|
|
table.insert(buttons, filemanagerutil.genStatusButtonsRow(item.file, status_button_callback))
|
|
|
|
table.insert(buttons, {}) -- separator
|
2023-02-04 20:32:43 +00:00
|
|
|
end
|
2023-02-17 21:06:55 +00:00
|
|
|
table.insert(buttons, {
|
|
|
|
filemanagerutil.genResetSettingsButton(item.file, status_button_callback, is_currently_opened),
|
2017-09-22 16:24:38 +00:00
|
|
|
{
|
2023-02-17 21:06:55 +00:00
|
|
|
text = _("Remove from history"),
|
|
|
|
callback = function()
|
|
|
|
UIManager:close(self.histfile_dialog)
|
|
|
|
require("readhistory"):removeItem(item)
|
|
|
|
self._manager:updateItemTable()
|
|
|
|
end,
|
2017-09-22 16:24:38 +00:00
|
|
|
},
|
2023-02-17 21:06:55 +00:00
|
|
|
})
|
|
|
|
table.insert(buttons, {
|
2017-09-22 16:24:38 +00:00
|
|
|
{
|
2023-02-17 21:06:55 +00:00
|
|
|
text = _("Delete"),
|
|
|
|
enabled = not (item.dim or is_currently_opened),
|
|
|
|
callback = function()
|
|
|
|
local function post_delete_callback()
|
2017-09-22 16:24:38 +00:00
|
|
|
UIManager:close(self.histfile_dialog)
|
2023-02-17 21:06:55 +00:00
|
|
|
self._manager:updateItemTable()
|
|
|
|
self._manager.files_updated = true
|
|
|
|
end
|
|
|
|
local FileManager = require("apps/filemanager/filemanager")
|
|
|
|
FileManager:showDeleteFileDialog(item.file, post_delete_callback)
|
|
|
|
end,
|
2017-09-22 16:24:38 +00:00
|
|
|
},
|
2023-02-17 21:06:55 +00:00
|
|
|
{
|
|
|
|
text = _("Book information"),
|
|
|
|
id = "book_information", -- used by covermenu
|
|
|
|
enabled = not item.dim,
|
|
|
|
callback = function()
|
|
|
|
UIManager:close(self.histfile_dialog)
|
|
|
|
FileManagerBookInfo:show(item.file)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
})
|
2023-03-07 20:24:42 +00:00
|
|
|
table.insert(buttons, {
|
|
|
|
{
|
|
|
|
text = _("Book cover"),
|
|
|
|
id = "book_cover", -- used by covermenu
|
|
|
|
callback = function()
|
|
|
|
UIManager:close(self.histfile_dialog)
|
|
|
|
FileManagerBookInfo:onShowBookCover(item.file)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text = _("Book description"),
|
|
|
|
id = "book_description", -- used by covermenu
|
|
|
|
callback = function()
|
|
|
|
UIManager:close(self.histfile_dialog)
|
|
|
|
FileManagerBookInfo:onShowBookDescription(nil, item.file)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
})
|
2023-02-17 21:06:55 +00:00
|
|
|
|
2017-09-22 16:24:38 +00:00
|
|
|
self.histfile_dialog = ButtonDialogTitle:new{
|
2020-01-04 00:18:51 +00:00
|
|
|
title = BD.filename(item.text:match("([^/]+)$")),
|
2017-09-22 16:24:38 +00:00
|
|
|
title_align = "center",
|
|
|
|
buttons = buttons,
|
|
|
|
}
|
2014-03-13 13:52:43 +00:00
|
|
|
UIManager:show(self.histfile_dialog)
|
|
|
|
return true
|
2014-01-22 18:03:44 +00:00
|
|
|
end
|
2013-08-14 09:29:05 +00:00
|
|
|
|
2021-04-09 21:12:15 +00:00
|
|
|
-- Can't *actually* name it onSetRotationMode, or it also fires in FM itself ;).
|
|
|
|
function FileManagerHistory:MenuSetRotationModeHandler(rotation)
|
|
|
|
if rotation ~= nil and rotation ~= Screen:getRotationMode() then
|
|
|
|
UIManager:close(self._manager.hist_menu)
|
|
|
|
-- Also re-layout ReaderView or FileManager itself
|
|
|
|
if self._manager.ui.view and self._manager.ui.view.onSetRotationMode then
|
|
|
|
self._manager.ui.view:onSetRotationMode(rotation)
|
|
|
|
elseif self._manager.ui.onSetRotationMode then
|
|
|
|
self._manager.ui:onSetRotationMode(rotation)
|
|
|
|
else
|
|
|
|
Screen:setRotationMode(rotation)
|
|
|
|
end
|
|
|
|
self._manager:onShowHist()
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2014-01-22 18:03:44 +00:00
|
|
|
function FileManagerHistory:onShowHist()
|
2014-03-13 13:52:43 +00:00
|
|
|
self.hist_menu = Menu:new{
|
|
|
|
ui = self.ui,
|
2017-08-14 11:15:12 +00:00
|
|
|
width = Screen:getWidth(),
|
|
|
|
height = Screen:getHeight(),
|
2018-03-17 22:02:32 +00:00
|
|
|
covers_fullscreen = true, -- hint for UIManager:_repaint()
|
2017-08-14 11:15:12 +00:00
|
|
|
is_borderless = true,
|
2017-09-24 12:46:50 +00:00
|
|
|
is_popout = false,
|
2022-03-12 10:26:11 +00:00
|
|
|
title_bar_left_icon = "appbar.menu",
|
|
|
|
onLeftButtonTap = function() self:showHistDialog() end,
|
2014-03-13 13:52:43 +00:00
|
|
|
onMenuHold = self.onMenuHold,
|
2021-04-09 21:12:15 +00:00
|
|
|
onSetRotationMode = self.MenuSetRotationModeHandler,
|
2014-03-13 13:52:43 +00:00
|
|
|
_manager = self,
|
|
|
|
}
|
2021-04-09 17:38:17 +00:00
|
|
|
|
2022-12-02 15:56:00 +00:00
|
|
|
self.filter = G_reader_settings:readSetting("history_filter", "all")
|
|
|
|
if self.filter ~= "all" then
|
|
|
|
self:fetchStatuses(false)
|
|
|
|
end
|
2014-03-13 13:52:43 +00:00
|
|
|
self:updateItemTable()
|
|
|
|
self.hist_menu.close_callback = function()
|
2023-02-17 21:06:55 +00:00
|
|
|
if self.files_updated then -- refresh Filemanager list of files
|
|
|
|
local FileManager = require("apps/filemanager/filemanager")
|
|
|
|
if FileManager.instance then
|
|
|
|
FileManager.instance:onRefresh()
|
|
|
|
end
|
|
|
|
self.files_updated = nil
|
|
|
|
end
|
2022-03-12 10:26:11 +00:00
|
|
|
self.statuses_fetched = nil
|
ReaderUI: Saner FM/RD lifecycle
* Ensure that going from one to the other tears down the former and
its plugins before instantiating the latter and its plugins.
UIManager: Unify Event sending & broadcasting
* Make the two behave the same way (walk the widget stack from top to
bottom), and properly handle the window stack shrinking shrinking
*and* growing.
Previously, broadcasting happened bottom-to-top and didn't really
handle the list shrinking/growing, while sending only handled the list
shrinking by a single element, and hopefully that element being the one
the event was just sent to.
These two items combined allowed us to optimize suboptimal
refresh behavior with Menu and other Menu classes when
opening/closing a document.
e.g., the "opening document" Notification is now properly regional,
and the "open last doc" option no longer flashes like a crazy person
anymore.
Plugins: Allow optimizing Menu refresh with custom menus, too.
Requires moving Menu's close_callback *after* onMenuSelect, which, eh,
probably makes sense, and is probably harmless in the grand scheme of
things.
2021-05-01 16:53:04 +00:00
|
|
|
UIManager:close(self.hist_menu)
|
2022-12-02 15:56:00 +00:00
|
|
|
G_reader_settings:saveSetting("history_filter", self.filter)
|
2014-03-13 13:52:43 +00:00
|
|
|
end
|
2017-08-18 08:02:11 +00:00
|
|
|
UIManager:show(self.hist_menu)
|
2014-03-13 13:52:43 +00:00
|
|
|
return true
|
2013-08-14 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
2022-03-12 10:26:11 +00:00
|
|
|
function FileManagerHistory:showHistDialog()
|
|
|
|
if not self.statuses_fetched then
|
2022-12-02 15:56:00 +00:00
|
|
|
self:fetchStatuses(true)
|
2022-03-12 10:26:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
local hist_dialog
|
|
|
|
local buttons = {}
|
2022-12-02 15:56:00 +00:00
|
|
|
local function genFilterButton(filter)
|
2022-03-12 10:26:11 +00:00
|
|
|
return {
|
2022-12-02 15:56:00 +00:00
|
|
|
text = T(_("%1 (%2)"), filter_text[filter], self.count[filter]),
|
2022-03-12 10:26:11 +00:00
|
|
|
callback = function()
|
|
|
|
UIManager:close(hist_dialog)
|
2022-12-02 15:56:00 +00:00
|
|
|
self.filter = filter
|
2022-03-12 10:26:11 +00:00
|
|
|
self:updateItemTable()
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
table.insert(buttons, {
|
|
|
|
genFilterButton("reading"),
|
|
|
|
genFilterButton("abandoned"),
|
|
|
|
genFilterButton("complete"),
|
|
|
|
})
|
|
|
|
table.insert(buttons, {
|
|
|
|
genFilterButton("all"),
|
|
|
|
genFilterButton("new"),
|
2023-02-17 21:06:55 +00:00
|
|
|
genFilterButton("deleted"),
|
2022-03-12 10:26:11 +00:00
|
|
|
})
|
|
|
|
if self.count.deleted > 0 then
|
2023-02-17 21:06:55 +00:00
|
|
|
table.insert(buttons, {}) -- separator
|
2022-03-12 10:26:11 +00:00
|
|
|
table.insert(buttons, {
|
|
|
|
{
|
|
|
|
text = _("Clear history of deleted files"),
|
|
|
|
callback = function()
|
|
|
|
UIManager:show(ConfirmBox:new{
|
|
|
|
text = _("Clear history of deleted files?"),
|
|
|
|
ok_text = _("Clear"),
|
|
|
|
ok_callback = function()
|
|
|
|
UIManager:close(hist_dialog)
|
|
|
|
require("readhistory"):clearMissing()
|
|
|
|
self:updateItemTable()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end,
|
2023-02-17 21:06:55 +00:00
|
|
|
},
|
2022-03-12 10:26:11 +00:00
|
|
|
})
|
|
|
|
end
|
|
|
|
hist_dialog = ButtonDialogTitle:new{
|
|
|
|
title = _("Filter by book status"),
|
|
|
|
title_align = "center",
|
|
|
|
buttons = buttons,
|
|
|
|
}
|
|
|
|
UIManager:show(hist_dialog)
|
|
|
|
end
|
|
|
|
|
2014-01-22 18:03:44 +00:00
|
|
|
return FileManagerHistory
|