AI-Studio/app/MindWork AI Studio/Dialogs/ChatArchiveFilesDialog.razor.cs
j-erler a8e8edc028 Added data backup and restore for chats
The settings gain a data backup panel. It writes the chats of the chosen
workspaces, and optionally the temporary chats, into a single archive file
with the extension .aistudio-chats, and it imports such archives again.
The archive mirrors the chat storage, so restoring needs no conversion.

Documents the user attached are never copied into the archive. The chats
keep the absolute path of each document, which keeps them usable wherever
the documents live and avoids a second copy. Files AI Studio created itself,
such as transcripts, exist nowhere else; when the selection holds any, the
user decides whether they travel with the archive.

On import, chats which already exist, in any workspace, are either kept or
imported as additional chats with a new ID. Workspaces are merged by their
identity. An imported chat gets its own copy of every transcript the archive
did not carry, as a copied chat does, so deleting it never removes the
transcripts of the chat it came from.

An existing archive is only replaced once the new one is complete. Chats
which could not be read are reported instead of missing silently. Both
directions can be stopped at any time and report what was written.

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
2026-09-26 16:25:39 +02:00

25 lines
790 B
C#

using AIStudio.Components;
using Microsoft.AspNetCore.Components;
namespace AIStudio.Dialogs;
/// <summary>
/// Asks whether the files AI Studio owns for the selected chats are written into the archive.
/// </summary>
/// <remarks>
/// The dialog is only shown when such files exist at all. Its result distinguishes three
/// answers: include them, export the chats alone, or do not export at all.
/// </remarks>
public partial class ChatArchiveFilesDialog : MSGComponentBase
{
[CascadingParameter]
private IMudDialogInstance MudDialog { get; set; } = null!;
private void Cancel() => this.MudDialog.Cancel();
private void ExcludeFiles() => this.MudDialog.Close(DialogResult.Ok(false));
private void IncludeFiles() => this.MudDialog.Close(DialogResult.Ok(true));
}