aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/ui/statusbar/panel/widgets/calendar.lua
blob: ddbffc092210afb9b6f119b1ec4f7fe4abb9959b (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
local awful = require "awful"
local phosphor = require "assets.phosphor"
local qbind = require "quarrel.bind"
local qcolor = require "quarrel.color"
local qmarkup = require "quarrel.markup"
local qui = require "quarrel.ui"
local wibox = require "wibox"

local weekday_map = { 7, 1, 2, 3, 4, 5, 6 }

local calendar = wibox.widget(qui.styled {
    widget = wibox.container.background,
    bg = qcolor.palette.bg.high,
    {
        widget = wibox.container.margin,
        margins = qui.BORDER_WIDTH,
        {
            {
                {
                    layout = wibox.layout.grid,
                    forced_num_rows = 7,
                    forced_num_cols = 7,
                    -- spacing = (qui.PADDING) / 2,
                    border_width = {
                        inner = qui.BORDER_WIDTH,
                        outer = 0,
                    },
                    border_color = qcolor.palette.border.variant,
                    id = "grid",
                },
                {
                    widget = wibox.container.background,
                    bg = qcolor.palette.border(),
                    forced_width = qui.BORDER_WIDTH,
                },
                layout = wibox.layout.fixed.horizontal,
            },
            {
                widget = wibox.container.margin,
                margins = qui.BIG_PADDING,
                {
                    {
                        widget = wibox.container.place,
                        fill_horizontal = true,
                        {
                            widget = wibox.widget.textbox,
                            text = "05\n25",
                        },
                    },
                    nil,
                    qui.styled {
                        widget = wibox.container.background,
                        bg = qcolor.palette.bg.highest,
                        {
                            {
                                widget = wibox.container.margin,
                                margins = qui.PADDING,
                                {
                                    widget = wibox.container.place,
                                    qui.icon {
                                        icon = phosphor.caret_up_bold,
                                        widget = {
                                            forced_height = qui.CHAR_HEIGHT / 2,
                                            forced_width = qui.CHAR_HEIGHT / 2,
                                        },
                                    },
                                },
                            },
                            {
                                widget = wibox.container.background,
                                bg = qcolor.palette.border.variant,
                                forced_height = qui.BORDER_WIDTH,
                            },
                            {
                                widget = wibox.container.margin,
                                margins = qui.PADDING,
                                {
                                    widget = wibox.container.place,
                                    qui.icon {
                                        icon = phosphor.caret_down_bold,
                                        widget = {
                                            forced_height = qui.CHAR_HEIGHT / 2,
                                            forced_width = qui.CHAR_HEIGHT / 2,
                                        },
                                    },
                                },
                            },
                            layout = wibox.layout.fixed.vertical,
                            -- spacing = qui.PADDING
                        },
                    },
                    layout = wibox.layout.align.vertical,
                },
            },
            layout = wibox.layout.fixed.horizontal,
        },
    },
})

local grid = calendar:get_children_by_id("grid")[1]

-- Logic heavily inspired by https://github.com/Sinomor/dotfiles/blob/e409f9a84bf40daf1e39c0179ec749232ed827c9/home/.config/awesome/ui/control/moment/calendar.lua#L134-L173
function calendar:compute_grid(year, month)
    local calendar_table = {
        {
            { "Mo", false, true },
            { "Tu", false, true },
            { "We", false, true },
            { "Th", false, true },
            { "Fr", false, true },
            { "Sa", false, true },
            { "Su", false, true },
        },
        {},
        {},
        {},
        {},
        {},
        {},
    }
    local current = os.date("*t", os.time())
    local first_day = os.date("*t", os.time { year = year, month = month, day = 1 })
    local last_day = os.date("*t", os.time { year = year, month = month + 1, day = 0 })

    local days = last_day.day

    local prev_days = os.date("*t", os.time { year = year, month = month, day = 0 })
    local prev_offset = weekday_map[first_day.wday] - 1
    local prev_month = month - 1 == -1 and 12 or month - 1
    local prev_year = prev_month == 12 and year - 1 or year

    if prev_offset ~= -1 then
        for offset = prev_offset, 1, -1 do
            local day = prev_days.day - offset + 1
            table.insert(
                calendar_table[2],
                { day, day == current.day and prev_month == current.month and prev_year == current.year, false }
            )
        end
    end

    do
        local row = 2
        local weekday = weekday_map[first_day.wday]
        for day = 1, days do
            table.insert(
                calendar_table[row],
                { day, day == current.day and month == current.month and year == current.year, true }
            )
            if weekday == 7 then
                row = row + 1
                weekday = 1
            else
                weekday = weekday + 1
            end
        end

        local next_month = month + 1 == 13 and 1 or month + 1
        local next_year = next_month == 1 and year + 1 or year
        for day = 1, 42 - prev_offset - days do
            table.insert(
                calendar_table[row],
                { day, day == current.day and next_month + 1 == current.month and next_year == current.year, false }
            )
            if weekday == 7 then
                row = row + 1
                weekday = 1
            else
                weekday = weekday + 1
            end
        end
    end

    for i, row in ipairs(calendar_table) do
        for j, col in ipairs(row) do
            local widget = grid:get_widgets_at(i, j)[1]
            widget.widget.widget.widget.text = col[1]
            if col[2] then
                widget.bg = qcolor.palette.yellow()
                widget.fg = qcolor.palette.bg()
            elseif j % 6 == 0 or j % 7 == 0 then
                widget.bg = col[3] and qcolor.palette.bg.highest or qcolor.palette.bg.high
            else
                widget.bg = col[3] and qcolor.palette.bg.high or qcolor.palette.bg()
            end

            if i == 1 then
                widget.fg = qcolor.palette.fg()
            elseif not col[2] then
                -- widget.fg = col[3] and qcolor.palette.fg() or qcolor.palette.fg.low
                widget.fg = qcolor.palette.fg.low
            end
        end
    end
end

local cells = {}
local function cell(content)
    local widget = wibox.widget {
        widget = wibox.container.background,
        bg = qcolor.palette.bg.high,
        -- shape = qui.shape,
        {
            widget = wibox.container.margin,
            margins = qui.PADDING * 1.5,
            {
                widget = wibox.container.place,
                forced_height = qui.CHAR_HEIGHT,
                forced_width = qui.CHAR_HEIGHT,
                {
                    widget = wibox.widget.textbox,
                    markup = content,
                },
            },
        },
    }
    table.insert(cells, widget)
end

for _ = 1, 49 do
    cell()
end
grid:add(table.unpack(cells))
local current_time = os.date "*t"
calendar:compute_grid(current_time.year, current_time.month)
grid:add_row_border(2, qui.BORDER_WIDTH, { color = qcolor.palette.border() })

return calendar