improve list of reviews for gerrit widget
This commit is contained in:
parent
9c007404be
commit
ddc36b526d
|
@ -8,11 +8,15 @@
|
||||||
-- @copyright 2019 Pavel Makhov
|
-- @copyright 2019 Pavel Makhov
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
|
||||||
|
local awful = require("awful")
|
||||||
local wibox = require("wibox")
|
local wibox = require("wibox")
|
||||||
local watch = require("awful.widget.watch")
|
local watch = require("awful.widget.watch")
|
||||||
local json = require("json")
|
local json = require("json")
|
||||||
local spawn = require("awful.spawn")
|
local spawn = require("awful.spawn")
|
||||||
local naughty = require("naughty")
|
local naughty = require("naughty")
|
||||||
|
local gears = require("gears")
|
||||||
|
local beautiful = require("beautiful")
|
||||||
|
|
||||||
|
|
||||||
local path_to_icons = "/usr/share/icons/Arc/status/symbolic/"
|
local path_to_icons = "/usr/share/icons/Arc/status/symbolic/"
|
||||||
|
|
||||||
|
@ -30,12 +34,37 @@ local function worker(args)
|
||||||
local query = args.query or 'is:reviewer AND status:open AND NOT is:wip'
|
local query = args.query or 'is:reviewer AND status:open AND NOT is:wip'
|
||||||
|
|
||||||
local reviews
|
local reviews
|
||||||
local notification_text
|
|
||||||
local current_number_of_reviews
|
local current_number_of_reviews
|
||||||
local previous_number_of_reviews = 0
|
local previous_number_of_reviews = 0
|
||||||
|
|
||||||
gerrit_widget = wibox.widget{
|
local rows = {
|
||||||
widget = wibox.widget.textbox
|
{
|
||||||
|
text = 'asdR',
|
||||||
|
widget = wibox.widget.textbox
|
||||||
|
},
|
||||||
|
layout = wibox.layout.fixed.vertical,
|
||||||
|
}
|
||||||
|
|
||||||
|
local popup = awful.popup{
|
||||||
|
visible = true,
|
||||||
|
ontop = true,
|
||||||
|
visible = false,
|
||||||
|
shape = gears.shape.rounded_rect,
|
||||||
|
border_width = 1,
|
||||||
|
preferred_positions = top,
|
||||||
|
widget = {}
|
||||||
|
}
|
||||||
|
|
||||||
|
gerrit_widget = wibox.widget {
|
||||||
|
--{
|
||||||
|
id = txt,
|
||||||
|
widget = wibox.widget.textbox
|
||||||
|
--},
|
||||||
|
--{
|
||||||
|
-- image = os.getenv("HOME") .. '/.config/awesome/awesome-wm-widgets/gerrit-widget/Gerrit_icon.svg',
|
||||||
|
-- widget = wibox.widget.imagebox
|
||||||
|
--},
|
||||||
|
--layout = wibox.layout.fixed.horizontal,
|
||||||
}
|
}
|
||||||
|
|
||||||
local function get_name_by_id(id)
|
local function get_name_by_id(id)
|
||||||
|
@ -43,7 +72,7 @@ local function worker(args)
|
||||||
if res == nil then
|
if res == nil then
|
||||||
res = ''
|
res = ''
|
||||||
spawn.easy_async(string.format(GET_USERNAME_CMD, host, id), function(stdout, stderr, reason, exit_code)
|
spawn.easy_async(string.format(GET_USERNAME_CMD, host, id), function(stdout, stderr, reason, exit_code)
|
||||||
name_dict[tonumber(id)] = stdout
|
name_dict[tonumber(id)] = string.gsub(stdout, "\n", "")
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
return res
|
return res
|
||||||
|
@ -66,27 +95,60 @@ local function worker(args)
|
||||||
previous_number_of_reviews = current_number_of_reviews
|
previous_number_of_reviews = current_number_of_reviews
|
||||||
widget.text = current_number_of_reviews
|
widget.text = current_number_of_reviews
|
||||||
|
|
||||||
notification_text = ''
|
count = #rows
|
||||||
|
for i=0, count do rows[i]=nil end
|
||||||
for _, review in ipairs(reviews) do
|
for _, review in ipairs(reviews) do
|
||||||
notification_text = notification_text .. "<b>" .. review.project ..'</b> / ' .. get_name_by_id(review.owner._account_id) .. review.subject ..'\n'
|
local row = wibox.widget {
|
||||||
|
{
|
||||||
|
{
|
||||||
|
{
|
||||||
|
text = review.project .. ' / ' .. get_name_by_id(review.owner._account_id),
|
||||||
|
widget = wibox.widget.textbox
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text = review.subject,
|
||||||
|
widget = wibox.widget.textbox
|
||||||
|
},
|
||||||
|
layout = wibox.layout.align.vertical
|
||||||
|
},
|
||||||
|
margins = 5,
|
||||||
|
layout = wibox.container.margin
|
||||||
|
},
|
||||||
|
widget = wibox.container.background
|
||||||
|
}
|
||||||
|
|
||||||
|
row:connect_signal("button::release", function(_, _, _, button)
|
||||||
|
spawn.with_shell("google-chrome https://" .. host .. '/' .. review._number)
|
||||||
|
end)
|
||||||
|
|
||||||
|
row:connect_signal("mouse::enter", function(c)
|
||||||
|
c:set_bg(beautiful.bg_focus)
|
||||||
|
end)
|
||||||
|
|
||||||
|
row:connect_signal("mouse::leave", function(c)
|
||||||
|
c:set_bg(beautiful.bg_normal)
|
||||||
|
end)
|
||||||
|
|
||||||
|
table.insert(rows, row)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
popup:setup(rows)
|
||||||
end
|
end
|
||||||
|
|
||||||
local notification
|
gerrit_widget:buttons(
|
||||||
gerrit_widget:connect_signal("mouse::enter", function()
|
awful.util.table.join(
|
||||||
notification = naughty.notify{
|
awful.button({}, 1, function()
|
||||||
text = notification_text,
|
--awful.placement.top_right(w, { margins = {top = 25, right = 10}, parent = awful.screen.focused() })
|
||||||
timeout = 20,
|
--w.visible = not w.visible
|
||||||
position = position,
|
awful.placement.top_right(popup, { margins = { top = 25, right = 10}, parent = awful.screen.focused() })
|
||||||
width = (500)
|
popup.visible = not popup.visible
|
||||||
}
|
--ww:move_next_to(gerrit_widget)
|
||||||
end)
|
--awful.placement.next_to(ww, gerrit_widget)
|
||||||
|
end)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
gerrit_widget:connect_signal("mouse::leave", function()
|
watch(string.format(GET_CHANGES_CMD, host, query:gsub(" ", "+")), 5, update_graphic, gerrit_widget)
|
||||||
naughty.destroy(notification)
|
|
||||||
end)
|
|
||||||
|
|
||||||
watch(string.format(GET_CHANGES_CMD, host, query:gsub(" ", "+")), 1, update_graphic, gerrit_widget)
|
|
||||||
return gerrit_widget
|
return gerrit_widget
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue