summaryrefslogtreecommitdiff
path: root/poezio/windows/bookmark_forms.py
blob: d538e6a2ad823ce3df3b2ce599348b5da2a2e569 (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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
"""
Windows used inthe bookmarkstab
"""
import curses
from typing import List, Tuple, Optional

from poezio.windows import base_wins
from poezio.windows.base_wins import Win
from poezio.windows.inputs import Input
from poezio.windows.data_forms import FieldInput, FieldInputMixin

from poezio.theming import to_curses_attr, get_theme
from poezio.common import safeJID
from poezio.bookmarks import Bookmark, BookmarkList


class BookmarkNameInput(FieldInput, Input):
    def __init__(self, field: Bookmark) -> None:
        FieldInput.__init__(self, field)
        Input.__init__(self)
        self.text = field.name
        self.pos = len(self.text)
        self.color = get_theme().COLOR_NORMAL_TEXT

    def save(self) -> None:
        self._field.name = self.get_text()

    def get_help_message(self) -> str:
        return 'Edit the text'


class BookmarkJIDInput(FieldInput, Input):
    def __init__(self, field: Bookmark) -> None:
        FieldInput.__init__(self, field)
        Input.__init__(self)
        jid = safeJID(field.jid)
        jid.resource = field.nick or None
        self.text = jid.full
        self.pos = len(self.text)
        self.color = get_theme().COLOR_NORMAL_TEXT

    def save(self) -> None:
        jid = safeJID(self.get_text())
        self._field.jid = jid.bare
        self._field.nick = jid.resource

    def get_help_message(self) -> str:
        return 'Edit the text'


class BookmarkMethodInput(FieldInputMixin):
    def __init__(self, field: Bookmark) -> None:
        FieldInput.__init__(self, field)
        Win.__init__(self)
        self.options = ('local', 'remote')
        # val_pos is the position of the currently selected option
        self.val_pos = self.options.index(field.method)

    def do_command(self, key: str) -> None:
        if key == 'KEY_LEFT':
            if self.val_pos > 0:
                self.val_pos -= 1
        elif key == 'KEY_RIGHT':
            if self.val_pos < len(self.options) - 1:
                self.val_pos += 1
        else:
            return
        self.refresh()

    def refresh(self) -> None:
        self._win.erase()
        self._win.attron(to_curses_attr(self.color))
        self.addnstr(0, 0, ' ' * self.width, self.width)
        if self.val_pos > 0:
            self.addstr(0, 0, '←')
        if self.val_pos < len(self.options) - 1:
            self.addstr(0, self.width - 1, '→')
        if self.options:
            option = self.options[self.val_pos]
            self.addstr(0, self.width // 2 - len(option) // 2, option)
        self._win.attroff(to_curses_attr(self.color))
        self._refresh()

    def save(self) -> None:
        self._field.method = self.options[self.val_pos]

    def get_help_message(self) -> str:
        return '←, →: Select a value amongst the others'


class BookmarkPasswordInput(FieldInput, Input):
    def __init__(self, field: Bookmark) -> None:
        FieldInput.__init__(self, field)
        Input.__init__(self)
        self.text = field.password or ''
        self.pos = len(self.text)
        self.color = get_theme().COLOR_NORMAL_TEXT

    def rewrite_text(self) -> None:
        self._win.erase()
        if self.color:
            self._win.attron(to_curses_attr(self.color))
        self.addstr(
            '*' * len(self.text[self.view_pos:self.view_pos + self.width - 1]))
        if self.color:
            (y, x) = self._win.getyx()
            size = self.width - x
            self.addnstr(' ' * size, size, to_curses_attr(self.color))
        self.addstr(0, self.pos, '')
        if self.color:
            self._win.attroff(to_curses_attr(self.color))
        self._refresh()

    def save(self) -> None:
        self._field.password = self.get_text() or None

    def get_help_message(self) -> str:
        return 'Edit the secret text'


class BookmarkAutojoinWin(FieldInputMixin):
    def __init__(self, field: Bookmark) -> None:
        FieldInput.__init__(self, field)
        Win.__init__(self)
        self.last_key = 'KEY_RIGHT'
        self.value = field.autojoin

    def do_command(self, key: str) -> None:
        if key == 'KEY_LEFT' or key == 'KEY_RIGHT':
            self.value = not self.value
            self.last_key = key
        self.refresh()

    def refresh(self) -> None:
        self._win.erase()
        self._win.attron(to_curses_attr(self.color))
        format_string = '←{:^%s}→' % 7
        inp = format_string.format(repr(self.value))
        self.addstr(0, 0, inp)
        if self.last_key == 'KEY_RIGHT':
            self.move(0, 8)
        else:
            self.move(0, 0)
        self._win.attroff(to_curses_attr(self.color))
        self._refresh()

    def save(self) -> None:
        self._field.autojoin = self.value

    def get_help_message(self) -> str:
        return '← and →: change the value between True and False'


class BookmarksWin(Win):
    __slots__ = ('scroll_pos', '_current_input', 'current_horizontal_input',
                 '_bookmarks', 'lines')

    def __init__(self, bookmarks: BookmarkList, height: int, width: int, y: int, x: int) -> None:
        self._win = base_wins.TAB_WIN.derwin(height, width, y, x)
        self.scroll_pos = 0
        self._current_input = 0
        self.current_horizontal_input = 0
        self._bookmarks = list(bookmarks)
        self.lines = []  # type: List[Tuple[BookmarkNameInput, BookmarkJIDInput, BookmarkPasswordInput, BookmarkAutojoinWin, BookmarkMethodInput]]
        for bookmark in sorted(self._bookmarks, key=lambda x: str(x.jid)):
            self.lines.append((BookmarkNameInput(bookmark),
                               BookmarkJIDInput(bookmark),
                               BookmarkPasswordInput(bookmark),
                               BookmarkAutojoinWin(bookmark),
                               BookmarkMethodInput(bookmark)))

    @property
    def current_input(self) -> int:
        return self._current_input

    @current_input.setter
    def current_input(self, value: int) -> None:
        if 0 <= self._current_input < len(self.lines):
            if 0 <= value < len(self.lines):
                self.lines[self._current_input][
                    self.current_horizontal_input].set_color(
                        get_theme().COLOR_NORMAL_TEXT)
                self._current_input = value
        else:
            self._current_input = 0

    def add_bookmark(self, bookmark: Bookmark) -> None:
        self.lines.append((BookmarkNameInput(bookmark),
                           BookmarkJIDInput(bookmark),
                           BookmarkPasswordInput(bookmark),
                           BookmarkAutojoinWin(bookmark),
                           BookmarkMethodInput(bookmark)))
        if len(self.lines) > 1:
            self.lines[self.current_input][
                self.current_horizontal_input].set_color(
                    get_theme().COLOR_NORMAL_TEXT)
        self.current_horizontal_input = 0
        if len(self.lines) > 1:
            self.current_input = len(self.lines) - 1
        if self.current_input - self.scroll_pos > self.height - 1:
            self.scroll_pos = self.current_input - self.height + 1
        self.refresh()

    def del_current_bookmark(self) -> Optional[Bookmark]:
        if not self.lines:
            return None
        bm = self.lines[self.current_input][0]._field
        to_delete = self.current_input
        self.current_input -= 1
        del self.lines[to_delete]
        if self.scroll_pos:
            self.scroll_pos -= 1
        self.refresh()
        return bm

    def resize(self, height: int, width: int, y: int, x: int) -> None:
        self.height = height
        self.width = width
        self._win = base_wins.TAB_WIN.derwin(height, width, y, x)
        # Adjust the scroll position, if resizing made the window too small
        # for the cursor to be visible
        while self.current_input - self.scroll_pos > self.height - 1:
            self.scroll_pos += 1

    def go_to_next_line_input(self) -> None:
        if not self.lines:
            return
        if self.current_input == len(self.lines) - 1:
            return
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                get_theme().COLOR_NORMAL_TEXT)
        # Adjust the scroll position if the current_input would be outside
        # of the visible area
        if self.current_input + 1 - self.scroll_pos > self.height - 1:
            self.current_input += 1
            self.scroll_pos += 1
            self.refresh()
        else:
            self.current_input += 1
            self.lines[self.current_input][
                self.current_horizontal_input].set_color(
                    get_theme().COLOR_SELECTED_ROW)

    def go_to_previous_line_input(self) -> None:
        if not self.lines:
            return
        if self.current_input == 0:
            return
        theme = get_theme()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_NORMAL_TEXT)
        self.current_input -= 1
        # Adjust the scroll position if the current_input would be outside
        # of the visible area
        if self.current_input < self.scroll_pos:
            self.scroll_pos = self.current_input
            self.refresh()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_SELECTED_ROW)

    def go_to_next_horizontal_input(self) -> None:
        if not self.lines:
            return
        theme = get_theme()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_NORMAL_TEXT)
        self.current_horizontal_input += 1
        if self.current_horizontal_input > 4:
            self.current_horizontal_input = 0
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_SELECTED_ROW)

    def go_to_next_page(self) -> bool:
        if not self.lines:
            return False

        if self.current_input == len(self.lines) - 1:
            return False

        theme = get_theme()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_NORMAL_TEXT)
        inc = min(self.height, len(self.lines) - self.current_input - 1)

        if self.current_input + inc - self.scroll_pos > self.height - 1:
            self.current_input += inc
            self.scroll_pos += inc
            self.refresh()
        else:
            self.current_input += inc
            self.lines[self.current_input][
                self.current_horizontal_input].set_color(
                    theme.COLOR_SELECTED_ROW)
        return True

    def go_to_previous_page(self) -> bool:
        if not self.lines:
            return False

        if self.current_input == 0:
            return False

        theme = get_theme()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_NORMAL_TEXT)

        dec = min(self.height, self.current_input)
        self.current_input -= dec
        # Adjust the scroll position if the current_input would be outside
        # of the visible area
        if self.current_input < self.scroll_pos:
            self.scroll_pos = self.current_input
            self.refresh()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_SELECTED_ROW)
        return True

    def go_to_previous_horizontal_input(self) -> None:
        if not self.lines:
            return
        if self.current_horizontal_input == 0:
            return
        theme = get_theme()
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_NORMAL_TEXT)
        self.current_horizontal_input -= 1
        self.lines[self.current_input][
            self.current_horizontal_input].set_color(
                theme.COLOR_SELECTED_ROW)

    def on_input(self, key: str) -> None:
        if not self.lines:
            return
        self.lines[self.current_input][
            self.current_horizontal_input].do_command(key)

    def refresh(self) -> None:
        # store the cursor status
        self._win.erase()
        y = -self.scroll_pos
        for i in range(len(self.lines)):
            self.lines[i][0].resize(1, self.width // 4, y + 1, 0)
            self.lines[i][1].resize(1, self.width // 4, y + 1, self.width // 4)
            self.lines[i][2].resize(1, self.width // 6, y + 1,
                                    3 * self.width // 6)
            self.lines[i][3].resize(1, self.width // 6, y + 1,
                                    4 * self.width // 6)
            self.lines[i][4].resize(1, self.width // 6, y + 1,
                                    5 * self.width // 6)
            y += 1
        self._refresh()
        for i, inp in enumerate(self.lines):
            if i < self.scroll_pos:
                continue
            if i >= self.height + self.scroll_pos:
                break
            for j in range(5):
                inp[j].refresh()

        if self.lines and self.current_input < self.height - 1:
            self.lines[self.current_input][
                self.current_horizontal_input].set_color(
                    get_theme().COLOR_SELECTED_ROW)
            self.lines[self.current_input][
                self.current_horizontal_input].refresh()
        if not self.lines:
            curses.curs_set(0)
        else:
            curses.curs_set(1)

    def refresh_current_input(self) -> None:
        if self.lines:
            self.lines[self.current_input][
                self.current_horizontal_input].refresh()

    def save(self) -> None:
        for line in self.lines:
            for item in line:
                item.save()