mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-04-28 11:40:47 +00:00
282 lines
8 KiB
HTML
282 lines
8 KiB
HTML
<html>
|
|
<head>
|
|
<title>Compact Button Extension</title>
|
|
<script type="module" src="/plugins/compaction/webui/compact-store.js"></script>
|
|
</head>
|
|
<body>
|
|
<div x-data="{
|
|
get disabled() {
|
|
const ctx = globalThis.getContext?.();
|
|
const store = Alpine?.store?.('compactStore');
|
|
const chatInput = Alpine?.store?.('chatInput');
|
|
return !ctx || store?.compacting || chatInput?.running;
|
|
},
|
|
get disabledReason() {
|
|
const ctx = globalThis.getContext?.();
|
|
const store = Alpine?.store?.('compactStore');
|
|
const chatInput = Alpine?.store?.('chatInput');
|
|
if (!ctx) return 'No active chat selected';
|
|
if (store?.compacting) return 'Compaction in progress';
|
|
if (chatInput?.running) return 'Cannot compact while agent is running';
|
|
return 'Compact chat history into a single summary';
|
|
}
|
|
}">
|
|
<template x-if="$store.compactStore">
|
|
<button
|
|
class="text-button"
|
|
@click="$store.compactStore.fetchStats()"
|
|
:disabled="disabled"
|
|
:title="disabledReason"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" width="14" height="14" aria-hidden="true">
|
|
<polyline points="4 14 10 14 10 20"/><line x1="3" y1="21" x2="10" y2="14"/>
|
|
<polyline points="20 10 14 10 14 4"/><line x1="21" y1="3" x2="14" y2="10"/>
|
|
</svg>
|
|
<p>Compact</p>
|
|
</button>
|
|
</template>
|
|
</div>
|
|
|
|
<!-- Modal with unique class names to avoid global CSS collision -->
|
|
<div x-data x-show="$store.compactStore?.showModal" style="display: none;">
|
|
<div class="cmpct-overlay" @click="$store.compactStore?.closeModal()">
|
|
<div class="cmpct-dialog" @click.stop>
|
|
<div class="cmpct-header">
|
|
<h3>Compact Chat History</h3>
|
|
<button class="cmpct-close" @click="$store.compactStore?.closeModal()">
|
|
<span class="material-symbols-outlined">close</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="cmpct-body">
|
|
<template x-if="$store.compactStore?.stats">
|
|
<div>
|
|
<p class="cmpct-desc">
|
|
This will summarize your entire conversation into a single optimized message.
|
|
</p>
|
|
|
|
<div class="cmpct-stats">
|
|
<div class="cmpct-stat">
|
|
<span class="cmpct-stat-label">Messages</span>
|
|
<span class="cmpct-stat-value" x-text="$store.compactStore?.stats?.message_count"></span>
|
|
</div>
|
|
<div class="cmpct-stat">
|
|
<span class="cmpct-stat-label">Tokens</span>
|
|
<span class="cmpct-stat-value" x-text="$store.compactStore?.stats?.token_count?.toLocaleString()"></span>
|
|
</div>
|
|
<div class="cmpct-stat">
|
|
<span class="cmpct-stat-label">Model</span>
|
|
<span class="cmpct-stat-value" x-text="$store.compactStore?.stats?.model_name"></span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cmpct-warning">
|
|
<span class="material-symbols-outlined">warning</span>
|
|
<span>This action cannot be undone. The original conversation will be replaced with a summary.</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template x-if="!$store.compactStore?.stats">
|
|
<div class="cmpct-loading">
|
|
<span class="cmpct-spinner"></span>
|
|
<span>Loading statistics...</span>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
|
|
<div class="cmpct-footer">
|
|
<button class="cmpct-btn cmpct-btn-cancel" @click="$store.compactStore?.closeModal()">
|
|
Cancel
|
|
</button>
|
|
<button
|
|
class="cmpct-btn cmpct-btn-danger"
|
|
@click="$store.compactStore?.compact()"
|
|
:disabled="$store.compactStore?.compacting || !$store.compactStore?.stats"
|
|
>
|
|
<template x-if="$store.compactStore?.compacting">
|
|
<span class="cmpct-spinner"></span>
|
|
</template>
|
|
<span>Compact</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
/* All classes prefixed with cmpct- to avoid global CSS collision */
|
|
.cmpct-overlay {
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 2002;
|
|
}
|
|
|
|
.cmpct-dialog {
|
|
background: var(--color-panel, #1a1a1a);
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 23px rgba(0, 0, 0, 0.3);
|
|
width: 90%;
|
|
max-width: 420px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cmpct-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid var(--color-border, #333);
|
|
}
|
|
|
|
.cmpct-header h3 {
|
|
margin: 0;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--color-text, #e5e5e5);
|
|
}
|
|
|
|
.cmpct-close {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
color: var(--color-text-secondary, #999);
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.cmpct-close:hover {
|
|
color: var(--color-text, #e5e5e5);
|
|
}
|
|
|
|
.cmpct-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.cmpct-desc {
|
|
margin: 0 0 16px 0;
|
|
color: var(--color-text-secondary, #999);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.cmpct-stats {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 12px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.cmpct-stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 12px 8px;
|
|
background: var(--color-background-muted, #252525);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.cmpct-stat-label {
|
|
font-size: 0.7rem;
|
|
color: var(--color-text-secondary, #999);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.cmpct-stat-value {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--color-text, #e5e5e5);
|
|
}
|
|
|
|
.cmpct-warning {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
padding: 10px 12px;
|
|
background: rgba(245, 158, 11, 0.1);
|
|
border: 1px solid rgba(245, 158, 11, 0.3);
|
|
border-radius: 8px;
|
|
color: #f59e0b;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.cmpct-warning .material-symbols-outlined {
|
|
font-size: 1.1rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.cmpct-loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
padding: 30px;
|
|
color: var(--color-text-secondary, #999);
|
|
}
|
|
|
|
.cmpct-footer {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
padding: 12px 20px;
|
|
border-top: 1px solid var(--color-border, #333);
|
|
}
|
|
|
|
.cmpct-btn {
|
|
padding: 8px 16px;
|
|
border-radius: 6px;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
border: none;
|
|
}
|
|
|
|
.cmpct-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.cmpct-btn-cancel {
|
|
background: var(--color-background-muted, #333);
|
|
color: var(--color-text, #e5e5e5);
|
|
}
|
|
|
|
.cmpct-btn-cancel:hover:not(:disabled) {
|
|
background: var(--color-background-hover, #444);
|
|
}
|
|
|
|
.cmpct-btn-danger {
|
|
background: #dc2626;
|
|
color: white;
|
|
}
|
|
|
|
.cmpct-btn-danger:hover:not(:disabled) {
|
|
background: #b91c1c;
|
|
}
|
|
|
|
.cmpct-spinner {
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 2px solid currentColor;
|
|
border-top-color: transparent;
|
|
border-radius: 50%;
|
|
animation: cmpct-spin 0.8s linear infinite;
|
|
display: inline-block;
|
|
}
|
|
|
|
@keyframes cmpct-spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|