Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reactions_bar.py « conversation « gtk « gajim - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0ee7374d8f96248d2ca7fa9dbe0fef848799d27 (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
# This file is part of Gajim.
#
# Gajim 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; version 3 only.
#
# Gajim 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 Gajim. If not, see <http://www.gnu.org/licenses/>.

from __future__ import annotations

from typing import NamedTuple

import time
from datetime import datetime

from gi.repository import Gtk

from gajim.common import app
from gajim.common import types
from gajim.common.i18n import _
from gajim.common.modules.contacts import GroupchatContact

MAX_VISIBLE_REACTIONS = 3


class ReactionData(NamedTuple):
    emoji: str
    users: list[tuple[types.ChatContactT, float]]


class ReactionsBar(Gtk.Box):
    def __init__(self,
                 contact: types.ChatContactT,
                 message_id: str,
                 new_reaction: bool
                 ) -> None:

        Gtk.Box.__init__(self, spacing=3)

        self._contact = contact
        self._message_id = message_id

        if new_reaction:
            self.add(AddReaction(
                self._contact, self._message_id, new_reaction=True))
            self.show_all()
            return

        # TODO: remove
        self._add_dummy_data()

    def set_reactions(self, reactions: list[ReactionData]) -> None:
        for reaction in reactions:
            reaction_widget = Reaction(
                self._contact, self._message_id, reaction)
            self.add(reaction_widget)
            if reactions.index(reaction) + 1 >= MAX_VISIBLE_REACTIONS:
                break

        if len(reactions) > MAX_VISIBLE_REACTIONS:
            more_reactions_button = MoreReactionsButton(
                self._contact, self._message_id, reactions)
            self.add(more_reactions_button)

        self.add(AddReaction(self._contact, self._message_id))
        self.show_all()

    def _add_dummy_data(self) -> None:
        # TODO: remove
        reactions_list: list[ReactionData] = []
        client = app.get_client(self._contact.account)
        contact1 = client.get_module('Contacts').get_contact(
            'heinrich@test')
        contact2 = client.get_module('Contacts').get_contact(
            'igor@test')
        contact3 = client.get_module('Contacts').get_contact(
            'romeo@test')

        timestamp = time.time()
        data1 = ReactionData(
            emoji='🤘️',
            users=[(contact1, timestamp), (contact2, timestamp)])
        data2 = ReactionData(
            emoji='🚀️',
            users=[(contact3, timestamp)])
        data3 = ReactionData(
            emoji='🙉️',
            users=[(contact2, timestamp)])
        reactions_list.append(data1)
        reactions_list.append(data2)
        reactions_list.append(data3)
        self.set_reactions(reactions_list)


class Reaction(Gtk.Button):
    def __init__(self,
                 contact: types.ChatContactT,
                 message_id: str,
                 reaction: ReactionData
                 ) -> None:

        Gtk.Button.__init__(self)
        self.get_style_context().add_class('flat')
        self.get_style_context().add_class('reaction')

        self._contact = contact
        self._message_id = message_id
        self._reaction = reaction

        if isinstance(contact, GroupchatContact):
            self_contact = contact.get_self()
        else:
            client = app.get_client(contact.account)
            self_contact = client.get_module('Contacts').get_contact(
                client.get_own_jid().bare)

        if self_contact in reaction.users[0]:
            self.get_style_context().add_class('reaction-from-us')

        emoji_label = Gtk.Label(label=reaction.emoji)
        count_label = Gtk.Label(label=str(len(reaction.users)))
        count_label.get_style_context().add_class('small')
        count_label.get_style_context().add_class('monospace')

        self._box = Gtk.Box(spacing=3)
        self._box.add(emoji_label)
        self._box.add(count_label)
        self.add(self._box)

        format_string = app.settings.get('date_time_format')
        tooltip_text = ''
        for user, timestamp in reaction.users:
            date_time = datetime.utcfromtimestamp(timestamp)
            timestamp_formatted = date_time.strftime(format_string)
            tooltip_text += f'{user.name} ({timestamp_formatted})\n'
        self.set_tooltip_text(tooltip_text.strip())

        self.connect('clicked',
                     self._on_clicked,
                     self_contact in reaction.users)

        self.show_all()

    def _on_clicked(self, _button: Gtk.Button, from_us: bool) -> None:
        if from_us:
            # TODO: Remove reaction of type self._reaction
            return

        # TODO: Add reaction of type self._reaction


class MoreReactionsButton(Gtk.MenuButton):
    def __init__(self,
                 contact: types.ChatContactT,
                 message_id: str,
                 reactions: list[ReactionData]
                 ) -> None:

        Gtk.MenuButton.__init__(self)
        self.get_style_context().add_class('flat')
        self.get_style_context().add_class('reaction')

        box = Gtk.FlowBox()
        box.set_row_spacing(3)
        box.set_column_spacing(3)
        box.set_selection_mode(Gtk.SelectionMode.NONE)
        box.set_min_children_per_line(3)
        box.set_max_children_per_line(3)
        box.get_style_context().add_class('padding-6')

        for reaction in reactions[MAX_VISIBLE_REACTIONS:]:
            reaction_widget = Reaction(contact, message_id, reaction)
            box.add(reaction_widget)

        box.show_all()

        popover = Gtk.Popover()
        popover.add(box)
        self.set_popover(popover)


class AddReaction(Gtk.Button):
    def __init__(self,
                 contact: types.ChatContactT,
                 message_id: str,
                 new_reaction: bool = False
                 ) -> None:

        Gtk.Button.__init__(self)
        self.get_style_context().add_class('reaction')
        self.get_style_context().add_class('flat')

        self._contact = contact
        self._message_id = message_id

        icon = Gtk.Image.new_from_icon_name(
            'list-add-symbolic', Gtk.IconSize.BUTTON)
        self._dummy_entry = Gtk.Entry()
        self._dummy_entry.set_width_chars(0)
        self._dummy_entry.set_editable(True)
        self._dummy_entry.set_no_show_all(True)
        self._dummy_entry.get_style_context().add_class('flat')
        self._dummy_entry.get_style_context().add_class('reaction-dummy-entry')
        self._dummy_entry.connect('changed', self._on_changed)

        box = Gtk.Box()
        box.add(icon)
        box.add(self._dummy_entry)
        self.add(box)
        self.set_tooltip_text(_('Add Reaction…'))

        self.connect('clicked', self._on_clicked)

        if new_reaction:
            self._dummy_entry.show()
            self._dummy_entry.emit('insert-emoji')

    def _on_clicked(self, _button: Gtk.Button) -> None:
        self._dummy_entry.show()
        self._dummy_entry.emit('insert-emoji')

    def _on_changed(self, entry: Gtk.Entry) -> None:
        if not entry.get_text():
            return

        self._dummy_entry.hide()
        emoji = self._dummy_entry.get_text()
        entry.set_text('')

        print(f'Reaction to {self._contact.jid} ({self._message_id}): {emoji}')
        # TODO: Add reaction of type 'emoji'