diff options
author | Adam <adamdharrison@gmail.com> | 2023-12-04 16:51:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 16:51:30 -0500 |
commit | 7d7defca57e26b89087fe5ef656a405d0ee8ed78 (patch) | |
tree | f3ff56d9343cb35f7a0a5588f83c0b71ef51d8ef /plugins/plugin_manager/plugin_view.lua | |
parent | dba23140b99d1195f570bb76aa19a9091d4ced5d (diff) | |
parent | 134fdfa3e1622a21049ec1789624c8eb98b76278 (diff) | |
download | lite-xl-plugin-manager-7d7defca57e26b89087fe5ef656a405d0ee8ed78.tar.gz lite-xl-plugin-manager-7d7defca57e26b89087fe5ef656a405d0ee8ed78.zip |
Merge pull request #32 from lite-xl/PR/welcome-plugin
Welcome Plugin
Diffstat (limited to 'plugins/plugin_manager/plugin_view.lua')
-rw-r--r-- | plugins/plugin_manager/plugin_view.lua | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/plugins/plugin_manager/plugin_view.lua b/plugins/plugin_manager/plugin_view.lua index 9e9d67c..f8f503b 100644 --- a/plugins/plugin_manager/plugin_view.lua +++ b/plugins/plugin_manager/plugin_view.lua @@ -145,20 +145,25 @@ local function draw_loading_bar(x, y, width, height, percent) renderer.draw_rect(x, y, width * percent, height, style.caret) end +function PluginView:draw_loading_screen(label, percent) + common.draw_text(style.big_font, style.dim, "Loading...", "center", self.position.x, self.position.y, self.size.x, self.size.y) + local width = self.size.x / 2 + local offset_y = self.size.y / 2 + if label or percent then + local th = style.font:get_height() + local lh = th + style.padding.y + common.draw_text(style.font, style.dim, label, "center", self.position.x, self.position.y + offset_y + lh, self.size.x, lh) + draw_loading_bar(self.position.x + (self.size.x / 2) - (width / 2), self.position.y + self.size.y / 2 + (lh * 2), width, lh, percent) + end +end + function PluginView:draw() self:draw_background(style.background) local th = style.font:get_height() local lh = th + style.padding.y if not self.initialized or not self.widths then - common.draw_text(style.big_font, style.dim, "Loading...", "center", self.position.x, self.position.y, self.size.x, self.size.y) - local width = self.size.x / 2 - local offset_y = self.size.y / 2 - if self.progress then - common.draw_text(style.font, style.dim, self.progress.label, "center", self.position.x, self.position.y + offset_y + lh, self.size.x, lh) - draw_loading_bar(self.position.x + (self.size.x / 2) - (width / 2), self.position.y + self.size.y / 2 + (lh * 2), width, lh, self.progress.percent) - end - return + return self:draw_loading_screen(self.progress and self.progress.label, self.progress and self.progress.percent) end |