File: library_page.rs

package info (click to toggle)
shortwave 5.0.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,844 kB
  • sloc: sh: 98; sql: 63; makefile: 19
file content (147 lines) | stat: -rw-r--r-- 5,304 bytes parent folder | download
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
// Shortwave - library_page.rs
// Copyright (C) 2021-2024  Felix Häcker <haeckerfelix@gnome.org>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

use std::cell::Cell;

use adw::prelude::*;
use adw::subclass::prelude::*;
use glib::{clone, subclass, Properties};
use gtk::{glib, CompositeTemplate};

use crate::api::{SwStation, SwStationSorter, SwStationSorting, SwStationSortingType};
use crate::app::SwApplication;
use crate::config;
use crate::database::SwLibraryStatus;
use crate::i18n::*;
use crate::settings::{settings_manager, Key};
use crate::ui::{SwStationDialog, SwStationRow};

mod imp {
    use super::*;

    #[derive(Default, Debug, Properties, CompositeTemplate)]
    #[template(resource = "/de/haeckerfelix/Shortwave/gtk/library_page.ui")]
    #[properties(wrapper_type = super::SwLibraryPage)]
    pub struct SwLibraryPage {
        #[template_child]
        status_page: TemplateChild<adw::StatusPage>,
        #[template_child]
        stack: TemplateChild<gtk::Stack>,
        #[template_child]
        gridview: TemplateChild<gtk::GridView>,

        #[property(get, set, builder(SwStationSorting::default()))]
        sorting: Cell<SwStationSorting>,
        #[property(get, set, builder(SwStationSortingType::Ascending))]
        sorting_type: Cell<SwStationSortingType>,
    }

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

        fn class_init(klass: &mut Self::Class) {
            Self::bind_template(klass);
            klass.install_property_action("library.set-sorting", "sorting");
            klass.install_property_action("library.set-sorting-type", "sorting-type");
        }

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

    #[glib::derived_properties]
    impl ObjectImpl for SwLibraryPage {
        fn constructed(&self) {
            self.parent_constructed();
            let library = SwApplication::default().library();

            settings_manager::bind_property(Key::LibrarySorting, &*self.obj(), "sorting");
            settings_manager::bind_property(Key::LibrarySortingType, &*self.obj(), "sorting-type");

            let sorter = SwStationSorter::new();
            self.obj()
                .bind_property("sorting", &sorter, "sorting")
                .bidirectional()
                .build();

            self.obj()
                .bind_property("sorting-type", &sorter, "sorting-type")
                .bidirectional()
                .build();

            let model = gtk::SortListModel::new(Some(library.model()), Some(sorter.clone()));

            // Ensure that row type is registered
            SwStationRow::static_type();

            // Station grid view
            let model = gtk::NoSelection::new(Some(model));
            self.gridview.set_model(Some(&model));

            self.gridview.connect_activate(|gridview, pos| {
                let model = gridview.model().unwrap();
                let station = model.item(pos).unwrap().downcast::<SwStation>().unwrap();
                let station_dialog = SwStationDialog::new(&station);
                station_dialog.present(Some(gridview));
            });

            // Setup empty state page
            self.status_page.set_icon_name(Some(config::APP_ID));

            // Welcome text which gets displayed when the library is empty. "{}" is the
            // application name.
            self.status_page
                .set_title(&i18n_f("Welcome to {}", &[config::NAME]));

            // Set initial stack page
            self.update_stack_page();

            library.connect_notify_local(
                Some("status"),
                clone!(
                    #[weak(rename_to = imp)]
                    self,
                    move |_, _| imp.update_stack_page()
                ),
            );
        }
    }

    impl WidgetImpl for SwLibraryPage {}

    impl NavigationPageImpl for SwLibraryPage {}

    impl SwLibraryPage {
        fn update_stack_page(&self) {
            let status = SwApplication::default().library().status();
            match status {
                SwLibraryStatus::Empty => self.stack.set_visible_child_name("empty"),
                SwLibraryStatus::Content => self.stack.set_visible_child_name("content"),
                _ => (),
            }
        }
    }
}

glib::wrapper! {
    pub struct SwLibraryPage(ObjectSubclass<imp::SwLibraryPage>)
        @extends gtk::Widget, adw::NavigationPage,
        @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}