-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
349 lines (322 loc) · 23 KB
/
Copy pathpopup.html
File metadata and controls
349 lines (322 loc) · 23 KB
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
<!doctype html>
<html lang="pt-BR" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Unfollowers</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<!-- ── TOKEN SCREEN ── -->
<div id="screen-token">
<div class="token-steps">
<div class="token-step">
<span class="token-step-num">1</span>
<div class="token-step-body">
<strong class="token-step-title">Crie seu token</strong>
<span class="token-step-desc">Os escopos <code>read:user</code> + <code>user:follow</code> já vêm pré-selecionados. Role até o final da página e clique em <strong>Generate token</strong>.</span>
</div>
</div>
<button class="btn btn-primary btn-create-token" id="btn-create-token" type="button">Abrir página de tokens no GitHub</button>
<div class="token-step">
<span class="token-step-num">2</span>
<div class="token-step-body">
<strong class="token-step-title">Copie o token</strong>
<span class="token-step-desc">Começa com <code>ghp_</code></span>
</div>
</div>
<div class="token-step">
<span class="token-step-num">3</span>
<div class="token-step-body">
<strong class="token-step-title">Cole e conecte</strong>
<span class="token-step-desc">No campo abaixo, clique em "Conectar"</span>
</div>
</div>
</div>
<div class="field-group">
<input class="field-input" id="token-input" type="password" placeholder="ghp_xxxxxxxxxxxxxxxxxxxx" autocomplete="off" />
</div>
<button class="btn btn-primary" id="btn-connect">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M1 5.25A2.25 2.25 0 0 1 3.25 3h9.5A2.25 2.25 0 0 1 15 5.25v5.5A2.25 2.25 0 0 1 12.75 13h-9.5A2.25 2.25 0 0 1 1 10.75ZM3.25 4.5a.75.75 0 0 0-.75.75v.128l5.5 3.589 5.5-3.59V5.25a.75.75 0 0 0-.75-.75Zm9.25 2.867-4.215 2.748a1.75 1.75 0 0 1-1.87-.001L2.5 7.367v3.383c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75Z"/>
</svg>
Conectar
</button>
<div id="connect-error" class="error-box hidden" aria-live="polite"></div>
<a class="token-report" href="https://github.com/joaomjbraga/github-unfollowers/issues/new" target="_blank" rel="noopener">Reportar problema</a>
</div>
<!-- ── MAIN SCREEN ── -->
<div id="screen-main" class="hidden">
<!-- Header -->
<div class="header">
<a class="header-profile" id="header-user" href="#" target="_blank" rel="noopener">
<img class="header-avatar" id="header-avatar" src="" alt="" />
<span class="header-login" id="header-login">—</span>
<span class="header-sep">•</span>
<span class="header-stats"><span id="header-followers">0</span> seguidores</span>
</a>
<div class="header-actions">
<button class="btn btn-ghost" id="btn-menu" title="Menu">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM1.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"/>
</svg>
</button>
</div>
</div>
<!-- Nav bar (Results / History / Whitelist) -->
<div class="nav-bar" id="nav-bar" role="tablist" aria-label="Navegação principal">
<button class="nav-tab active" id="nav-tab-results" title="Listas (R)" role="tab" aria-selected="true" tabindex="0">
<svg width="13" height="13" viewBox="0 0 16 16" fill="currentColor">
<path d="M2 2.75A.75.75 0 0 1 2.75 2h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 2.75Zm0 5A.75.75 0 0 1 2.75 7h10.5a.75.75 0 0 1 0 1.5H2.75A.75.75 0 0 1 2 7.75ZM2.75 12h10.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5Z"/>
</svg>
Listas
</button>
<button class="nav-tab" id="nav-tab-history" title="Histórico (H)" role="tab" aria-selected="false" tabindex="-1">
<svg width="13" height="13" viewBox="0 0 16 16" fill="currentColor">
<path d="M1.643 3.143 1.43 1.35A.75.75 0 0 0 .25 1.46l.5 5a.75.75 0 0 0 .75.64h5a.75.75 0 0 0 0-1.5H2.324l.51-5.214A.75.75 0 0 0 1.643 3.143ZM8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1ZM2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0Zm6.75-2.5a.75.75 0 0 0-1.5 0v2.75l1.5 1.5a.75.75 0 0 0 1.06-1.06L8.75 7.19V5.5Z"/>
</svg>
Histórico
</button>
<button class="nav-tab" id="nav-tab-whitelist" title="Whitelist (W)" role="tab" aria-selected="false" tabindex="-1">
<svg width="13" height="13" viewBox="0 0 16 16" fill="currentColor">
<path d="M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.751.751 0 0 1 3 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.91l3.023-2.489a.75.75 0 0 1 .954 0L11.5 12.41V2.75a.25.25 0 0 0-.25-.25Z"/>
</svg>
Whitelist
</button>
</div>
<!-- Loading state -->
<div id="loading-state">
<div class="skeleton">
<div class="skeleton-section skeleton-tabs">
<div class="skeleton-line skeleton-tab" style="flex:1"></div>
<div class="skeleton-line skeleton-tab" style="flex:1"></div>
<div class="skeleton-line skeleton-tab" style="flex:1"></div>
</div>
<div class="skeleton-section skeleton-toolbar">
<div class="skeleton-line skeleton-search" style="width:100%"></div>
<div class="skeleton-line skeleton-sort" style="width:90px"></div>
</div>
<div class="skeleton-section skeleton-list-header">
<div class="skeleton-line skeleton-line-md" style="width:160px"></div>
<div class="skeleton-line skeleton-line-xs" style="width:100px"></div>
</div>
<div class="skeleton-section skeleton-list">
<div class="skeleton-user"><div class="skeleton-avatar-sm"></div><div class="skeleton-line skeleton-line-user" style="width:100%"></div><div class="skeleton-btn-sm"></div></div>
<div class="skeleton-user"><div class="skeleton-avatar-sm"></div><div class="skeleton-line skeleton-line-user" style="width:85%"></div><div class="skeleton-btn-sm"></div></div>
<div class="skeleton-user"><div class="skeleton-avatar-sm"></div><div class="skeleton-line skeleton-line-user" style="width:90%"></div><div class="skeleton-btn-sm"></div></div>
<div class="skeleton-user"><div class="skeleton-avatar-sm"></div><div class="skeleton-line skeleton-line-user" style="width:75%"></div><div class="skeleton-btn-sm"></div></div>
</div>
<div class="skeleton-section skeleton-progress-section">
<div class="progress-label" id="loading-label" aria-live="polite">Carregando dados...</div>
<div class="progress-bar-wrap"><div class="progress-bar" id="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%"></div></div>
</div>
</div>
</div>
<!-- Error state -->
<div id="error-state" class="hidden">
<div class="error-state-icon">
<svg width="48" height="48" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"/>
</svg>
</div>
<div class="error-state-title" id="error-state-title">Algo deu errado</div>
<div class="error-box" id="main-error" aria-live="polite"></div>
<button class="btn btn-primary error-state-retry" id="btn-error-retry" type="button">Tentar novamente</button>
<a class="error-state-report" href="https://github.com/joaomjbraga/github-unfollowers/issues/new" target="_blank" rel="noopener">Reportar problema</a>
</div>
<!-- Results state -->
<div id="results-state" class="hidden">
<div class="tabs" role="tablist" aria-label="Listas de usuários">
<button class="tab active" data-tab="all" id="tab-all" role="tab" aria-selected="true" tabindex="0">Não Seguidores <span class="tab-count" id="count-all">0</span></button>
<button class="tab" data-tab="not-following-back" role="tab" aria-selected="false" tabindex="-1">Não sigo <span class="tab-count" id="count-not-following-back">0</span></button>
<button class="tab" data-tab="mutual" role="tab" aria-selected="false" tabindex="-1">Mútuos <span class="tab-count" id="count-mutual">0</span></button>
</div>
<div class="toolbar">
<div class="search-wrap">
<svg class="search-icon" width="12" height="12" viewBox="0 0 16 16" fill="currentColor">
<path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"/>
</svg>
<input class="search-input" id="search-input" type="text" placeholder="Filtrar por username... (/)" />
</div>
</div>
<div id="unfollowable-banner" class="unfollowable-banner hidden">
<span id="unfollowable-text" class="unfollowable-text"></span>
<button class="btn-unfollowable-toggle" id="btn-unfollowable-toggle" type="button">Mostrar</button>
</div>
<div class="list-header">
<span class="list-header-left" id="list-label">Não te seguem de volta</span>
<div class="list-header-actions">
<button class="btn btn-ghost hidden" id="btn-cancel-mass" type="button">Cancelar</button>
<button class="follow-all-btn hidden" id="btn-follow-all">Seguir todos</button>
<button class="unfollow-all-btn" id="btn-unfollow-all">Parar de seguir todos</button>
</div>
</div>
<div class="user-list" id="user-list"></div>
<div id="empty-filtered" class="state-center hidden">
<svg width="24" height="24" viewBox="0 0 16 16" fill="currentColor"><path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"/></svg>
<p>Nenhum resultado para este filtro.</p>
</div>
<div id="all-following-back" class="state-center hidden">
<svg width="32" height="32" viewBox="0 0 16 16" fill="currentColor" style="color:var(--accent-emphasis)">
<path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm3.78-9.72a.751.751 0 0 0-.018-1.042.751.751 0 0 0-1.042-.018L6.75 9.19 5.28 7.72a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042l2 2a.75.75 0 0 0 1.06 0Z"/>
</svg>
<p id="all-following-back-msg"><strong>Tudo certo!</strong></p>
</div>
</div>
<!-- History state -->
<div id="history-state" class="hidden sub-screen">
<div class="sub-screen-header">
<span class="sub-screen-title">Histórico <span class="sub-screen-hint">30 dias</span></span>
<button class="btn btn-ghost btn-xs" id="btn-clear-history">Limpar</button>
</div>
<div class="user-list" id="history-list"></div>
</div>
<!-- Whitelist state -->
<div id="whitelist-state" class="hidden sub-screen">
<div class="sub-screen-header">
<span class="sub-screen-title">Whitelist <span class="sub-screen-hint">Ignorados</span></span>
</div>
<div class="user-list" id="whitelist-list"></div>
</div>
</div><!-- /screen-main -->
<!-- ── PROFILE PANEL ── -->
<div id="profile-overlay" class="profile-overlay hidden"></div>
<div id="profile-panel" class="profile-panel" role="dialog" aria-modal="true" aria-label="Perfil do utilizador">
<div class="profile-panel-header">
<button class="btn-icon" id="profile-close" title="Fechar (Esc)">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"/>
</svg>
</button>
</div>
<div class="profile-panel-body">
<div class="profile-hero">
<img class="profile-avatar" id="profile-avatar" src="" alt="" />
<div class="profile-hero-info">
<a class="profile-login" id="profile-login-link" href="#" target="_blank" rel="noopener">
<span id="profile-login">—</span>
</a>
<span class="profile-name" id="profile-name"></span>
</div>
</div>
<p class="profile-bio" id="profile-bio"></p>
<div class="profile-meta-row hidden" id="profile-location-row">
<svg width="12" height="12" viewBox="0 0 16 16" fill="currentColor"><path d="m12.596 11.596-3.535 3.536a1.5 1.5 0 0 1-2.122 0l-3.535-3.536a6.5 6.5 0 1 1 9.192 0Zm-1.06-1.06a5 5 0 1 0-7.072 0L8 14.07l3.536-3.534Z"/><path d="M8 9a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 9Z"/></svg>
<span id="profile-location"></span>
</div>
<div class="profile-meta-row hidden" id="profile-company-row">
<svg width="12" height="12" viewBox="0 0 16 16" fill="currentColor"><path d="M1.5 14.25c0 .138.112.25.25.25H4v-1.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v1.25h2.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM1.25 16a1.75 1.75 0 0 1-1.75-1.75V1.75C-.5.784.284 0 1.25 0h8.5C10.716 0 11.5.784 11.5 1.75v12.5c0 .966-.784 1.75-1.75 1.75Zm10.5-9.25h2.25a1.75 1.75 0 0 1 1.75 1.75v5a1.75 1.75 0 0 1-1.75 1.75h-2.25ZM3 3.75A.75.75 0 0 1 3.75 3h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 3.75Zm3 0A.75.75 0 0 1 6.75 3h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 6 3.75ZM3 6.75A.75.75 0 0 1 3.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 6.75Zm3 0A.75.75 0 0 1 6.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 6 6.75Z"/></svg>
<span id="profile-company"></span>
</div>
<div class="profile-stats">
<div class="profile-stat">
<span class="profile-stat-value" id="profile-followers-count">—</span>
<span class="profile-stat-label">seguidores</span>
</div>
<div class="profile-stat-sep"></div>
<div class="profile-stat">
<span class="profile-stat-value" id="profile-following-count">—</span>
<span class="profile-stat-label">seguindo</span>
</div>
<div class="profile-stat-sep"></div>
<div class="profile-stat">
<span class="profile-stat-value" id="profile-repos-count">—</span>
<span class="profile-stat-label">repos</span>
</div>
</div>
<button class="btn-whitelist-panel" id="profile-whitelist-btn">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor"><path d="M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.751.751 0 0 1 3 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.91l3.023-2.489a.75.75 0 0 1 .954 0L11.5 12.41V2.75a.25.25 0 0 0-.25-.25Z"/></svg>
<span>Ignorar sempre</span>
</button>
<div class="profile-repos-section">
<span class="profile-section-label">Repositórios populares</span>
<div id="profile-repos-list"></div>
</div>
</div>
</div>
<!-- ── DEV PANEL ── -->
<div id="dev-panel" class="dev-panel hidden">
<div class="dev-header">
<span class="dev-title">Simulação de Erros</span>
<button id="dev-close" class="dev-close" title="Fechar">×</button>
</div>
<div class="dev-body">
<p class="dev-description">Selecione um cenário para simular comportamento da API.</p>
<div id="dev-scenarios" class="dev-scenarios"></div>
<button id="dev-clear" class="dev-clear">Limpar simulação</button>
<p class="dev-hint">As configurações persistem no armazenamento local.</p>
</div>
</div>
<!-- ── MODAL ── -->
<div id="modal-overlay" class="modal-overlay hidden">
<div class="modal" role="dialog" aria-modal="true" aria-labelledby="modal-title">
<div class="modal-icon">
<svg width="28" height="28" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"/>
</svg>
</div>
<h3 class="modal-title" id="modal-title">Deixar de seguir?</h3>
<p class="modal-text" id="modal-text">Você está prestes a deixar de seguir <strong id="modal-count">0</strong> usuário(s).</p>
<div class="modal-actions">
<button class="btn btn-ghost modal-cancel" id="modal-cancel">Cancelar</button>
<button class="btn btn-primary modal-confirm" id="modal-confirm">Sim, deixar de seguir</button>
</div>
</div>
</div>
<!-- Dica de atalhos -->
<div class="shortcuts-hint">1·2·3 abas | / busca | H hist. | W wlist | T tema | Esc fecha</div>
<!-- ── MENU DROPDOWN ── -->
<div id="menu-overlay" class="menu-overlay hidden"></div>
<div id="menu-dropdown" class="menu-dropdown" role="menu">
<button class="menu-item" role="menuitem" id="menu-theme">
<svg class="icon-moon" width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M9.598 1.591a.749.749 0 0 1 .785-.175 7.001 7.001 0 1 1-8.967 8.967.75.75 0 0 1 .961-.96 5.5 5.5 0 0 0 7.046-7.046.75.75 0 0 1 .175-.786Zm1.616 1.945a7 7 0 0 1-7.678 7.678 5.499 5.499 0 1 0 7.678-7.678Z"/>
</svg>
<svg class="icon-sun" width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0-1.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm5.657-8.157a.75.75 0 0 1 0 1.061l-1.061 1.06a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.06-1.06a.75.75 0 0 1 1.06 0Zm-9.193 9.193a.75.75 0 0 1 0 1.06l-1.06 1.061a.75.75 0 1 1-1.061-1.06l1.06-1.061a.75.75 0 0 1 1.061 0ZM8 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V.75A.75.75 0 0 1 8 0ZM3 8a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 3 8Zm13 0a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 16 8Zm-8 5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 8 13Zm5.657-1.343a.75.75 0 0 1 1.06 1.06l-1.06 1.061a.75.75 0 0 1-1.061-1.06l1.06-1.061ZM2.343 2.343a.75.75 0 0 1 1.061 0l1.06 1.06a.75.75 0 0 1-1.06 1.061l-1.06-1.06a.75.75 0 0 1 0-1.061Z"/>
</svg>
<span>Alternar tema</span>
</button>
<button class="menu-item" role="menuitem" id="menu-refresh">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M1.705 8.005a.75.75 0 0 1 .834.656 5.5 5.5 0 0 0 9.592 2.97l-1.204-1.204a.25.25 0 0 1 .177-.427h3.646a.25.25 0 0 1 .25.25v3.646a.25.25 0 0 1-.427.177l-1.38-1.38A7.002 7.002 0 0 1 1.05 8.84a.75.75 0 0 1 .656-.834ZM8 2.5a5.487 5.487 0 0 0-4.131 1.869l1.204 1.204A.25.25 0 0 1 4.896 6H1.25A.25.25 0 0 1 1 5.75V2.104a.25.25 0 0 1 .427-.177l1.38 1.38A7.002 7.002 0 0 1 14.95 7.16a.75.75 0 0 1-1.49.178A5.5 5.5 0 0 0 8 2.5Z"/>
</svg>
<span>Recarregar dados</span>
</button>
<div class="menu-separator" role="separator"></div>
<button class="menu-item" role="menuitem" id="menu-export">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 .5a.75.75 0 0 0-.75.75v10.69l-2.22-2.22a.749.749 0 0 0-1.275.326.749.749 0 0 0 .215.734l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.749.749 0 0 0 .326-1.275.749.749 0 0 0-.734-.215L8.75 11.94V1.25A.75.75 0 0 0 8 .5Z"/>
</svg>
<span>Exportar dados</span>
</button>
<button class="menu-item" role="menuitem" id="menu-import">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 .5a.75.75 0 0 1 .75.75v6.19l2.22-2.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-3.5 3.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l2.22 2.22V1.25A.75.75 0 0 1 8 .5ZM2.5 13.5a.75.75 0 0 0 0 1.5h11a.75.75 0 0 0 0-1.5Z"/>
</svg>
<span>Importar dados</span>
</button>
<div class="menu-separator" role="separator"></div>
<button class="menu-item" role="menuitem" id="menu-dev" style="display:none">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM6.25 6a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5A.75.75 0 0 1 6.25 6Z"/>
</svg>
<span>Simular erros</span>
</button>
<div class="menu-separator" role="separator"></div>
<a class="menu-item" role="menuitem" id="menu-report" href="https://github.com/joaomjbraga/github-unfollowers/issues/new" target="_blank" rel="noopener">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M8 1.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm9 3a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM6.25 6a.75.75 0 0 0 0 1.5h.75v1.75a.75.75 0 0 0 1.5 0v-2.5A.75.75 0 0 0 7.75 6Z"/>
</svg>
<span>Reportar problema</span>
</a>
<button class="menu-item menu-item-danger" role="menuitem" id="menu-logout">
<svg width="14" height="14" viewBox="0 0 16 16" fill="currentColor">
<path d="M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 2 13.25Zm9.06 1.97a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1 0 1.06l-3 3a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.72-1.72H6.75a.75.75 0 0 1 0-1.5h6.031l-1.72-1.72a.75.75 0 0 1 0-1.06Z"/>
</svg>
<span>Desconectar</span>
</button>
</div>
<script type="module" src="src/main.js"></script>
</body>
</html>