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
use mlua::{Lua, Scope, Table};
use ratatui::text::Text;

pub struct PopupContext<'app> {
    pub text: &'app mut Text<'static>,
    pub title: &'app mut String,
    pub height: &'app mut usize,
    pub width: &'app mut usize,
}

impl<'app> PopupContext<'app> {
    pub fn new(
        text: &'app mut Text<'static>,
        title: &'app mut String,
        height: &'app mut usize,
        width: &'app mut usize,
    ) -> Self {
        Self {
            text,
            title,
            height,
            width,
        }
    }

    pub fn to_lua<'lua>(&'lua mut self, lua: &'lua Lua, scope: &Scope<'lua, '_>) -> Table<'lua> {
        let table = lua.create_table().unwrap();
        table
            .set(
                "text",
                scope.create_any_userdata_ref_mut(self.text).unwrap(),
            )
            .unwrap();
        table
            .set(
                "title",
                scope.create_any_userdata_ref_mut(self.title).unwrap(),
            )
            .unwrap();
        table
            .set(
                "height",
                scope.create_any_userdata_ref_mut(self.height).unwrap(),
            )
            .unwrap();
        table
            .set(
                "width",
                scope.create_any_userdata_ref_mut(self.width).unwrap(),
            )
            .unwrap();
        table
    }
}