1
0
Files
auto-git-gui/settings.html

357 lines
12 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Einstellungen</title>
<style>
/* Grund-Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
/* Default-Modus: Weißes Panel mit Rosa-Akzenten */
--bg-main: #ffe4e6; /* Hintergrund Content */
--bg-sidebar: #fff1f2; /* Sidebar */
--accent: #9f1239; /* Rosa */
--border: #fff;
}
body.sky-mode {
/* Sky-Mode: Himmelshintergrund und passende Akzente */
--bg-main: rgb(173,216,230); /* sanftes Baby-Blau */
--bg-sidebar: rgb(200,220,240); /* etwas dunkleres Blau */
--accent: rgb(20,60,100); /* dunkles Marine-Blau als Akzent */
--border: rgb(180,200,220);
background: var(--border);
}
html, body {
width: 100%; height: 100%;
overflow-x: hidden;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
transition: background 0.5s ease;
}
/* Sky-Mode Hintergrund */
body {
background: var(--bg-main);
}
/* Dialog-Box */
.dialog {
position: relative;
z-index: 10;
width: 100%;
color: var(--accent);
background: rgba(255,255,255,0.93);
border-radius: 5px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
padding: 1.8rem 1.8rem;
display: flex; flex-direction: column; gap: 1.2rem;
}
/* Optionen */
.options { display: flex; flex-direction: column; gap: 1.0rem; }
label {
display: flex; align-items: center; font-size: 0.9rem;
color: #1e293b;
}
label.option input[type="checkbox"] {
margin-right: 0.8rem;
width: 1.3em;
height: 1.3em;
accent-color: var(--accent);
flex-shrink: 0; /* <-- das ist wichtig! */
}
.row {
display: flex; align-items: center; justify-content: space-between;
}
.row > span {
flex: 1;
color: #1e293b;
font-weight: 600;
}
.row > input,
.row > select {
/* wenn Du es schmaler willst: */
min-width: 80px;
max-width: 180px;
padding: 0.4em 0.4em;
border: 1.2px solid #cbd5e1;
border-radius: 6px;
background: #f8fafc;
color: #334155;
font-size: 0.9rem;
transition: border-color 0.2s, box-shadow 0.2s;
}
.row > input:focus,
.row > select:focus {
box-shadow: 0 0 0 2px rgba(56,189,248,0.3);
outline: none;
}
select, input[type="number"] {
min-width: 30px;
max-width: 100%;
padding: 0.4em 0.6em;
border: 1.2px solid #cbd5e1;
border-radius: 6px;
font-size: 1rem;
color: #334155;
background: #f8fafc;
margin-left: 0.8rem;
margin-right: 0.8rem;
}
/* Buttons */
.buttons {
display: flex;
justify-content: flex-end;
gap: 0.5em;
}
button{
border-radius: 8px;
padding: 0.5em 1.2em;
display: flex;
align-items: center;
border: none;
cursor: pointer;
background: var(--bg-sidebar);
color: var(--accent);
}
button:hover{
background: var(--bg-border);
}
/* Infotext */
#ollama-model-selectors label {
display: flex;
align-items: center;
gap: 0.6em;
margin-bottom: 0.3em;
}
#ollama-model-selectors select {
min-width: 100px;
max-width: 180px;
padding: 0.35em 0.5em;
border-radius: 6px;
font-size: 1rem;
border: 1.2px solid #cbd5e1;
background: #f8fafc;
color: #334155;
}
.needs-relocation {
opacity: 0.4;
filter: grayscale(0.8);
/* oder: color: #aaa; oder wie du magst */
}
.warning-icon {
margin-left: 8px;
color: #eab308; /* schönes gelb/orange */
font-size: 1.2em;
vertical-align: middle;
}
</style>
<script>
window.addEventListener('DOMContentLoaded', async () => {
const isSky = await window.settingsAPI.getSkyMode();
document.body.classList.toggle('sky-mode', isSky);
// Elemente holen
const themeSelect = document.getElementById('themeSelect');
const cbSky = document.getElementById('skymode');
const cbSkip = document.getElementById('skipPrompt');
const thresholdInput = document.getElementById('intelligentCommitThresholdInput');
const minutesInput = document.getElementById('intelligentCommitMinutesInput');
const ok = document.getElementById('okBtn');
const cancel = document.getElementById('cancelBtn');
const cbAutostart = document.getElementById('autostart');
const cbCloseToTray= document.getElementById('closeToTray');
const [initialAutostart, initialCloseToTray] = await Promise.all([
window.settingsAPI.getAutostart(),
window.settingsAPI.getCloseToTray()
]);
cbAutostart.checked = initialAutostart;
cbCloseToTray.checked = initialCloseToTray;
// Initialwerte parallel laden
const [initialSky, initialSkip, initialThreshold, initialMinutes] = await Promise.all([
window.settingsAPI.getSkyMode(),
window.settingsAPI.getSkipPrompt(),
window.electronAPI.getIntelligentCommitThreshold(),
window.electronAPI.getMinutesCommitThreshold()
]);
// Inputs setzen
cbSky.checked = initialSky;
cbSkip.checked = initialSkip;
thresholdInput.value = initialThreshold;
minutesInput.value = initialMinutes;
// **Vorschau**: Sky-Mode sofort übernehmen
cbSky.addEventListener('change', async () => {
await window.settingsAPI.setSkyMode(cbSky.checked);
document.body.classList.toggle('sky-mode', cbSky.checked);
});
// OK: alles final speichern
ok.addEventListener('click', async () => {
await window.settingsAPI.setSkipPrompt(cbSkip.checked);
await window.settingsAPI.setAutostart(cbAutostart.checked);
await window.settingsAPI.setCloseToTray(cbCloseToTray.checked);
// SkyMode haben wir ja schon beim Change gesetzt
// Threshold speichern (immer Wert aus Feld nehmen!)
let threshold = parseInt(thresholdInput.value, 10);
if (isNaN(threshold)) threshold = 10;
if (threshold < 1) threshold = 1;
if (threshold > 1000) threshold = 1000;
await window.settingsAPI.setIntelligentCommitThreshold(threshold);
let minutes = parseInt(minutesInput.value, 10);
if (isNaN(minutes)) minutes = 10;
if (minutes < 1) minutes = 1;
if (minutes > 1000) minutes = 60;
await window.settingsAPI.setMinutesCommitThreshold(minutes);
// Dropdowns speichern
const commitSel = document.getElementById('commitModelSelect');
const readmeSel = document.getElementById('readmeModelSelect');
if (commitSel) await window.settingsAPI.setCommitModel(commitSel.value);
if (readmeSel) await window.settingsAPI.setReadmeModel(readmeSel.value);
window.settingsAPI.close();
});
// Cancel / Close: SkyMode zurücksetzen, dann schließen
const rollback = async () => {
await window.settingsAPI.setSkyMode(initialSky);
window.settingsAPI.close();
};
cancel.addEventListener('click', rollback);
const container = document.getElementById('ollama-model-selectors');
const res = await window.electronAPI.ollamaList();
if (res.status === 'no-cli') {
container.innerHTML = `
<div style="color:red;font-weight:bold;margin:1em 0;">
!! You need to install Ollama to use intelligent message & README generation !!
</div>`;
return;
}
if (res.status === 'error') {
container.innerHTML = `<div style="color:orange">Error fetching models: ${res.msg}</div>`;
return;
}
// Liste der Modell-Namen extrahieren
const names = res.models.map(m => m.name || m.model).filter(Boolean);
const qwen = names.filter(n => /^qwen2\.5-coder(:[\w\-.]+)?$/.test(n));
if (!qwen.length) {
// keine qwen2.5-coder → Pull-Buttons
container.innerHTML = `
<button id="pullCommitModelBtn" style="margin-bottom:8px;">
ollama pull qwen2.5-coder:7b
</button><br>
<button id="pullReadmeModelBtn">
ollama pull qwen2.5-coder:32b
</button>`;
document.getElementById('pullCommitModelBtn').onclick = async () => {
await window.electronAPI.ollamaPull('qwen2.5-coder:7b');
location.reload();
};
document.getElementById('pullReadmeModelBtn').onclick = async () => {
await window.electronAPI.ollamaPull('qwen2.5-coder:32b');
location.reload();
};
return;
}
// Dropdowns aufbauen
const makeOpts = (arr, sel) =>
arr.map(m => `<option ${m===sel?'selected':''}>${m}</option>`).join('');
// Default-Auswahl aus Settings (oder erstes gefundenes)
const commitDefault = qwen.find(m=>m.includes('7b'))||qwen[0];
const readmeDefault= qwen.find(m=>m.includes('32b'))||qwen[0];
const currentCommit = await window.settingsAPI.getCommitModel?.() || commitDefault;
const currentReadme= await window.settingsAPI.getReadmeModel?.() || readmeDefault;
container.innerHTML = `
<div class="row">
<label>Model for commit message generation:
<select id="commitModelSelect">
${makeOpts(qwen, currentCommit)}
</select>
</label>
<label>Model for README generation:
<select id="readmeModelSelect">
${makeOpts(qwen, currentReadme)}
</select>
</label>
</div>`;
});
</script>
</head>
<body>
<div class="dialog">
<div class="options">
<label class="option">
<input type="checkbox" id="autostart" />
Launch on System start
</label>
<label class="option">
<input type="checkbox" id="closeToTray" checked />
Close to Tray
</label>
<label class="option">
<input type="checkbox" id="skymode" />
Sky Theme
</label>
<label class="option" style="align-items:center;">
Theme:
<select id="themeSelect" style="margin-left:1em;">
<option value="default">Cits Favorite</option>
<option value="sky">Sky</option>
<option value="epic">Epic</option>
<option value="yinyang" disabled>Yin/Yang (coming soon)</option>
</select>
</label>
<label class="option">
<input type="checkbox" id="skipPrompt" class="flex-none" />
Skip prompt asking to remove .git folder if it has only one commit and no changes
</label>
<label class="block mb-2 font-semibold">
Rewrite commits after
<input type="number" id="intelligentCommitThresholdInput" min="1" max="1000" value="10" step="1" class="border rounded px-2 py-1 w-20 mx-1" class="flex-none">
lines of diff or
<input type="number" id="intelligentCommitMinutesInput" min="1" max="1000" value="10" step="1" class="border rounded px-2 py-1 w-20 mx-1" class="flex-none">
minutes have passed
</label>
<div class="options">
<!-- Hier kommt das Model-Selector-HTML rein -->
<div id="ollama-model-selectors"></div>
</div>
<!-- Weitere Optionen in Zukunft hier hinzufügen -->
</div>
<div class="buttons">
<button id="cancelBtn" class="text-sm font-medium">
<svg width="18" height="18" viewBox="0 0 20 20" fill="none" class="icon-left">
<path d="M6 6l8 8M6 14L14 6" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
</button>
<button id="okBtn" class="text-sm font-medium">
<svg width="18" height="18" viewBox="0 0 20 20" fill="none" class="icon-left">
<path d="M5 11l4 4L15 7" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
</button>
</div>
</div>
</body>
</html>