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
use adw::subclass::prelude::BinImpl;
use gettextrs::gettext;
use gtk::{glib, prelude::*, subclass::prelude::*, CompositeTemplate};

use crate::session::model::{Category, CategoryType};

mod imp {
    use std::{
        cell::{Cell, RefCell},
        marker::PhantomData,
    };

    use glib::subclass::InitializingObject;

    use super::*;

    #[derive(Debug, Default, CompositeTemplate, glib::Properties)]
    #[template(resource = "/org/gnome/Fractal/ui/session/view/sidebar/category_row.ui")]
    #[properties(wrapper_type = super::CategoryRow)]
    pub struct CategoryRow {
        /// The category of this row.
        #[property(get, set = Self::set_category, explicit_notify, nullable)]
        pub category: RefCell<Option<Category>>,
        category_binding: RefCell<Option<glib::Binding>>,
        /// The expanded state of this row.
        #[property(get, set = Self::set_expanded, explicit_notify, construct, default = true)]
        pub expanded: Cell<bool>,
        /// The label to show for this row.
        #[property(get = Self::label)]
        pub label: PhantomData<Option<String>>,
        /// The `CategoryType` to show a label for during a drag-and-drop
        /// operation.
        ///
        /// This will change the label according to the action that can be
        /// performed when changing from the `CategoryType` to this
        /// row's `Category`.
        #[property(get, set = Self::set_show_label_for_category, explicit_notify, builder(CategoryType::default()))]
        pub show_label_for_category: Cell<CategoryType>,
        /// The label showing the category name.
        #[template_child]
        pub display_name: TemplateChild<gtk::Label>,
    }

    #[glib::object_subclass]
    impl ObjectSubclass for CategoryRow {
        const NAME: &'static str = "SidebarCategoryRow";
        type Type = super::CategoryRow;
        type ParentType = adw::Bin;

        fn class_init(klass: &mut Self::Class) {
            Self::bind_template(klass);
            klass.set_css_name("category");
        }

        fn instance_init(obj: &InitializingObject<Self>) {
            obj.init_template();
        }
    }

    #[glib::derived_properties]
    impl ObjectImpl for CategoryRow {
        fn constructed(&self) {
            self.parent_constructed();

            self.obj().connect_parent_notify(|obj| {
                obj.set_expanded_accessibility_state(obj.expanded());
            });
        }

        fn dispose(&self) {
            if let Some(binding) = self.category_binding.take() {
                binding.unbind();
            }
        }
    }

    impl WidgetImpl for CategoryRow {}
    impl BinImpl for CategoryRow {}

    impl CategoryRow {
        /// Set the category represented by this row.
        fn set_category(&self, category: Option<Category>) {
            if *self.category.borrow() == category {
                return;
            }

            if let Some(binding) = self.category_binding.take() {
                binding.unbind();
            }
            let obj = self.obj();

            if let Some(category) = &category {
                let category_binding = category
                    .bind_property("is-expanded", &*obj, "expanded")
                    .sync_create()
                    .build();
                self.category_binding.replace(Some(category_binding));
            }

            self.category.replace(category);

            obj.notify_category();
            obj.notify_label();
        }

        /// The label to show for this row.
        fn label(&self) -> Option<String> {
            let to_type = self.category.borrow().as_ref()?.category_type();
            let from_type = self.show_label_for_category.get();

            let label = match from_type {
                CategoryType::Invited => match to_type {
                    // Translators: This is an action to join a room and put it in the "Favorites"
                    // section.
                    CategoryType::Favorite => gettext("Join Room as Favorite"),
                    CategoryType::Normal => gettext("Join Room"),
                    // Translators: This is an action to join a room and put it in the "Low
                    // Priority" section.
                    CategoryType::LowPriority => gettext("Join Room as Low Priority"),
                    CategoryType::Left => gettext("Reject Invite"),
                    _ => to_type.to_string(),
                },
                CategoryType::Favorite => match to_type {
                    CategoryType::Normal => gettext("Move to Rooms"),
                    CategoryType::LowPriority => gettext("Move to Low Priority"),
                    CategoryType::Left => gettext("Leave Room"),
                    _ => to_type.to_string(),
                },
                CategoryType::Normal => match to_type {
                    CategoryType::Favorite => gettext("Move to Favorites"),
                    CategoryType::LowPriority => gettext("Move to Low Priority"),
                    CategoryType::Left => gettext("Leave Room"),
                    _ => to_type.to_string(),
                },
                CategoryType::LowPriority => match to_type {
                    CategoryType::Favorite => gettext("Move to Favorites"),
                    CategoryType::Normal => gettext("Move to Rooms"),
                    CategoryType::Left => gettext("Leave Room"),
                    _ => to_type.to_string(),
                },
                CategoryType::Left => match to_type {
                    // Translators: This is an action to rejoin a room and put it in the "Favorites"
                    // section.
                    CategoryType::Favorite => gettext("Rejoin Room as Favorite"),
                    CategoryType::Normal => gettext("Rejoin Room"),
                    // Translators: This is an action to rejoin a room and put it in the "Low
                    // Priority" section.
                    CategoryType::LowPriority => gettext("Rejoin Room as Low Priority"),
                    _ => to_type.to_string(),
                },
                _ => to_type.to_string(),
            };

            Some(label)
        }

        /// Set the expanded state of this row.
        fn set_expanded(&self, expanded: bool) {
            if self.expanded.get() == expanded {
                return;
            }
            let obj = self.obj();

            if expanded {
                obj.set_state_flags(gtk::StateFlags::CHECKED, false);
            } else {
                obj.unset_state_flags(gtk::StateFlags::CHECKED);
            }

            self.expanded.set(expanded);
            obj.set_expanded_accessibility_state(expanded);
            obj.notify_expanded();
        }

        /// Set the `CategoryType` to show a label for.
        fn set_show_label_for_category(&self, category: CategoryType) {
            if category == self.show_label_for_category.get() {
                return;
            }

            self.show_label_for_category.set(category);

            let obj = self.obj();
            obj.notify_show_label_for_category();
            obj.notify_label();
        }
    }
}

glib::wrapper! {
    /// A sidebar row representing a category.
    pub struct CategoryRow(ObjectSubclass<imp::CategoryRow>)
        @extends gtk::Widget, adw::Bin, @implements gtk::Accessible;
}

impl CategoryRow {
    pub fn new() -> Self {
        glib::Object::new()
    }

    /// Set the expanded state of this row for a11y.
    fn set_expanded_accessibility_state(&self, expanded: bool) {
        if let Some(row) = self.parent() {
            row.update_state(&[gtk::accessible::State::Expanded(Some(expanded))]);
        }
    }

    /// The descendant that labels this row for a11y.
    pub fn labelled_by(&self) -> &gtk::Accessible {
        self.imp().display_name.upcast_ref()
    }
}