summaryrefslogtreecommitdiffstats
path: root/src/tui/app.rs
blob: 647ef3e2a496dde28d14410121c659ad9b14094f (plain)
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
use std::collections::HashMap;
use std::io;
use std::io::Write;
use std::sync::Arc;

use cursive::event::{Event, Key};
use cursive::theme::{BaseColor, Color, Effect, Style};
use cursive::traits::{Nameable, Scrollable};
use cursive::utils::markup::StyledString;
use cursive::utils::span::SpannedString;
use cursive::views::{Dialog, LinearLayout, TextView, ViewRef};
use cursive::Cursive;
use cursive::XY;

use super::markdown;
use super::markdown::Markdown;
use super::views::{
    LayoutView, ListView, MdView, Name, TempView, Vimable, NAME_ANSWER_LIST, NAME_ANSWER_VIEW,
    NAME_FULL_LAYOUT, NAME_QUESTION_LIST, NAME_QUESTION_VIEW, NAME_TEMP_MSG,
};
use crate::config::Config;
use crate::error::Result;
use crate::stackexchange::{Answer, Id, Question, Search, SiteMap};

pub const NAME_HELP_VIEW: &str = "help_view";

pub struct App {
    questions: HashMap<Id, Question<Markdown>>,
    answers: HashMap<Id, Answer<Markdown>>,
    config: Config,
    site_map: Arc<SiteMap>,
}

impl App {
    pub async fn from_search(search: Search) -> Result<Self> {
        let qs = search.search_md().await?;
        let questions: HashMap<u32, Question<Markdown>> =
            qs.clone().into_iter().map(|q| (q.id, q)).collect();
        let answers: HashMap<u32, Answer<Markdown>> = qs
            .into_iter()
            .flat_map(|q| q.answers.into_iter().map(|a| (a.id, a)))
            .collect();
        Ok(Self {
            config: search.config,
            site_map: search.site_map,
            questions,
            answers,
        })
    }

    // TODO a <Mutex> app field that gets auto updated with new selections would be convenient
    pub fn run(self) -> Result<()> {
        // The underlying fields of self are just static data that we
        // borrow from various places and callbacks; wrap in Arc to just have
        // one allocation that gets referenced from wherever.
        let arc = Arc::new(self);

        let mut siv = cursive::default();
        siv.load_theme_file(Config::theme_file_path()?).unwrap(); // TODO dont unwrap

        let question_view = MdView::new(Name::QuestionView);
        let answer_view = MdView::new(Name::AnswerView);

        let arc2 = arc.clone();
        let question_list_view = ListView::new_with_items(
            Name::QuestionList,
            arc.questions
                .clone()
                .into_values()
                .map(|q| (preview_question(&q), q.id)),
            move |s, qid| arc2.question_selected_callback(s, *qid),
        );

        let arc2 = arc.clone();
        let answer_list_view = ListView::new(Name::AnswerList, move |s, aid| {
            let a = arc2.answers.get(aid).unwrap();
            s.call_on_name(NAME_ANSWER_VIEW, |v: &mut MdView| v.set_content(&a.body));
        });

        let main_layout = LayoutView::new(
            1,
            question_list_view,
            question_view,
            answer_list_view,
            answer_view,
        )
        .add_vim_bindings();
        let hint_text = TextView::new("? help \u{00B7} q quit");

        siv.add_layer(LinearLayout::vertical().child(main_layout).child(hint_text));

        let cb = siv.call_on_name(NAME_QUESTION_LIST, |v: &mut ListView| v.select(0));
        if let Some(cb) = cb {
            cb(&mut siv)
        }

        // Help / View keymappings
        siv.add_global_callback('?', |s| {
            if let Some(pos) = s.screen_mut().find_layer_from_name(NAME_HELP_VIEW) {
                s.screen_mut().remove_layer(pos);
            } else {
                s.add_layer(help());
            }
        });

        // Reload theme
        siv.add_global_callback(Event::CtrlChar('r'), |s| {
            s.load_theme_file(Config::theme_file_path().unwrap())
                .unwrap()
        });

        // Copy contents to sys clipboard
        let arc2 = arc.clone();
        siv.add_global_callback('y', move |s| {
            let mut v: ViewRef<LayoutView> = s
                .find_name(NAME_FULL_LAYOUT)
                .expect("bug: layout view should exist");
            let md = v.get_focused_content();
            if let Some(mut copy_cmd) = arc2.config.get_copy_cmd() {
                let res = (|| {
                    let mut child = copy_cmd.spawn().map_err(|e| {
                        if e.kind() == io::ErrorKind::NotFound {
                            io::Error::new(
                                io::ErrorKind::Other,
                                "couldn't exec copy cmd; you may need to configure it manually",
                            )
                        } else {
                            e
                        }
                    })?;
                    let mut stdin = child.stdin.take().ok_or_else(|| {
                        io::Error::new(io::ErrorKind::Other, "couldn't get stdin of copy cmd")
                    })?;
                    stdin.write_all(md.source().as_bytes())?;
                    Ok("copied to clipboard!".to_string())
                })();
                temp_feedback_msg(s, res);
            }
        });

        // Open in browser
        let arc2 = arc;
        siv.add_global_callback('o', move |s| {
            let mut v: ViewRef<LayoutView> = s
                .find_name(NAME_FULL_LAYOUT)
                .expect("bug: layout view should exist");
            if let Some((qid, aid_opt)) = v.get_focused_ids() {
                let question = arc2.questions.get(&qid).expect("bug: lost a question?!");
                let url = aid_opt
                    .map(|aid| arc2.site_map.answer_url(question, aid))
                    .unwrap_or_else(|| arc2.site_map.question_url(question));
                let res = webbrowser::open(&url)
                    .map(|_| "opened stackexchange in the browser!".to_string());
                temp_feedback_msg(s, res);
            }
        });

        // Close any open dialogs
        siv.add_global_callback(Event::Key(Key::Esc), |s| {
            if let Some(pos) = s.screen_mut().find_layer_from_name(NAME_HELP_VIEW) {
                s.screen_mut().remove_layer(pos);
            }
            if let Some(pos) = s.screen_mut().find_layer_from_name(NAME_TEMP_MSG) {
                s.screen_mut().remove_layer(pos);
            }
        });

        // Run the app
        siv.run();
        Ok(())
    }

    pub fn question_selected_callback(&self, s: &mut Cursive, qid: u32) {
        let q = self.questions.get(&qid).unwrap();
        let body = &q.body;
        let XY { x, y: _y } = s.screen_size();
        // Update question view
        s.call_on_name(NAME_QUESTION_VIEW, |v: &mut MdView| {
            v.set_content(body);
        })
        .expect("Panic: setting question view content failed");
        // Update answer list view
        let cb = s
            .call_on_name(NAME_ANSWER_LIST, |v: &mut ListView| {
                v.reset_with_all(q.answers.iter().map(|a| (preview_answer(x, a), a.id)))
            })
            .expect("Panic: setting answer list content failed");
        cb(s)
    }
}

fn preview_question(q: &Question<Markdown>) -> StyledString {
    let mut preview = pretty_score(q.score);
    preview.append_plain(&q.title);
    preview
}

fn preview_answer(screen_width: usize, a: &Answer<Markdown>) -> StyledString {
    let md = markdown::preview(screen_width, &a.body);
    let mut preview = pretty_score(a.score);
    if a.is_accepted {
        preview.append_styled(
            "\u{2713} ", // "✔ "
            Style::merge(&[
                Style::from(Color::Light(BaseColor::Green)),
                Style::from(Effect::Bold),
            ]),
        );
    }
    preview.append(md);
    preview
}

fn pretty_score(score: i32) -> StyledString {
    let color = if score > <