File size: 8,325 Bytes
597fb2d
 
 
 
c355b8a
 
597fb2d
c355b8a
597fb2d
c1f3539
597fb2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9a17e6b
597fb2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e386ae4
9a17e6b
623279b
 
e386ae4
 
 
 
597fb2d
 
 
 
 
 
 
 
 
 
e386ae4
 
 
 
 
 
9a17e6b
623279b
 
e386ae4
 
 
 
597fb2d
 
 
 
 
 
 
 
 
 
e386ae4
 
 
 
 
 
9a17e6b
623279b
 
e386ae4
 
 
 
597fb2d
 
 
 
 
 
 
 
 
 
e386ae4
 
 
 
 
 
c1f3539
 
 
c355b8a
 
 
c1f3539
c355b8a
 
 
 
 
 
c1f3539
 
 
 
 
 
 
 
 
c713636
 
 
c1f3539
 
 
 
 
 
 
 
 
 
 
 
c713636
c1f3539
c355b8a
c713636
 
c355b8a
 
 
c1f3539
 
 
 
c713636
 
 
c1f3539
 
 
 
 
 
 
 
 
 
 
 
c713636
c1f3539
c355b8a
c713636
 
c355b8a
 
9a17e6b
 
 
597fb2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9a17e6b
597fb2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9a17e6b
597fb2d
 
 
 
 
 
 
 
 
 
 
 
 
 
c1f3539
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
import streamlit as st
from datetime import datetime
from huggingface_hub import HfApi
from src.text_content import REVIEW_TEXT, INTRO_TEXT_AR, INTRO_TEXT_EN, INTRO_TEXT_FR
from src.dataframes import INTERVENTIONS_PROCESSED_URL, VERIFIED_REQUESTS_PROCESSED_URL
from src.utils import parse_gg_sheet

import plotly.express as px


def id_review_submission(api: HfApi):
    """Id review submission form"""
    # collapse the text
    with st.expander("🔍 Review of requests | مراجعة طلب مساعدة"):
        st.markdown(REVIEW_TEXT)

        id_to_review = st.number_input("Enter id / أدخل الرقم", min_value=0, value=0, step=1)
        reason_for_review = st.text_area("Explain why / أدخل سبب المراجعة")
        if st.button("Submit / أرسل"):
            if reason_for_review == "":
                st.error("Please enter a reason / الرجاء إدخال سبب")
            else:
                filename = f"review_id_{id_to_review}_{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}.txt"
                with open(filename, "w") as f:
                    f.write(f"id: {id_to_review}, explanation: {reason_for_review}\n")
                api.upload_file(
                    path_or_fileobj=filename,
                    path_in_repo=filename,
                    repo_id="nt3awnou/review_requests",
                    repo_type="dataset",
                )
                st.success("Submitted at https://huggingface.co/datasets/nt3awnou/review_requests/ تم الإرسال")


def show_embed_code():
    with st.expander(_("💻 For Developers only, embed code for the map")):
        st.code(
            """
    <iframe id="nt3awnou-map"
    src="https://nt3awnou-embed-rescue-map.hf.space/?embed=true" width="1200" height="720"
    frameborder="0"
    width="850"
    height="450"
    title="Nt3awno Rescue Map">
    </iframe>
    <script src="https://cdn.jsdelivr.net/npm/iframe-resizer@4.3.4/js/iframeResizer.min.js"></script>
    <script>
    iFrameResize({}, "#nt3awnou-map");
    </script>
            """,
            language="html",
        )


def show_dataframes_metrics(len_requests, len_interventions, len_solved_verified_requests, lang, show_col_3=False):
    if lang == "en":
        # with st.expander("📝 Nt3awnou Platform Description"):
        st.markdown(INTRO_TEXT_EN, unsafe_allow_html=True)
        if show_col_3:
            col1, col2, col3 = st.columns([1, 1, 1])
        else:
            col1, col2 = st.columns([1, 1])
        with col1:
            st.metric(
                "# Number of help requests",
                len_requests,
            )
        with col2:
            st.metric(
                "# Number of interventions",
                len_interventions + len_solved_verified_requests,
            )
        if show_col_3:
            with col3:
                st.metric(
                    "# Number of solved requests",
                    len_solved_verified_requests,
                )
    elif lang == "ar":
        # with st.expander("📝 شرح منصة نتعاونو"):
        st.markdown(INTRO_TEXT_AR, unsafe_allow_html=True)
        if show_col_3:
            col1, col2, col3 = st.columns([1, 1, 1])
        else:
            col1, col2 = st.columns([1, 1])
        with col1:
            st.metric(
                "# عدد طلبات المساعدة",
                len_requests,
            )
        with col2:
            st.metric(
                "# عدد التدخلات",
                len_interventions + len_solved_verified_requests,
            )
        if show_col_3:
            with col3:
                st.metric(
                    "# عدد الطلبات المستجاب لها",
                    len_solved_verified_requests,
                )
    elif lang == "fr":
        # with st.expander("📝 Description de la plateforme Nt3awnou"):
        st.markdown(INTRO_TEXT_FR, unsafe_allow_html=True)
        if show_col_3:
            col1, col2, col3 = st.columns([1, 1, 1])
        else:
            col1, col2 = st.columns([1, 1])
        with col1:
            st.metric(
                "# Nombre de demandes d'aide",
                len_requests,
            )
        with col2:
            st.metric(
                "# Nombre d'interventions",
                len_interventions + len_solved_verified_requests,
            )
        if show_col_3:
            with col3:
                st.metric(
                    "# Nombre de demandes résolues",
                    len_solved_verified_requests,
                )


@st.cache_data(ttl=60 * 60 * 24)
def cached_parse_gg_sheet(url):
    return parse_gg_sheet(url)


def show_charts():
    st.subheader(_("📊 **Charts**"))
    col1, col2 = st.columns([1, 1])

    # interventions_categories
    interventions_processed_df = cached_parse_gg_sheet(INTERVENTIONS_PROCESSED_URL)
    supply_data = (
        interventions_processed_df["supplies_category"]
        .str.split(",")
        .explode()
        .str.strip("[] '")
        .dropna()
        .astype("category")
    )
    interv_fig = px.pie(supply_data, names="supplies_category")
    interv_fig.update_layout(
        autosize=True,
        legend=dict(
            orientation="h",
            # entrywidth=40,
            yanchor="bottom",
            y=1.02,
            xanchor="right",
            x=1,
            font=dict(
                # family="Courier",
                # size=10,
                # color="black"
            ),
            itemwidth=100,
        ),
    )
    with col1:
        st.subheader(_("Supplies Categories"))
        st.plotly_chart(interv_fig, use_container_width=True)

    # requests_categories
    requests_processed_df = cached_parse_gg_sheet(VERIFIED_REQUESTS_PROCESSED_URL)
    need_data = (
        requests_processed_df["need_category"].str.split(",").explode().str.strip("[] '").dropna().astype("category")
    )
    req_fig = px.pie(need_data, names="need_category")
    req_fig.update_layout(
        autosize=True,
        legend=dict(
            orientation="h",
            # entrywidth=40,
            yanchor="bottom",
            y=1.02,
            xanchor="right",
            x=1,
            font=dict(
                # family="Courier",
                # size=10,
                # color="black"
            ),
            itemwidth=100,
        ),
    )
    with col2:
        st.subheader(_("Needs Categories"))
        st.plotly_chart(req_fig, use_container_width=True)


def show_donations(lang):
    st.subheader(_("📝 **Donations**"))
    if lang == "en":
        st.markdown(
            """
            <div style="text-align: center;">
            <h4>The official bank account dedicated to tackle the consequences of the earthquake is:</h4>
            <b>Account number:</b>
            <h2>126</h2>
            <b>RIB:</b> 001-810-0078000201106203-18
            <br>
            <b>For the money transfers coming from outside Morocco</b>
            <br>
            <b>IBAN:</b> MA64001810007800020110620318
            <br>
            """,
            unsafe_allow_html=True,
        )
    elif lang == "ar":
        st.markdown(
            """
            <div style="text-align: center;">
            <h4>الحساب البنكي الرسمي المخصص لمواجهة عواقب الزلزال</h4>
            <b>رقم الحساب</b>
            <h2>126</h2>
            <b>RIB:</b> 001-810-0078000201106203-18
            <br>
            <b>للتحويلات القادمة من خارج المغرب</b>
            <br>
            <b>IBAN:</b> MA64001810007800020110620318
            <br>
            </div>
            """,
            unsafe_allow_html=True,
        )
    elif lang == "fr":
        st.markdown(
            """
            <div style="text-align: center;">
            <h4>Le compte bancaire officiel dédié à la lutte contre les conséquences du séisme est le suivant:</h4>
            <b>Numéro de compte:</b>
            <h2>126</h2>
            <b>RIB:</b> 001-810-0078000201106203-18
            <br>
            <b>Pour les transferts d'argent en provenance de l'étranger</b>
            <br>
            <b>IBAN:</b> MA64001810007800020110620318
            <br>
            """,
            unsafe_allow_html=True,
        )