mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Implement comprehensive artifact tracking to record all file modifications made by the AI agent during conversations. Add artifact persistence, garbage collection, and UI updates with new "Discuss" button styling.
112 lines
No EOL
2.4 KiB
Svelte
112 lines
No EOL
2.4 KiB
Svelte
<script lang="ts">
|
|
import { Resolve } from "Services/DependencyService";
|
|
import type { DiffService } from "Services/DiffService";
|
|
import { Services } from "Services/Services";
|
|
import { tick } from "svelte";
|
|
|
|
export let diffOpen = false;
|
|
|
|
const diffService: DiffService = Resolve<DiffService>(Services.DiffService);
|
|
|
|
let contentDiv: HTMLDivElement;
|
|
let height = 0;
|
|
|
|
$: diffOpen, updateHeight();
|
|
|
|
function updateHeight() {
|
|
tick().then(() => {
|
|
if (contentDiv) {
|
|
height = contentDiv.scrollHeight;
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<div id="diff-controls-wrapper" style:height="{height}px">
|
|
<div id="diff-controls" bind:this={contentDiv}>
|
|
{#if diffOpen}
|
|
<button
|
|
id="diff-accept"
|
|
class="diff-button"
|
|
aria-label="Accept"
|
|
on:click={() => diffService.onAccept()}>
|
|
Accept
|
|
</button>
|
|
<button
|
|
id="diff-reject"
|
|
class="diff-button"
|
|
aria-label="Reject"
|
|
on:click={() => diffService.onReject()}>
|
|
Reject
|
|
</button>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
#diff-controls-wrapper {
|
|
transition: height 0.2s ease-out;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#diff-controls {
|
|
display: grid;
|
|
grid-template-columns: 1fr var(--size-4-2) 1fr;
|
|
grid-template-rows: auto;
|
|
}
|
|
|
|
#diff-accept {
|
|
grid-column: 1;
|
|
color: var(--color-green);
|
|
border: solid;
|
|
border-color: var(--color-green);
|
|
border-width: var(--size-2-1);
|
|
background-color: var(--background-primary);
|
|
}
|
|
|
|
#diff-accept:hover {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--color-green) 25%,
|
|
white 10%
|
|
);
|
|
}
|
|
|
|
#diff-accept:focus {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--color-green) 25%,
|
|
white 10%
|
|
);
|
|
}
|
|
|
|
#diff-reject {
|
|
grid-column: 3;
|
|
color: var(--color-red);
|
|
border: solid;
|
|
border-color: var(--color-red);
|
|
border-width: var(--size-2-1);
|
|
background-color: var(--background-primary);
|
|
}
|
|
|
|
#diff-reject:hover {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--color-red) 25%,
|
|
white 10%
|
|
);
|
|
}
|
|
|
|
#diff-reject:focus {
|
|
background-color: color-mix(
|
|
in srgb,
|
|
var(--color-red) 25%,
|
|
white 10%
|
|
);
|
|
}
|
|
|
|
.diff-button {
|
|
border-radius: var(--button-radius);
|
|
transition-duration: 0.5s;
|
|
}
|
|
</style> |