2
0
mirror of https://github.com/koreader/koreader synced 2024-11-11 19:11:14 +00:00
koreader/frontend/apps/filemanager/filemanagerhistory.lua

114 lines
3.2 KiB
Lua
Raw Normal View History

2013-10-18 20:38:07 +00:00
local InputContainer = require("ui/widget/container/inputcontainer")
local CenterContainer = require("ui/widget/container/centercontainer")
local Menu = require("ui/widget/menu")
local ButtonDialog = require("ui/widget/buttondialog")
2013-10-18 20:38:07 +00:00
local Screen = require("ui/screen")
local UIManager = require("ui/uimanager")
local DocSettings = require("docsettings")
local DEBUG = require("dbg")
2013-10-18 20:38:07 +00:00
local _ = require("gettext")
local history_dir = "./history/"
2013-10-18 20:38:07 +00:00
local FileManagerHistory = InputContainer:extend{
2014-03-13 13:52:43 +00:00
hist_menu_title = _("History"),
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
function FileManagerHistory:onSetDimensions(dimen)
2014-03-13 13:52:43 +00:00
self.dimen = dimen
2013-08-14 09:29:05 +00:00
end
function FileManagerHistory:onMenuHold(item)
2014-03-13 13:52:43 +00:00
self.histfile_dialog = ButtonDialog:new{
buttons = {
{
{
text = _("Delete"),
callback = function()
os.remove(history_dir..item.histfile)
self._manager:updateItemTable()
UIManager:close(self.histfile_dialog)
end,
},
},
},
}
UIManager:show(self.histfile_dialog)
return true
end
2013-08-14 09:29:05 +00:00
function FileManagerHistory:onShowHist()
2014-03-13 13:52:43 +00:00
local menu_container = CenterContainer:new{
dimen = Screen:getSize(),
}
2013-08-14 09:29:05 +00:00
2014-03-13 13:52:43 +00:00
self.hist_menu = Menu:new{
ui = self.ui,
width = Screen:getWidth()-50,
height = Screen:getHeight()-50,
show_parent = menu_container,
onMenuHold = self.onMenuHold,
_manager = self,
}
self:updateItemTable()
2013-08-14 09:29:05 +00:00
2014-03-13 13:52:43 +00:00
table.insert(menu_container, self.hist_menu)
2013-08-14 09:29:05 +00:00
2014-03-13 13:52:43 +00:00
self.hist_menu.close_callback = function()
UIManager:close(menu_container)
end
2013-08-14 09:29:05 +00:00
2014-03-13 13:52:43 +00:00
UIManager:show(menu_container)
return true
2013-08-14 09:29:05 +00:00
end
function FileManagerHistory:addToMainMenu(tab_item_table)
2014-03-13 13:52:43 +00:00
-- insert table to main reader menu
table.insert(tab_item_table.main, {
text = self.hist_menu_title,
callback = function()
self:onShowHist()
end,
})
2013-08-14 09:29:05 +00:00
end
function FileManagerHistory:updateItemTable()
2014-03-13 13:52:43 +00:00
function readHistDir(re)
local sorted_files = {}
for f in lfs.dir(history_dir) do
local path = history_dir..f
if lfs.attributes(path, "mode") == "file" then
table.insert(sorted_files, {file = f, date = lfs.attributes(path, "modification")})
end
end
table.sort(sorted_files, function(v1,v2) return v1.date > v2.date end)
for _, v in pairs(sorted_files) do
table.insert(re, {
dir = DocSettings:getPathFromHistory(v.file),
name = DocSettings:getNameFromHistory(v.file),
histfile = v.file,
})
end
end
2013-08-14 09:29:05 +00:00
2014-03-13 13:52:43 +00:00
self.hist = {}
local last_files = {}
readHistDir(last_files)
for _,v in pairs(last_files) do
table.insert(self.hist, {
text = v.name,
histfile = v.histfile,
callback = function()
showReaderUI(v.dir .. "/" .. v.name)
end
})
end
self.hist_menu:swithItemTable(self.hist_menu_title, self.hist)
2013-08-14 09:29:05 +00:00
end
return FileManagerHistory