mirror of
https://github.com/fairyglade/ly.git
synced 2026-05-13 10:30:39 +00:00
Signed-off-by: AnErrupTion <anerruption@disroot.org> ## What are the changes about? Ports the code base to Zig 0.16.0. ## What existing issue does this resolve? N/A ## Pre-requisites - [x] I have tested & confirmed the changes work locally - [x] I have run `zig fmt` throughout my changes Reviewed-on: https://codeberg.org/fairyglade/ly/pulls/962
148 lines
3.6 KiB
Zig
148 lines
3.6 KiB
Zig
const std = @import("std");
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
const ly_ui = @import("ly-ui");
|
|
const keyboard = ly_ui.keyboard;
|
|
const TerminalBuffer = ly_ui.TerminalBuffer;
|
|
const Widget = ly_ui.Widget;
|
|
const CyclableLabel = ly_ui.CyclableLabel;
|
|
|
|
const Session = @import("Session.zig");
|
|
const SavedUsers = @import("../config/SavedUsers.zig");
|
|
|
|
const StringList = std.ArrayListUnmanaged([]const u8);
|
|
pub const User = struct {
|
|
name: []const u8,
|
|
session_index: *usize,
|
|
allocated_index: bool,
|
|
first_run: bool,
|
|
};
|
|
const UserLabel = CyclableLabel(User, *Session);
|
|
|
|
const UserList = @This();
|
|
|
|
instance: ?Widget = null,
|
|
label: *UserLabel,
|
|
|
|
pub fn init(
|
|
allocator: Allocator,
|
|
io: std.Io,
|
|
buffer: *TerminalBuffer,
|
|
usernames: StringList,
|
|
saved_users: *SavedUsers,
|
|
session: *Session,
|
|
width: usize,
|
|
text_in_center: bool,
|
|
fg: u32,
|
|
bg: u32,
|
|
) !UserList {
|
|
var user_list = UserList{
|
|
.instance = null,
|
|
.label = try UserLabel.init(
|
|
allocator,
|
|
io,
|
|
buffer,
|
|
drawItem,
|
|
usernameChanged,
|
|
session,
|
|
width,
|
|
text_in_center,
|
|
fg,
|
|
bg,
|
|
),
|
|
};
|
|
|
|
for (usernames.items) |username| {
|
|
if (username.len == 0) continue;
|
|
|
|
var maybe_session_index: ?*usize = null;
|
|
var first_run = true;
|
|
for (saved_users.user_list.items) |*saved_user| {
|
|
if (std.mem.eql(u8, username, saved_user.username)) {
|
|
maybe_session_index = &saved_user.session_index;
|
|
first_run = saved_user.first_run;
|
|
break;
|
|
}
|
|
}
|
|
|
|
var allocated_index = false;
|
|
if (maybe_session_index == null) {
|
|
maybe_session_index = try allocator.create(usize);
|
|
maybe_session_index.?.* = 0;
|
|
allocated_index = true;
|
|
}
|
|
|
|
try user_list.label.addItem(.{
|
|
.name = username,
|
|
.session_index = maybe_session_index.?,
|
|
.allocated_index = allocated_index,
|
|
.first_run = first_run,
|
|
});
|
|
}
|
|
|
|
return user_list;
|
|
}
|
|
|
|
pub fn deinit(self: *UserList) void {
|
|
for (self.label.list.items) |user| {
|
|
if (user.allocated_index) {
|
|
self.label.allocator.destroy(user.session_index);
|
|
}
|
|
}
|
|
|
|
self.label.deinit();
|
|
}
|
|
|
|
pub fn widget(self: *UserList) *Widget {
|
|
if (self.instance) |*instance| return instance;
|
|
self.instance = Widget.init(
|
|
"UserList",
|
|
self.label.keybinds,
|
|
self,
|
|
deinit,
|
|
null,
|
|
draw,
|
|
null,
|
|
handle,
|
|
null,
|
|
);
|
|
return &self.instance.?;
|
|
}
|
|
|
|
pub fn getCurrentUsername(self: UserList) []const u8 {
|
|
return self.label.list.items[self.label.current].name;
|
|
}
|
|
|
|
fn draw(self: *UserList) void {
|
|
self.label.draw();
|
|
}
|
|
|
|
fn handle(self: *UserList, maybe_key: ?keyboard.Key) !void {
|
|
self.label.handle(maybe_key);
|
|
}
|
|
|
|
fn usernameChanged(user: User, maybe_session: ?*Session) void {
|
|
if (maybe_session) |session| {
|
|
session.label.current = @min(user.session_index.*, session.label.list.items.len - 1);
|
|
}
|
|
}
|
|
|
|
fn drawItem(label: *UserLabel, user: User, x: usize, y: usize, width: usize) void {
|
|
if (width < 3) return;
|
|
|
|
const length = @min(TerminalBuffer.strWidth(user.name), width - 3);
|
|
if (length == 0) return;
|
|
|
|
const x_offset = if (label.text_in_center and width >= length) (width - length) / 2 else 0;
|
|
|
|
label.cursor = length + x_offset;
|
|
TerminalBuffer.drawConfinedText(
|
|
user.name,
|
|
x + x_offset,
|
|
y,
|
|
width,
|
|
label.fg,
|
|
label.bg,
|
|
);
|
|
}
|