aboutsummaryrefslogtreecommitdiff
path: root/plugins/statusclock.lua
blob: 139ae23c9f51cb9f56af060098cdf2b0f4959299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
-- mod-version:3 --lite-xl 2.1
local core = require "core"
local config = require "core.config"
local style = require "core.style"
local common = require "core.common"
local StatusView = require "core.statusview"
local scan_rate = 1

config.plugins.statusclock = common.merge({
  time_format = "%H:%M:%S",
  date_format = "%A, %d %B %Y"
}, config.plugins.statusclock)

local time_data = {
  time_text = '',
  date_text = '',
}

core.add_thread(function()
  while true do
    local time_text = os.date(config.plugins.statusclock.time_format)
    local date_text = os.date(config.plugins.statusclock.date_format)
    
    if time_data.time_text ~= time_text or time_data.time_text ~= date_text then
      core.redraw = true
      time_data.time_text = time_text
      time_data.date_text = date_text
    end
    
    coroutine.yield(scan_rate)
  end
end)

local get_items = StatusView.get_items

function StatusView:get_items()
  local left, right = get_items(self)
  
  local t = {
    style.dim, 
    self.separator,
    style.dim and style.text,
    time_data.date_text,
    style.dim, 
    self.separator,
    style.dim and style.text,
    time_data.time_text,
  }
  for _, item in ipairs(t) do
    table.insert(right, item)
  end

  return left, right
end