botui/ui/suite/sources/accounts-list.html

100 lines
5 KiB
HTML
Raw Permalink Normal View History

{% if accounts.is_empty() %}
<div class="empty-state">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
<h3>No accounts connected</h3>
<p>Connect Gmail, Outlook, or other accounts to enable LLM search and file operations.</p>
</div>
{% else %}
{% for account in accounts %}
<div class="account-card">
<div class="account-header">
<div class="account-icon {{ account.provider }}">
{% if account.provider == "google" or account.provider == "gmail" %}
<svg width="24" height="24" viewBox="0 0 24 24">
<path fill="#4285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/>
<path fill="#34A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/>
<path fill="#FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/>
<path fill="#EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/>
</svg>
{% elif account.provider == "microsoft" or account.provider == "outlook" %}
<svg width="24" height="24" viewBox="0 0 24 24">
<rect x="1" y="1" width="10" height="10" fill="#F25022"/>
<rect x="13" y="1" width="10" height="10" fill="#7FBA00"/>
<rect x="1" y="13" width="10" height="10" fill="#00A4EF"/>
<rect x="13" y="13" width="10" height="10" fill="#FFB900"/>
</svg>
{% else %}
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
{% endif %}
</div>
<div class="account-info">
<div class="account-email">{{ account.email }}</div>
<div class="account-provider">{{ account.provider }}</div>
</div>
<span class="account-status {{ account.status }}">
{% if account.status == "active" %}
<svg width="12" height="12" viewBox="0 0 24 24" fill="currentColor"><circle cx="12" cy="12" r="6"/></svg>
Active
{% elif account.status == "syncing" %}
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 12a9 9 0 11-6.219-8.56"/></svg>
Syncing
{% else %}
<svg width="12" height="12" viewBox="0 0 24 24" fill="currentColor"><circle cx="12" cy="12" r="6"/></svg>
Error
{% endif %}
</span>
</div>
<div class="account-stats">
<div class="stat-item">
<div class="stat-value">{{ account.email_count }}</div>
<div class="stat-label">Emails</div>
</div>
<div class="stat-item">
<div class="stat-value">{{ account.file_count }}</div>
<div class="stat-label">Files</div>
</div>
<div class="stat-item">
<div class="stat-value">{{ account.event_count }}</div>
<div class="stat-label">Events</div>
</div>
</div>
<div class="account-meta">
{% if account.last_sync_at.is_some() %}
<span class="meta-item">Last sync: {{ account.last_sync_at.as_ref().unwrap() }}</span>
{% endif %}
</div>
<div class="account-actions">
<button onclick="syncAccount('{{ account.id }}')">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9"/>
</svg>
Sync Now
</button>
<button onclick="editAccount('{{ account.id }}')">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7"/>
<path d="M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z"/>
</svg>
Settings
</button>
<button class="danger" onclick="removeAccount('{{ account.id }}')">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="3 6 5 6 21 6"/>
<path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"/>
</svg>
Remove
</button>
</div>
</div>
{% endfor %}
{% endif %}