86 lines
4.5 KiB
Plaintext
86 lines
4.5 KiB
Plaintext
<div class="space-y-6">
|
|
<div class="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-white">Contatos</h1>
|
|
<p class="text-gray-400 text-sm mt-0.5">
|
|
Quem recebe as mensagens. Quem tem só número recebe só WhatsApp; quem tem só
|
|
e-mail recebe só e-mail.
|
|
</p>
|
|
</div>
|
|
<%= link_to 'Novo contato', new_admin_contato_path(grupo_id: params[:grupo_id]), data: { turbo: false },
|
|
class: 'px-4 py-2.5 rounded-xl text-sm font-semibold bg-orange-500 text-black hover:bg-orange-400' %>
|
|
</div>
|
|
|
|
<form method="get" action="<%= admin_contatos_path %>" data-turbo="false" class="flex flex-wrap items-center gap-2">
|
|
<input type="text" name="q" value="<%= params[:q] %>" placeholder="Buscar por nome, número ou e-mail"
|
|
class="bg-[#1a1a1a] border border-white/10 rounded-xl text-white text-sm px-3 py-2.5 focus:outline-none focus:border-orange-500 min-w-[260px]">
|
|
<select name="grupo_id" class="bg-[#1a1a1a] border border-white/10 rounded-xl text-white text-sm px-3 py-2.5 focus:outline-none focus:border-orange-500">
|
|
<option value="">Todos os grupos</option>
|
|
<% @grupos.each do |grupo| %>
|
|
<option value="<%= grupo.id %>" <%= 'selected' if params[:grupo_id].to_s == grupo.id.to_s %>><%= grupo.nome %></option>
|
|
<% end %>
|
|
</select>
|
|
<button type="submit" class="px-4 py-2.5 rounded-xl text-sm bg-[#1a1a1a] text-gray-300 border border-white/10 hover:border-orange-500">Filtrar</button>
|
|
</form>
|
|
|
|
<div class="bg-[#1a1a1a] rounded-2xl border border-white/5 overflow-hidden">
|
|
<% if @contatos.empty? %>
|
|
<p class="px-6 py-10 text-center text-gray-500 text-sm">Nenhum contato encontrado.</p>
|
|
<% else %>
|
|
<div class="overflow-x-auto">
|
|
<table class="w-full text-sm">
|
|
<thead class="bg-white/5 text-gray-400 text-xs uppercase tracking-wider">
|
|
<tr>
|
|
<th class="text-left px-6 py-3 font-medium">Nome</th>
|
|
<th class="text-left px-4 py-3 font-medium">WhatsApp</th>
|
|
<th class="text-left px-4 py-3 font-medium">E-mail</th>
|
|
<th class="text-left px-4 py-3 font-medium">Grupo</th>
|
|
<th class="text-left px-4 py-3 font-medium">Situação</th>
|
|
<th class="px-4 py-3"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-white/5">
|
|
<% @contatos.each do |contato| %>
|
|
<tr class="hover:bg-white/5">
|
|
<td class="px-6 py-2.5 text-white">
|
|
<%= contato.nome %>
|
|
<% if contato.grupo_whatsapp? %>
|
|
<span class="ml-1 px-2 py-0.5 rounded-full bg-green-500/15 border border-green-500/30 text-xs text-green-300">grupo</span>
|
|
<% end %>
|
|
</td>
|
|
<td class="px-4 py-2.5 text-gray-300 font-mono text-xs">
|
|
<% if contato.grupo_whatsapp? %>
|
|
<span title="<%= contato.whatsapp_grupo_jid %>"><%= contato.whatsapp_grupo_nome.presence || contato.whatsapp_grupo_jid %></span>
|
|
<% else %>
|
|
<%= contato.telefone.presence || '—' %>
|
|
<% end %>
|
|
</td>
|
|
<td class="px-4 py-2.5 text-gray-300"><%= contato.email.presence || '—' %></td>
|
|
<td class="px-4 py-2.5">
|
|
<% if contato.grupo_contato %>
|
|
<span class="text-gray-300"><%= contato.grupo_contato.nome %></span>
|
|
<% else %>
|
|
<span class="text-amber-400" title="Sem grupo não recebe nada">sem grupo</span>
|
|
<% end %>
|
|
</td>
|
|
<td class="px-4 py-2.5">
|
|
<span class="<%= contato.ativo? ? 'text-green-400' : 'text-gray-500' %>">
|
|
<%= contato.ativo? ? 'Ativo' : 'Inativo' %>
|
|
</span>
|
|
</td>
|
|
<td class="px-4 py-2.5 text-right whitespace-nowrap">
|
|
<%= link_to 'Editar', edit_admin_contato_path(contato), data: { turbo: false },
|
|
class: 'text-gray-300 hover:text-orange-400 mr-3' %>
|
|
<%= button_to 'Excluir', admin_contato_path(contato), method: :delete,
|
|
form: { data: { turbo_confirm: "Excluir #{contato.nome}?" } },
|
|
class: 'text-red-400 hover:text-red-300 inline' %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|