55 lines
1.9 KiB
Zig
55 lines
1.9 KiB
Zig
const std = @import("std");
|
|
const cbor = @import("cbor");
|
|
const tp = @import("thespian");
|
|
const project_manager = @import("project_manager");
|
|
|
|
const Widget = @import("../../Widget.zig");
|
|
const tui = @import("../../tui.zig");
|
|
|
|
pub const Type = @import("palette.zig").Create(@This());
|
|
|
|
pub const label = "Search projects";
|
|
|
|
pub const Entry = struct {
|
|
name: []const u8,
|
|
};
|
|
|
|
pub const Match = struct {
|
|
name: []const u8,
|
|
score: i32,
|
|
matches: []const usize,
|
|
};
|
|
|
|
pub fn load_entries(palette: *Type) !void {
|
|
const rsp = try project_manager.request_recent_projects(palette.a);
|
|
var iter: []const u8 = rsp.buf;
|
|
var len = try cbor.decodeArrayHeader(&iter);
|
|
while (len > 0) : (len -= 1) {
|
|
var name: []const u8 = undefined;
|
|
if (try cbor.matchValue(&iter, cbor.extract(&name))) {
|
|
(palette.entries.addOne() catch @panic("oom")).* = .{
|
|
.name = name,
|
|
};
|
|
} else return error.InvalidMessageField;
|
|
}
|
|
}
|
|
|
|
pub fn add_menu_entry(palette: *Type, entry: *Entry, matches: ?[]const usize) !void {
|
|
var value = std.ArrayList(u8).init(palette.a);
|
|
defer value.deinit();
|
|
const writer = value.writer();
|
|
try cbor.writeValue(writer, entry.name);
|
|
try cbor.writeValue(writer, if (palette.hints) |hints| hints.get(entry.name) orelse "" else "");
|
|
if (matches) |matches_|
|
|
try cbor.writeValue(writer, matches_);
|
|
try palette.menu.add_item_with_handler(value.items, select);
|
|
palette.items += 1;
|
|
}
|
|
|
|
fn select(menu: **Type.MenuState, button: *Type.ButtonState) void {
|
|
var name: []const u8 = undefined;
|
|
var iter = button.opts.label;
|
|
if (!(cbor.matchString(&iter, &name) catch false)) return;
|
|
tp.self_pid().send(.{ "cmd", "exit_overlay_mode" }) catch |e| menu.*.opts.ctx.logger.err("open_recent_project", e);
|
|
tp.self_pid().send(.{ "cmd", "change_project", .{name} }) catch |e| menu.*.opts.ctx.logger.err("open_recent_project", e);
|
|
}
|