Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8bec7dfc9a | ||
|
|
7950edb145 | ||
|
|
e3af6653cd | ||
|
|
b752c0804b | ||
|
|
8f98e79df9 | ||
|
|
f0a1d89152 | ||
|
|
c3762ae7a3 | ||
|
|
4db6f30461 |
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "gitty",
|
"name": "gitty",
|
||||||
"version": "2026.8.8",
|
"version": "2026.8.9",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "gitty",
|
"name": "gitty",
|
||||||
"version": "2026.8.8",
|
"version": "2026.8.9",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lucide/svelte": "^1.21.0",
|
"@lucide/svelte": "^1.21.0",
|
||||||
"@tailwindcss/vite": "^4.3.1",
|
"@tailwindcss/vite": "^4.3.1",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitty",
|
"name": "gitty",
|
||||||
"version": "2026.8.8",
|
"version": "2026.8.9",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Generated
+37
-3229
File diff suppressed because it is too large
Load Diff
@@ -20,7 +20,7 @@ tauri-plugin-dialog = "=2.7.0"
|
|||||||
tauri-plugin-aptabase = "1.0"
|
tauri-plugin-aptabase = "1.0"
|
||||||
keyring = { version = "3", features = ["apple-native", "windows-native", "async-secret-service", "crypto-rust", "async-io"] }
|
keyring = { version = "3", features = ["apple-native", "windows-native", "async-secret-service", "crypto-rust", "async-io"] }
|
||||||
commit_ai = { path = "crates/commit_ai" }
|
commit_ai = { path = "crates/commit_ai" }
|
||||||
tokio = "1.52.3"
|
tokio = { version = "1.52.3", features = ["macros", "rt-multi-thread"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
||||||
sysinfo = { version = "=0.38.3", default-features = false, features = ["system"] }
|
sysinfo = { version = "=0.38.3", default-features = false, features = ["system"] }
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ version = "0.1.0"
|
|||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
mistralrs = "0.8"
|
|
||||||
tokio = { version = "1", features = ["sync"] }
|
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
||||||
|
|||||||
@@ -5,318 +5,8 @@ pub use cloud::{
|
|||||||
review_openai, split_anthropic, split_custom, split_openai,
|
review_openai, split_anthropic, split_custom, split_openai,
|
||||||
};
|
};
|
||||||
|
|
||||||
use std::{
|
/// Strip a wrapping code fence and wrapping quotes so the result can go straight into
|
||||||
collections::hash_map::DefaultHasher,
|
/// the commit-message box.
|
||||||
hash::{Hash, Hasher},
|
|
||||||
sync::Arc,
|
|
||||||
};
|
|
||||||
|
|
||||||
use mistralrs::{GgufModelBuilder, Model, RequestBuilder, TextMessageRole};
|
|
||||||
use tokio::sync::RwLock;
|
|
||||||
|
|
||||||
/// One selectable local (on-device) model. Larger models produce better commit messages
|
|
||||||
/// but take longer to download (first run only, then cached) and run slower on CPU.
|
|
||||||
#[derive(Debug, Clone, serde::Serialize)]
|
|
||||||
pub struct LocalModelOption {
|
|
||||||
pub id: &'static str,
|
|
||||||
pub label: &'static str,
|
|
||||||
pub approx_size_mb: u32,
|
|
||||||
repo: &'static str,
|
|
||||||
file: &'static str,
|
|
||||||
tokenizer_repo: &'static str,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub const DEFAULT_LOCAL_MODEL_ID: &str = "qwen2.5-0.5b";
|
|
||||||
|
|
||||||
pub const LOCAL_MODELS: &[LocalModelOption] = &[
|
|
||||||
LocalModelOption {
|
|
||||||
id: "qwen2.5-0.5b",
|
|
||||||
label: "Qwen2.5 0.5B Instruct — fast, lower quality",
|
|
||||||
approx_size_mb: 490,
|
|
||||||
repo: "Qwen/Qwen2.5-0.5B-Instruct-GGUF",
|
|
||||||
file: "qwen2.5-0.5b-instruct-q4_k_m.gguf",
|
|
||||||
tokenizer_repo: "Qwen/Qwen2.5-0.5B-Instruct",
|
|
||||||
},
|
|
||||||
LocalModelOption {
|
|
||||||
id: "qwen2.5-1.5b",
|
|
||||||
label: "Qwen2.5 1.5B Instruct — recommended",
|
|
||||||
approx_size_mb: 1050,
|
|
||||||
repo: "Qwen/Qwen2.5-1.5B-Instruct-GGUF",
|
|
||||||
file: "qwen2.5-1.5b-instruct-q4_k_m.gguf",
|
|
||||||
tokenizer_repo: "Qwen/Qwen2.5-1.5B-Instruct",
|
|
||||||
},
|
|
||||||
LocalModelOption {
|
|
||||||
id: "qwen2.5-3b",
|
|
||||||
label: "Qwen2.5 3B Instruct — best quality, slower",
|
|
||||||
approx_size_mb: 2100,
|
|
||||||
repo: "Qwen/Qwen2.5-3B-Instruct-GGUF",
|
|
||||||
file: "qwen2.5-3b-instruct-q4_k_m.gguf",
|
|
||||||
tokenizer_repo: "Qwen/Qwen2.5-3B-Instruct",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
fn find_local_model(model_id: &str) -> Option<&'static LocalModelOption> {
|
|
||||||
LOCAL_MODELS.iter().find(|option| option.id == model_id)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize)]
|
|
||||||
#[serde(rename_all = "lowercase")]
|
|
||||||
pub enum LocalGenerationProfile {
|
|
||||||
Fast,
|
|
||||||
Balanced,
|
|
||||||
Detailed,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for LocalGenerationProfile {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self::Fast
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl LocalGenerationProfile {
|
|
||||||
pub fn from_id(value: Option<&str>) -> Self {
|
|
||||||
match value
|
|
||||||
.unwrap_or_default()
|
|
||||||
.trim()
|
|
||||||
.to_ascii_lowercase()
|
|
||||||
.as_str()
|
|
||||||
{
|
|
||||||
"balanced" => Self::Balanced,
|
|
||||||
"detailed" => Self::Detailed,
|
|
||||||
_ => Self::Fast,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn diff_unified_context(self) -> &'static str {
|
|
||||||
match self {
|
|
||||||
Self::Fast => "--unified=1",
|
|
||||||
Self::Balanced => "--unified=2",
|
|
||||||
Self::Detailed => "--unified=3",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn max_diff_chars(self) -> usize {
|
|
||||||
match self {
|
|
||||||
Self::Fast => 8_000,
|
|
||||||
Self::Balanced => 12_000,
|
|
||||||
Self::Detailed => 24_000,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn max_output_tokens(self) -> usize {
|
|
||||||
match self {
|
|
||||||
Self::Fast => 160,
|
|
||||||
Self::Balanced => 360,
|
|
||||||
Self::Detailed => 750,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize)]
|
|
||||||
#[serde(rename_all = "lowercase")]
|
|
||||||
pub enum CommitAiPhase {
|
|
||||||
/// Nothing has been requested yet.
|
|
||||||
Idle,
|
|
||||||
/// Downloading (first run only, then cached by hf-hub) and/or loading into memory.
|
|
||||||
Loading,
|
|
||||||
Ready,
|
|
||||||
Error,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, serde::Serialize)]
|
|
||||||
pub struct CommitAiStatus {
|
|
||||||
pub phase: CommitAiPhase,
|
|
||||||
pub model_id: Option<String>,
|
|
||||||
pub error: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
struct Inner {
|
|
||||||
phase: CommitAiPhase,
|
|
||||||
model_id: Option<String>,
|
|
||||||
error: Option<String>,
|
|
||||||
model: Option<Arc<Model>>,
|
|
||||||
cache: Option<GenerationCache>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
||||||
struct GenerationCacheKey {
|
|
||||||
model_id: String,
|
|
||||||
profile: LocalGenerationProfile,
|
|
||||||
input_hash: u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
struct GenerationCache {
|
|
||||||
key: GenerationCacheKey,
|
|
||||||
message: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Manages the local (on-device) model only. Cloud providers are stateless HTTP calls
|
|
||||||
/// (see [`cloud`]) and don't need this — there's nothing to download or keep loaded.
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct CommitAiEngine {
|
|
||||||
inner: Arc<RwLock<Inner>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for CommitAiEngine {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self {
|
|
||||||
inner: Arc::new(RwLock::new(Inner {
|
|
||||||
phase: CommitAiPhase::Idle,
|
|
||||||
model_id: None,
|
|
||||||
error: None,
|
|
||||||
model: None,
|
|
||||||
cache: None,
|
|
||||||
})),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl CommitAiEngine {
|
|
||||||
pub fn new() -> Self {
|
|
||||||
Self::default()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn status(&self) -> CommitAiStatus {
|
|
||||||
let guard = self.inner.read().await;
|
|
||||||
CommitAiStatus {
|
|
||||||
phase: guard.phase,
|
|
||||||
model_id: guard.model_id.clone(),
|
|
||||||
error: guard.error.clone(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Downloads (first run only; hf-hub caches the files afterwards) and loads the given
|
|
||||||
/// local model. Safe to call repeatedly — a call for the model that's already
|
|
||||||
/// ready/loading is a no-op; a call for a *different* model switches to it (the
|
|
||||||
/// previous one is dropped once no generation is still using it).
|
|
||||||
pub async fn ensure_loaded(&self, model_id: &str) {
|
|
||||||
{
|
|
||||||
let guard = self.inner.read().await;
|
|
||||||
let same_model = guard.model_id.as_deref() == Some(model_id);
|
|
||||||
if same_model && matches!(guard.phase, CommitAiPhase::Ready | CommitAiPhase::Loading) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let Some(option) = find_local_model(model_id) else {
|
|
||||||
let mut guard = self.inner.write().await;
|
|
||||||
guard.phase = CommitAiPhase::Error;
|
|
||||||
guard.model_id = Some(model_id.to_string());
|
|
||||||
guard.error = Some(format!("Unknown local model: {model_id}"));
|
|
||||||
guard.cache = None;
|
|
||||||
return;
|
|
||||||
};
|
|
||||||
|
|
||||||
{
|
|
||||||
let mut guard = self.inner.write().await;
|
|
||||||
guard.phase = CommitAiPhase::Loading;
|
|
||||||
guard.model_id = Some(model_id.to_string());
|
|
||||||
guard.error = None;
|
|
||||||
guard.model = None;
|
|
||||||
guard.cache = None;
|
|
||||||
}
|
|
||||||
|
|
||||||
let result = GgufModelBuilder::new(option.repo, vec![option.file])
|
|
||||||
.with_tok_model_id(option.tokenizer_repo)
|
|
||||||
.with_logging()
|
|
||||||
.build()
|
|
||||||
.await;
|
|
||||||
|
|
||||||
let mut guard = self.inner.write().await;
|
|
||||||
// If the user switched to yet another model while this one was loading, drop this
|
|
||||||
// (now stale) result instead of overwriting the newer request's state.
|
|
||||||
if guard.model_id.as_deref() != Some(model_id) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
match result {
|
|
||||||
Ok(model) => {
|
|
||||||
guard.model = Some(Arc::new(model));
|
|
||||||
guard.phase = CommitAiPhase::Ready;
|
|
||||||
guard.error = None;
|
|
||||||
guard.cache = None;
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
guard.phase = CommitAiPhase::Error;
|
|
||||||
guard.error = Some(err.to_string());
|
|
||||||
guard.cache = None;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn generate_commit_message(
|
|
||||||
&self,
|
|
||||||
diff: &str,
|
|
||||||
notes: Option<&str>,
|
|
||||||
profile: LocalGenerationProfile,
|
|
||||||
) -> Result<String, String> {
|
|
||||||
let (model, cache_key) = {
|
|
||||||
let guard = self.inner.read().await;
|
|
||||||
match (guard.phase, &guard.model) {
|
|
||||||
(CommitAiPhase::Ready, Some(model)) => {
|
|
||||||
let cache_key = GenerationCacheKey {
|
|
||||||
model_id: guard.model_id.clone().unwrap_or_default(),
|
|
||||||
profile,
|
|
||||||
input_hash: generation_input_hash(diff, notes),
|
|
||||||
};
|
|
||||||
if let Some(cache) = &guard.cache {
|
|
||||||
if cache.key == cache_key {
|
|
||||||
return Ok(cache.message.clone());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
(model.clone(), cache_key)
|
|
||||||
}
|
|
||||||
_ => return Err("The local AI model is not ready yet.".to_string()),
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let (system, user) = build_local_messages(diff, notes, profile)?;
|
|
||||||
let request = RequestBuilder::new()
|
|
||||||
.set_sampler_max_len(profile.max_output_tokens())
|
|
||||||
.add_message(TextMessageRole::System, system)
|
|
||||||
.add_message(TextMessageRole::User, user);
|
|
||||||
|
|
||||||
let response = model
|
|
||||||
.send_chat_request(request)
|
|
||||||
.await
|
|
||||||
.map_err(|err| err.to_string())?;
|
|
||||||
|
|
||||||
let content = response
|
|
||||||
.choices
|
|
||||||
.first()
|
|
||||||
.and_then(|choice| choice.message.content.clone())
|
|
||||||
.ok_or_else(|| "The model did not return a response.".to_string())?;
|
|
||||||
|
|
||||||
let message = sanitize_message(&content);
|
|
||||||
if message.is_empty() {
|
|
||||||
return Err("The model did not return a response.".to_string());
|
|
||||||
}
|
|
||||||
if looks_like_diff_echo(&message) {
|
|
||||||
return Err(
|
|
||||||
"The local model returned the diff instead of a commit message. Try a larger local model (1.5B or 3B) or a cloud provider.".to_string(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
{
|
|
||||||
let mut guard = self.inner.write().await;
|
|
||||||
guard.cache = Some(GenerationCache {
|
|
||||||
key: cache_key,
|
|
||||||
message: message.clone(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
Ok(message)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn generation_input_hash(diff: &str, notes: Option<&str>) -> u64 {
|
|
||||||
let mut hasher = DefaultHasher::new();
|
|
||||||
diff.hash(&mut hasher);
|
|
||||||
notes.unwrap_or("").hash(&mut hasher);
|
|
||||||
hasher.finish()
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Models occasionally ignore the "no code fences" instruction (small local models
|
|
||||||
/// especially) — strip a wrapping ``` fence and wrapping quotes so the result can go
|
|
||||||
/// straight into the commit-message box.
|
|
||||||
pub(crate) fn sanitize_message(raw: &str) -> String {
|
pub(crate) fn sanitize_message(raw: &str) -> String {
|
||||||
let mut text = raw.trim().to_string();
|
let mut text = raw.trim().to_string();
|
||||||
if text.starts_with("```") {
|
if text.starts_with("```") {
|
||||||
@@ -333,9 +23,9 @@ pub(crate) fn sanitize_message(raw: &str) -> String {
|
|||||||
trimmed.to_string()
|
trimmed.to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Weak models (small local ones especially) sometimes just echo the prompt's diff
|
/// Some models echo the prompt's diff sections instead of writing a commit message.
|
||||||
/// sections back instead of writing a commit message. Catch that so the UI can show a
|
/// Catch that so the UI can show a clear error instead of dumping raw diff text into
|
||||||
/// clear error instead of dumping raw diff text into the commit-message box.
|
/// the commit-message box.
|
||||||
pub(crate) fn looks_like_diff_echo(message: &str) -> bool {
|
pub(crate) fn looks_like_diff_echo(message: &str) -> bool {
|
||||||
let lower = message.to_ascii_lowercase();
|
let lower = message.to_ascii_lowercase();
|
||||||
lower.contains("diff --git")
|
lower.contains("diff --git")
|
||||||
@@ -358,55 +48,12 @@ fn truncate_at_char_boundary(input: &str, max_chars: usize) -> String {
|
|||||||
format!("{}\n\n[... diff truncated ...]", &input[..cut])
|
format!("{}\n\n[... diff truncated ...]", &input[..cut])
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn build_local_messages(
|
|
||||||
diff: &str,
|
|
||||||
notes: Option<&str>,
|
|
||||||
profile: LocalGenerationProfile,
|
|
||||||
) -> Result<(String, String), String> {
|
|
||||||
if diff.trim().is_empty() {
|
|
||||||
return Err("No staged changes available for a commit message.".to_string());
|
|
||||||
}
|
|
||||||
|
|
||||||
let diff = truncate_at_char_boundary(diff, profile.max_diff_chars());
|
|
||||||
// Appended to every profile below: small local models occasionally just echo the input
|
|
||||||
// (the "Staged files:" / "Diff stat:" / "Detailed diff:" sections built in git.rs's
|
|
||||||
// `staged_diff_local`) instead of writing a new commit message. Naming those exact
|
|
||||||
// section headers here makes the failure mode explicit enough for weak models to avoid.
|
|
||||||
const ANTI_ECHO: &str = " Never repeat, quote, or paraphrase the diff or its headers — \
|
|
||||||
do not include 'diff --git', '@@', 'Staged files:', 'Diff stat:', or 'Detailed diff:' \
|
|
||||||
anywhere in your answer.";
|
|
||||||
let system = match profile {
|
|
||||||
LocalGenerationProfile::Fast => {
|
|
||||||
format!(
|
|
||||||
"You generate Git commit messages. Respond only with one Conventional Commits subject line: <type>(<scope>): <subject>. Max 72 characters. No body, bullets, preamble, explanation, code fences, or quotes. Answer in English.{ANTI_ECHO}"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
LocalGenerationProfile::Balanced => {
|
|
||||||
format!(
|
|
||||||
"You generate Git commit messages. Respond with a Conventional Commits subject line, then a blank line, then at most two short bullet points. Keep every line under 72 characters. No preamble, explanation, code fences, or quotes. Answer in English.{ANTI_ECHO}"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
LocalGenerationProfile::Detailed => {
|
|
||||||
format!(
|
|
||||||
"You generate Git commit messages. Respond with a Conventional Commits subject line, then a blank line, then a concise body and up to four short bullet points grouped by affected area/file. Keep every line under 72 characters. No preamble, explanation, code fences, or quotes. Answer in English.{ANTI_ECHO}"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut user = String::new();
|
|
||||||
if let Some(n) = notes.filter(|n| !n.trim().is_empty()) {
|
|
||||||
user.push_str(&format!("Developer notes:\n{n}\n\n"));
|
|
||||||
}
|
|
||||||
user.push_str(&format!("Staged changes:\n{diff}"));
|
|
||||||
Ok((system, user))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn build_messages(diff: &str, notes: Option<&str>) -> Result<(String, String), String> {
|
pub(crate) fn build_messages(diff: &str, notes: Option<&str>) -> Result<(String, String), String> {
|
||||||
if diff.trim().is_empty() {
|
if diff.trim().is_empty() {
|
||||||
return Err("No staged changes available for a commit message.".to_string());
|
return Err("No staged changes available for a commit message.".to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rough token estimate — small models often have an 8-32k context window.
|
// Rough token estimate to keep requests within common context windows.
|
||||||
const MAX_CHARS: usize = 24_000;
|
const MAX_CHARS: usize = 24_000;
|
||||||
let diff = truncate_at_char_boundary(diff, MAX_CHARS);
|
let diff = truncate_at_char_boundary(diff, MAX_CHARS);
|
||||||
|
|
||||||
|
|||||||
+222
-116
@@ -578,6 +578,25 @@ fn repository_bundle_for_repo(
|
|||||||
// branches -> tags -> stashes -> commits -> files waterfall down to the
|
// branches -> tags -> stashes -> commits -> files waterfall down to the
|
||||||
// duration of its slowest member.
|
// duration of its slowest member.
|
||||||
let status = status_for_repo(repo)?;
|
let status = status_for_repo(repo)?;
|
||||||
|
|
||||||
|
// A freshly initialized or cloned empty repository has a symbolic HEAD,
|
||||||
|
// but it does not resolve to a commit yet (an "unborn" HEAD). Some Git
|
||||||
|
// commands and Git extensions treat that as a hard revision error. Keep
|
||||||
|
// the repository usable and still report any untracked working-tree files
|
||||||
|
// without starting commit-dependent workers.
|
||||||
|
if verify_commit(repo, "HEAD").is_err() {
|
||||||
|
let files = repository_files_with_status(repo, &status)?;
|
||||||
|
return Ok(RepositoryBundle {
|
||||||
|
status,
|
||||||
|
branches: Vec::new(),
|
||||||
|
tags: Vec::new(),
|
||||||
|
stashes: Vec::new(),
|
||||||
|
commits: Vec::new(),
|
||||||
|
files,
|
||||||
|
warning: None,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
let (branches, tags, stashes, commits, files) = thread::scope(|scope| -> Result<_, String> {
|
let (branches, tags, stashes, commits, files) = thread::scope(|scope| -> Result<_, String> {
|
||||||
let branches = scope.spawn(|| branches_for_repo(repo));
|
let branches = scope.spawn(|| branches_for_repo(repo));
|
||||||
let tags = scope.spawn(|| tags_for_repo(repo));
|
let tags = scope.spawn(|| tags_for_repo(repo));
|
||||||
@@ -2117,28 +2136,6 @@ pub fn get_file_patch(path: String, file: String, staged: bool) -> Result<String
|
|||||||
Ok(String::from_utf8_lossy(&output).to_string())
|
Ok(String::from_utf8_lossy(&output).to_string())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tauri::command]
|
|
||||||
pub fn commit_ai_local_models() -> Vec<commit_ai::LocalModelOption> {
|
|
||||||
commit_ai::LOCAL_MODELS.to_vec()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[tauri::command]
|
|
||||||
pub async fn commit_ai_status(
|
|
||||||
engine: tauri::State<'_, commit_ai::CommitAiEngine>,
|
|
||||||
) -> Result<commit_ai::CommitAiStatus, String> {
|
|
||||||
Ok(engine.status().await)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Kicks off the (first-run-only) download and model load in the background and returns
|
|
||||||
/// immediately; the frontend polls `commit_ai_status` to know when it's ready.
|
|
||||||
#[tauri::command]
|
|
||||||
pub fn commit_ai_load(model_id: String, engine: tauri::State<'_, commit_ai::CommitAiEngine>) {
|
|
||||||
let engine = engine.inner().clone();
|
|
||||||
tauri::async_runtime::spawn(async move {
|
|
||||||
engine.ensure_loaded(&model_id).await;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// The prompt is built from `git diff --cached` only, i.e. exactly the staged changes —
|
// The prompt is built from `git diff --cached` only, i.e. exactly the staged changes —
|
||||||
// unstaged edits and untracked files never influence the generated message.
|
// unstaged edits and untracked files never influence the generated message.
|
||||||
fn staged_diff(repo: &Path) -> Result<String, String> {
|
fn staged_diff(repo: &Path) -> Result<String, String> {
|
||||||
@@ -2147,8 +2144,8 @@ fn staged_diff(repo: &Path) -> Result<String, String> {
|
|||||||
let name_status = run_git(repo, ["diff", "--cached", "--name-status", "-M"])?;
|
let name_status = run_git(repo, ["diff", "--cached", "--name-status", "-M"])?;
|
||||||
let file_list = String::from_utf8_lossy(&name_status).trim().to_string();
|
let file_list = String::from_utf8_lossy(&name_status).trim().to_string();
|
||||||
|
|
||||||
// Generated lockfiles say nothing useful about intent but easily blow the small
|
// Generated lockfiles say little about intent and can easily dominate the context,
|
||||||
// context window of local models, so keep them out of the detailed diff.
|
// so keep them out of the detailed diff.
|
||||||
let diff = run_git(
|
let diff = run_git(
|
||||||
repo,
|
repo,
|
||||||
[
|
[
|
||||||
@@ -2178,50 +2175,6 @@ fn staged_diff(repo: &Path) -> Result<String, String> {
|
|||||||
Ok(format!("Staged files:\n{file_list}\n\n{diff}"))
|
Ok(format!("Staged files:\n{file_list}\n\n{diff}"))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn staged_diff_local(
|
|
||||||
repo: &Path,
|
|
||||||
profile: commit_ai::LocalGenerationProfile,
|
|
||||||
) -> Result<String, String> {
|
|
||||||
let name_status = run_git(repo, ["diff", "--cached", "--name-status", "-M"])?;
|
|
||||||
let file_list = String::from_utf8_lossy(&name_status).trim().to_string();
|
|
||||||
|
|
||||||
let stat = run_git(repo, ["diff", "--cached", "--stat", "--summary"])?;
|
|
||||||
let stat = String::from_utf8_lossy(&stat).trim().to_string();
|
|
||||||
|
|
||||||
let diff_args = vec![
|
|
||||||
"diff",
|
|
||||||
"--cached",
|
|
||||||
"--no-ext-diff",
|
|
||||||
"--no-textconv",
|
|
||||||
profile.diff_unified_context(),
|
|
||||||
"--",
|
|
||||||
".",
|
|
||||||
":(exclude)*package-lock.json",
|
|
||||||
":(exclude)*pnpm-lock.yaml",
|
|
||||||
":(exclude)*yarn.lock",
|
|
||||||
":(exclude)*bun.lockb",
|
|
||||||
":(exclude)*Cargo.lock",
|
|
||||||
":(exclude)*composer.lock",
|
|
||||||
":(exclude)*Gemfile.lock",
|
|
||||||
":(exclude)*poetry.lock",
|
|
||||||
":(exclude)*go.sum",
|
|
||||||
];
|
|
||||||
let diff = run_git(repo, diff_args)?;
|
|
||||||
let diff = String::from_utf8_lossy(&diff).trim().to_string();
|
|
||||||
|
|
||||||
let mut sections = Vec::new();
|
|
||||||
if !file_list.is_empty() {
|
|
||||||
sections.push(format!("Staged files:\n{file_list}"));
|
|
||||||
}
|
|
||||||
if !stat.is_empty() {
|
|
||||||
sections.push(format!("Diff stat:\n{stat}"));
|
|
||||||
}
|
|
||||||
if !diff.is_empty() {
|
|
||||||
sections.push(format!("Detailed diff:\n{diff}"));
|
|
||||||
}
|
|
||||||
Ok(sections.join("\n\n"))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn commit_ai_generate(
|
pub async fn commit_ai_generate(
|
||||||
path: String,
|
path: String,
|
||||||
@@ -2230,27 +2183,15 @@ pub async fn commit_ai_generate(
|
|||||||
model: Option<String>,
|
model: Option<String>,
|
||||||
api_key: Option<String>,
|
api_key: Option<String>,
|
||||||
base_url: Option<String>,
|
base_url: Option<String>,
|
||||||
local_profile: Option<String>,
|
|
||||||
engine: tauri::State<'_, commit_ai::CommitAiEngine>,
|
|
||||||
) -> Result<String, String> {
|
) -> Result<String, String> {
|
||||||
let repo = resolve_repo(&path)?;
|
let repo = resolve_repo(&path)?;
|
||||||
let local_profile = commit_ai::LocalGenerationProfile::from_id(local_profile.as_deref());
|
let diff = staged_diff(&repo)?;
|
||||||
let diff = if provider == "local" {
|
|
||||||
staged_diff_local(&repo, local_profile)?
|
|
||||||
} else {
|
|
||||||
staged_diff(&repo)?
|
|
||||||
};
|
|
||||||
let notes = notes.as_deref();
|
let notes = notes.as_deref();
|
||||||
let model = model.filter(|value| !value.trim().is_empty());
|
let model = model.filter(|value| !value.trim().is_empty());
|
||||||
let api_key = api_key.filter(|value| !value.trim().is_empty());
|
let api_key = api_key.filter(|value| !value.trim().is_empty());
|
||||||
let base_url = base_url.filter(|value| !value.trim().is_empty());
|
let base_url = base_url.filter(|value| !value.trim().is_empty());
|
||||||
|
|
||||||
match provider.as_str() {
|
match provider.as_str() {
|
||||||
"local" => {
|
|
||||||
engine
|
|
||||||
.generate_commit_message(&diff, notes, local_profile)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
"openai" => {
|
"openai" => {
|
||||||
let api_key = api_key.ok_or_else(|| "OpenAI API key is missing.".to_string())?;
|
let api_key = api_key.ok_or_else(|| "OpenAI API key is missing.".to_string())?;
|
||||||
let model = model.unwrap_or_else(|| "gpt-4o-mini".to_string());
|
let model = model.unwrap_or_else(|| "gpt-4o-mini".to_string());
|
||||||
@@ -2420,7 +2361,6 @@ pub async fn commit_ai_split(
|
|||||||
)
|
)
|
||||||
.await?
|
.await?
|
||||||
}
|
}
|
||||||
"local" => return Err("Commit splitting currently requires an API provider.".to_string()),
|
|
||||||
other => return Err(format!("Unknown AI provider: {other}")),
|
other => return Err(format!("Unknown AI provider: {other}")),
|
||||||
};
|
};
|
||||||
parse_ai_commit_plan(&raw, &staged_files)
|
parse_ai_commit_plan(&raw, &staged_files)
|
||||||
@@ -2522,7 +2462,6 @@ pub async fn commit_ai_review(
|
|||||||
let model = model.ok_or_else(|| "Model name is missing.".to_string())?;
|
let model = model.ok_or_else(|| "Model name is missing.".to_string())?;
|
||||||
commit_ai::review_custom(&base_url, api_key.as_deref(), &model, &diff).await?
|
commit_ai::review_custom(&base_url, api_key.as_deref(), &model, &diff).await?
|
||||||
}
|
}
|
||||||
"local" => return Err("Pre-commit review currently requires an API provider.".to_string()),
|
|
||||||
other => return Err(format!("Unknown AI provider: {other}")),
|
other => return Err(format!("Unknown AI provider: {other}")),
|
||||||
};
|
};
|
||||||
parse_ai_review(&raw)
|
parse_ai_review(&raw)
|
||||||
@@ -2654,32 +2593,23 @@ pub async fn pull(
|
|||||||
strategy: Option<String>,
|
strategy: Option<String>,
|
||||||
remote: Option<String>,
|
remote: Option<String>,
|
||||||
branch: Option<String>,
|
branch: Option<String>,
|
||||||
|
allow_unrelated_histories: Option<bool>,
|
||||||
) -> Result<GitStatus, String> {
|
) -> Result<GitStatus, String> {
|
||||||
tauri::async_runtime::spawn_blocking(move || -> Result<GitStatus, String> {
|
tauri::async_runtime::spawn_blocking(move || -> Result<GitStatus, String> {
|
||||||
let repo = resolve_repo(&path)?;
|
let repo = resolve_repo(&path)?;
|
||||||
let strategy = strategy.as_deref().unwrap_or("merge");
|
|
||||||
let remote = remote
|
let remote = remote
|
||||||
.map(|value| value.trim().to_string())
|
.map(|value| value.trim().to_string())
|
||||||
.filter(|value| !value.is_empty());
|
.filter(|value| !value.is_empty());
|
||||||
let mut pull_args = vec![OsString::from("pull")];
|
let branch = branch
|
||||||
match strategy {
|
.map(|value| value.trim().to_string())
|
||||||
"merge" => {
|
.filter(|value| !value.is_empty());
|
||||||
pull_args.extend([OsString::from("--no-rebase"), OsString::from("--no-edit")])
|
let pull_args = pull_args_for_repo(
|
||||||
}
|
&repo,
|
||||||
"rebase" => pull_args.push(OsString::from("--rebase")),
|
strategy.as_deref().unwrap_or("merge"),
|
||||||
"ff-only" => pull_args.push(OsString::from("--ff-only")),
|
remote.as_deref(),
|
||||||
_ => return Err("Unknown pull strategy.".to_string()),
|
branch.as_deref(),
|
||||||
}
|
allow_unrelated_histories.unwrap_or(false),
|
||||||
if let Some(remote_name) = remote.as_deref() {
|
)?;
|
||||||
validate_remote_name(&repo, remote_name, true)?;
|
|
||||||
pull_args.push(remote_name.into());
|
|
||||||
if let Some(branch) = branch
|
|
||||||
.map(|v| v.trim().to_string())
|
|
||||||
.filter(|v| !v.is_empty())
|
|
||||||
{
|
|
||||||
pull_args.push(branch.into());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let output = match (username.as_deref(), password.as_deref()) {
|
let output = match (username.as_deref(), password.as_deref()) {
|
||||||
(Some(u), Some(p)) if !u.is_empty() || !p.is_empty() => {
|
(Some(u), Some(p)) if !u.is_empty() || !p.is_empty() => {
|
||||||
run_git_authenticated_output(&repo, pull_args.clone(), u, p)?
|
run_git_authenticated_output(&repo, pull_args.clone(), u, p)?
|
||||||
@@ -2718,6 +2648,39 @@ pub async fn pull(
|
|||||||
.map_err(|err| format!("Could not pull: {err}"))?
|
.map_err(|err| format!("Could not pull: {err}"))?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn pull_args_for_repo(
|
||||||
|
repo: &Path,
|
||||||
|
strategy: &str,
|
||||||
|
remote: Option<&str>,
|
||||||
|
branch: Option<&str>,
|
||||||
|
allow_unrelated_histories: bool,
|
||||||
|
) -> Result<Vec<OsString>, String> {
|
||||||
|
let mut pull_args = vec![OsString::from("pull")];
|
||||||
|
match strategy {
|
||||||
|
"merge" => {
|
||||||
|
pull_args.extend([OsString::from("--no-rebase"), OsString::from("--no-edit")]);
|
||||||
|
if allow_unrelated_histories {
|
||||||
|
pull_args.push(OsString::from("--allow-unrelated-histories"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"rebase" => pull_args.push(OsString::from("--rebase")),
|
||||||
|
"ff-only" => pull_args.push(OsString::from("--ff-only")),
|
||||||
|
_ => return Err("Unknown pull strategy.".to_string()),
|
||||||
|
}
|
||||||
|
if let Some(remote_name) = remote.map(str::trim).filter(|value| !value.is_empty()) {
|
||||||
|
validate_remote_name(repo, remote_name, true)?;
|
||||||
|
pull_args.push(remote_name.into());
|
||||||
|
let branch = branch
|
||||||
|
.map(str::trim)
|
||||||
|
.filter(|value| !value.is_empty())
|
||||||
|
.map(ToString::to_string)
|
||||||
|
.map(Ok)
|
||||||
|
.unwrap_or_else(|| current_branch_name(repo))?;
|
||||||
|
pull_args.push(branch.into());
|
||||||
|
}
|
||||||
|
Ok(pull_args)
|
||||||
|
}
|
||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn fetch(
|
pub async fn fetch(
|
||||||
path: String,
|
path: String,
|
||||||
@@ -3010,7 +2973,9 @@ fn first_remote_name(repo: &Path) -> Option<String> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn current_branch_name(repo: &Path) -> Result<String, String> {
|
fn current_branch_name(repo: &Path) -> Result<String, String> {
|
||||||
let branch = run_git(repo, ["rev-parse", "--abbrev-ref", "HEAD"])?;
|
// `symbolic-ref` also works before the first commit, while
|
||||||
|
// `rev-parse --abbrev-ref HEAD` fails for an unborn HEAD.
|
||||||
|
let branch = run_git(repo, ["symbolic-ref", "--quiet", "--short", "HEAD"])?;
|
||||||
let branch = String::from_utf8_lossy(&branch).trim().to_string();
|
let branch = String::from_utf8_lossy(&branch).trim().to_string();
|
||||||
if branch.is_empty() || branch == "HEAD" {
|
if branch.is_empty() || branch == "HEAD" {
|
||||||
return Err("Could not determine current branch.".to_string());
|
return Err("Could not determine current branch.".to_string());
|
||||||
@@ -5481,19 +5446,26 @@ fn clone_repository_core(
|
|||||||
run_git_clone(remote_url.trim(), &target, username, password)?;
|
run_git_clone(remote_url.trim(), &target, username, password)?;
|
||||||
|
|
||||||
let repo = resolve_repo(&target.to_string_lossy())?;
|
let repo = resolve_repo(&target.to_string_lossy())?;
|
||||||
let lfs_warning = sync_git_lfs_objects_if_needed(
|
let lfs_warning = if verify_commit(&repo, "HEAD").is_ok() {
|
||||||
&repo,
|
sync_git_lfs_objects_if_needed(
|
||||||
Some("origin"),
|
&repo,
|
||||||
username,
|
Some("origin"),
|
||||||
password,
|
username,
|
||||||
true,
|
password,
|
||||||
)
|
true,
|
||||||
.err()
|
|
||||||
.map(|error| {
|
|
||||||
format!(
|
|
||||||
"Repository cloned, but Git LFS objects could not be downloaded automatically: {error}"
|
|
||||||
)
|
)
|
||||||
});
|
.err()
|
||||||
|
.map(|error| {
|
||||||
|
format!(
|
||||||
|
"Repository cloned, but Git LFS objects could not be downloaded automatically: {error}"
|
||||||
|
)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
// There cannot be LFS pointers to download before the first commit.
|
||||||
|
// In particular, avoid Git LFS implementations that try to resolve
|
||||||
|
// HEAD themselves and fail on an empty repository.
|
||||||
|
None
|
||||||
|
};
|
||||||
|
|
||||||
let mut bundle = repository_bundle_for_repo(&repo, commit_limit)?;
|
let mut bundle = repository_bundle_for_repo(&repo, commit_limit)?;
|
||||||
bundle.warning = lfs_warning;
|
bundle.warning = lfs_warning;
|
||||||
@@ -7840,6 +7812,37 @@ mod tests {
|
|||||||
assert!(bundle.warning.is_none());
|
assert!(bundle.warning.is_none());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn clone_repository_core_supports_empty_repository() {
|
||||||
|
let source = init_bare_temp_repo("empty_clone_source");
|
||||||
|
let parent = temp_dir("empty_clone_parent");
|
||||||
|
|
||||||
|
let bundle = clone_repository_core(
|
||||||
|
source.path.to_str().expect("source path should be UTF-8"),
|
||||||
|
parent.path.to_str().expect("parent path should be UTF-8"),
|
||||||
|
Some("local-copy"),
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
Some(100),
|
||||||
|
)
|
||||||
|
.expect("empty repository should clone");
|
||||||
|
|
||||||
|
let cloned_repo = parent.path.join("local-copy");
|
||||||
|
assert_eq!(
|
||||||
|
PathBuf::from(bundle.status.repo_path),
|
||||||
|
cloned_repo
|
||||||
|
.canonicalize()
|
||||||
|
.expect("clone path should resolve")
|
||||||
|
);
|
||||||
|
assert!(bundle.status.clean);
|
||||||
|
assert!(bundle.commits.is_empty());
|
||||||
|
assert!(bundle.branches.is_empty());
|
||||||
|
assert!(bundle.tags.is_empty());
|
||||||
|
assert!(bundle.stashes.is_empty());
|
||||||
|
assert!(bundle.files.is_empty());
|
||||||
|
assert!(bundle.warning.is_none());
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
windows,
|
windows,
|
||||||
@@ -8538,6 +8541,108 @@ mod tests {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn pull_with_selected_remote_infers_current_branch() {
|
||||||
|
let repo = init_temp_repo("pull_selected_remote");
|
||||||
|
let branch = git_output_test(&repo.path, ["symbolic-ref", "--short", "HEAD"]);
|
||||||
|
run_git_test(&repo.path, ["remote", "add", "origin", "."]);
|
||||||
|
|
||||||
|
let args = pull_args_for_repo(&repo.path, "merge", Some("origin"), None, false)
|
||||||
|
.expect("pull arguments should be created");
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
args,
|
||||||
|
vec![
|
||||||
|
OsString::from("pull"),
|
||||||
|
OsString::from("--no-rebase"),
|
||||||
|
OsString::from("--no-edit"),
|
||||||
|
OsString::from("origin"),
|
||||||
|
OsString::from(branch),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn pull_can_explicitly_allow_unrelated_histories_for_merge() {
|
||||||
|
let repo = init_temp_repo("pull_unrelated_histories");
|
||||||
|
let branch = git_output_test(&repo.path, ["symbolic-ref", "--short", "HEAD"]);
|
||||||
|
run_git_test(&repo.path, ["remote", "add", "origin", "."]);
|
||||||
|
|
||||||
|
let args = pull_args_for_repo(&repo.path, "merge", Some("origin"), None, true)
|
||||||
|
.expect("pull arguments should be created");
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
args,
|
||||||
|
vec![
|
||||||
|
OsString::from("pull"),
|
||||||
|
OsString::from("--no-rebase"),
|
||||||
|
OsString::from("--no-edit"),
|
||||||
|
OsString::from("--allow-unrelated-histories"),
|
||||||
|
OsString::from("origin"),
|
||||||
|
OsString::from(branch),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
#[cfg_attr(
|
||||||
|
windows,
|
||||||
|
ignore = "Git for Windows can fail local pull tests with a sh signal pipe error"
|
||||||
|
)]
|
||||||
|
async fn pull_retries_unrelated_histories_only_after_explicit_opt_in() {
|
||||||
|
let remote = init_temp_repo("pull_unrelated_remote");
|
||||||
|
fs::write(remote.path.join("remote.txt"), "remote history\n")
|
||||||
|
.expect("remote file should be written");
|
||||||
|
run_git_test(&remote.path, ["add", "remote.txt"]);
|
||||||
|
run_git_test(&remote.path, ["commit", "-q", "-m", "remote init"]);
|
||||||
|
let remote_branch = git_output_test(&remote.path, ["branch", "--show-current"]);
|
||||||
|
|
||||||
|
let local = init_temp_repo("pull_unrelated_local");
|
||||||
|
fs::write(local.path.join("local.txt"), "local history\n")
|
||||||
|
.expect("local file should be written");
|
||||||
|
run_git_test(&local.path, ["add", "local.txt"]);
|
||||||
|
run_git_test(&local.path, ["commit", "-q", "-m", "local init"]);
|
||||||
|
run_git_test(
|
||||||
|
&local.path,
|
||||||
|
["remote", "add", "origin", remote.path.to_str().unwrap()],
|
||||||
|
);
|
||||||
|
|
||||||
|
let error = pull(
|
||||||
|
local.path.to_string_lossy().to_string(),
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
Some("merge".to_string()),
|
||||||
|
Some("origin".to_string()),
|
||||||
|
Some(remote_branch.clone()),
|
||||||
|
Some(false),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect_err("unrelated histories should require explicit opt-in");
|
||||||
|
assert!(error.contains("refusing to merge unrelated histories"));
|
||||||
|
|
||||||
|
let status = pull(
|
||||||
|
local.path.to_string_lossy().to_string(),
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
Some("merge".to_string()),
|
||||||
|
Some("origin".to_string()),
|
||||||
|
Some(remote_branch),
|
||||||
|
Some(true),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("explicitly allowed histories should merge");
|
||||||
|
|
||||||
|
assert!(status.clean, "{:?}", status.files);
|
||||||
|
assert!(local.path.join("local.txt").exists());
|
||||||
|
assert!(local.path.join("remote.txt").exists());
|
||||||
|
let parent_count =
|
||||||
|
git_output_test(&local.path, ["rev-list", "--parents", "-n", "1", "HEAD"])
|
||||||
|
.split_whitespace()
|
||||||
|
.count()
|
||||||
|
- 1;
|
||||||
|
assert_eq!(parent_count, 2);
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
windows,
|
windows,
|
||||||
@@ -8580,6 +8685,7 @@ mod tests {
|
|||||||
None,
|
None,
|
||||||
None,
|
None,
|
||||||
None,
|
None,
|
||||||
|
None,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|||||||
+17
-22
@@ -14,24 +14,23 @@ use git::{
|
|||||||
SearchCancellationState, add_remote, add_to_gitignore, add_worktree, amend_commit,
|
SearchCancellationState, add_remote, add_to_gitignore, add_worktree, amend_commit,
|
||||||
apply_file_patch, cancel_code_search, cancel_file_history, checkout_branch, cherry_pick_abort,
|
apply_file_patch, cancel_code_search, cancel_file_history, checkout_branch, cherry_pick_abort,
|
||||||
cherry_pick_commit, cherry_pick_continue, clone_repository, commit, commit_ai_generate,
|
cherry_pick_commit, cherry_pick_continue, clone_repository, commit, commit_ai_generate,
|
||||||
commit_ai_load, commit_ai_local_models, commit_ai_review, commit_ai_split, commit_ai_status,
|
commit_ai_review, commit_ai_split, compare_commits, compare_file_to_head,
|
||||||
compare_commits, compare_file_to_head, compare_file_to_parent, create_branch, create_tag,
|
compare_file_to_parent, create_branch, create_tag, cred_delete, cred_load, cred_save,
|
||||||
cred_delete, cred_load, cred_save, delete_branch, delete_commit_note, delete_remote_branch,
|
delete_branch, delete_commit_note, delete_remote_branch, delete_remote_branches, delete_tag,
|
||||||
delete_remote_branches, delete_tag, diff_file_against_working_tree, fetch, fetch_commit_notes,
|
diff_file_against_working_tree, fetch, fetch_commit_notes, get_commit_note, get_file_blame,
|
||||||
get_commit_note, get_file_blame, get_file_patch, get_remote_url, get_status, git_lfs_install,
|
get_file_patch, get_remote_url, get_status, git_lfs_install, git_lfs_prune, git_lfs_pull,
|
||||||
git_lfs_prune, git_lfs_pull, git_lfs_status, git_lfs_track, git_lfs_untrack, init_repository,
|
git_lfs_status, git_lfs_track, git_lfs_untrack, init_repository, last_commit_message,
|
||||||
last_commit_message, list_branches, list_commits, list_file_history,
|
list_branches, list_commits, list_file_history, list_interactive_rebase_commits, list_reflog,
|
||||||
list_interactive_rebase_commits, list_reflog, list_remotes, list_repository_files,
|
list_remotes, list_repository_files, list_stashes, list_tags, list_worktrees, lock_worktree,
|
||||||
list_stashes, list_tags, list_worktrees, lock_worktree, merge_abort, merge_branch,
|
merge_abort, merge_branch, merge_continue, move_worktree, open_repo_in_explorer,
|
||||||
merge_continue, move_worktree, open_repo_in_explorer, open_repository, open_repository_bundle,
|
open_repository, open_repository_bundle, open_repository_file, prune_worktrees, pull, push,
|
||||||
open_repository_file, prune_worktrees, pull, push, push_commit_notes, push_tag, read_conflict,
|
push_commit_notes, push_tag, read_conflict, rebase_abort, rebase_branch, rebase_continue,
|
||||||
rebase_abort, rebase_branch, rebase_continue, remove_remote, remove_worktree, rename_branch,
|
remove_remote, remove_worktree, rename_branch, rename_remote_branch, repair_worktree,
|
||||||
rename_remote_branch, repair_worktree, resolve_conflict, resolve_conflict_side,
|
resolve_conflict, resolve_conflict_side, restore_file_from_commit, restore_files,
|
||||||
restore_file_from_commit, restore_files, restore_reflog_entry, restore_to_commit,
|
restore_reflog_entry, restore_to_commit, revert_commit, run_sequence_editor_if_requested,
|
||||||
revert_commit, run_sequence_editor_if_requested, search_code_introductions,
|
search_code_introductions, set_branch_upstream, set_commit_note, stage_files,
|
||||||
set_branch_upstream, set_commit_note, stage_files, start_interactive_rebase, stash_apply,
|
start_interactive_rebase, stash_apply, stash_drop, stash_pop, stash_push, undo_last_commit,
|
||||||
stash_drop, stash_pop, stash_push, undo_last_commit, unlock_worktree, unstage_files,
|
unlock_worktree, unstage_files, untrack_paths, update_remote,
|
||||||
untrack_paths, update_remote,
|
|
||||||
};
|
};
|
||||||
use integrations::list_integration_repositories;
|
use integrations::list_integration_repositories;
|
||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
@@ -317,7 +316,6 @@ async fn main() {
|
|||||||
.manage(StartupRepository(Mutex::new(startup_repository)))
|
.manage(StartupRepository(Mutex::new(startup_repository)))
|
||||||
.manage(StartupClone(Mutex::new(startup_clone)))
|
.manage(StartupClone(Mutex::new(startup_clone)))
|
||||||
.manage(SearchCancellationState::default())
|
.manage(SearchCancellationState::default())
|
||||||
.manage(commit_ai::CommitAiEngine::new())
|
|
||||||
.plugin(tauri_plugin_dialog::init());
|
.plugin(tauri_plugin_dialog::init());
|
||||||
|
|
||||||
// Linux installs are expected to come from the system package manager (see the
|
// Linux installs are expected to come from the system package manager (see the
|
||||||
@@ -388,9 +386,6 @@ async fn main() {
|
|||||||
amend_commit,
|
amend_commit,
|
||||||
undo_last_commit,
|
undo_last_commit,
|
||||||
last_commit_message,
|
last_commit_message,
|
||||||
commit_ai_status,
|
|
||||||
commit_ai_load,
|
|
||||||
commit_ai_local_models,
|
|
||||||
commit_ai_generate,
|
commit_ai_generate,
|
||||||
commit_ai_review,
|
commit_ai_review,
|
||||||
commit_ai_split,
|
commit_ai_split,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "Gitty",
|
"productName": "Gitty",
|
||||||
"version": "2026.8.8",
|
"version": "2026.8.9",
|
||||||
"identifier": "com.gitty",
|
"identifier": "com.gitty",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "npm run prepare:lfs && npm run dev",
|
"beforeDevCommand": "npm run prepare:lfs && npm run dev",
|
||||||
|
|||||||
+66
-93
@@ -49,9 +49,6 @@
|
|||||||
commitAiGenerate,
|
commitAiGenerate,
|
||||||
commitAiReview,
|
commitAiReview,
|
||||||
commitAiSplit,
|
commitAiSplit,
|
||||||
commitAiLoad,
|
|
||||||
commitAiLocalModels,
|
|
||||||
commitAiStatus,
|
|
||||||
compareCommits,
|
compareCommits,
|
||||||
cancelCodeSearch,
|
cancelCodeSearch,
|
||||||
cancelFileHistory,
|
cancelFileHistory,
|
||||||
@@ -151,7 +148,6 @@
|
|||||||
AppLanguage,
|
AppLanguage,
|
||||||
AppTheme,
|
AppTheme,
|
||||||
AnalyticsSettings,
|
AnalyticsSettings,
|
||||||
CommitAiPhase,
|
|
||||||
CustomThemeColors,
|
CustomThemeColors,
|
||||||
ConflictFile,
|
ConflictFile,
|
||||||
DetectedExternalTool,
|
DetectedExternalTool,
|
||||||
@@ -179,7 +175,6 @@
|
|||||||
GitStatus,
|
GitStatus,
|
||||||
GitTag,
|
GitTag,
|
||||||
GitWorktree,
|
GitWorktree,
|
||||||
LocalModelOption,
|
|
||||||
PatchApplyAction,
|
PatchApplyAction,
|
||||||
PreparedResolution,
|
PreparedResolution,
|
||||||
RebaseCommit,
|
RebaseCommit,
|
||||||
@@ -360,8 +355,6 @@
|
|||||||
let commitMessage = "";
|
let commitMessage = "";
|
||||||
let amendMode = false;
|
let amendMode = false;
|
||||||
let preAmendDraftMessage = "";
|
let preAmendDraftMessage = "";
|
||||||
let lastLocalAiGeneratedMessage = "";
|
|
||||||
let commitAiPhase: CommitAiPhase = "idle";
|
|
||||||
let commitAiGenerating = false;
|
let commitAiGenerating = false;
|
||||||
let commitAiReviewing = false;
|
let commitAiReviewing = false;
|
||||||
let commitAiSplitting = false;
|
let commitAiSplitting = false;
|
||||||
@@ -369,7 +362,6 @@
|
|||||||
let aiCommitSplitOpen = false;
|
let aiCommitSplitOpen = false;
|
||||||
let aiReviewResult: AiReviewResult | null = null;
|
let aiReviewResult: AiReviewResult | null = null;
|
||||||
let aiReviewOpen = false;
|
let aiReviewOpen = false;
|
||||||
let commitAiPollTimer: ReturnType<typeof setInterval> | undefined;
|
|
||||||
let aiSettings: AiSettings = defaultAiSettings();
|
let aiSettings: AiSettings = defaultAiSettings();
|
||||||
let aiSettingsOpen = false;
|
let aiSettingsOpen = false;
|
||||||
let appSettingsOpen = false;
|
let appSettingsOpen = false;
|
||||||
@@ -387,7 +379,6 @@
|
|||||||
let detectedExternalTools: DetectedExternalTool[] = [];
|
let detectedExternalTools: DetectedExternalTool[] = [];
|
||||||
let externalToolsDetectionPending = true;
|
let externalToolsDetectionPending = true;
|
||||||
let externalToolsDetectionUnavailable = false;
|
let externalToolsDetectionUnavailable = false;
|
||||||
let localModelOptions: LocalModelOption[] = [];
|
|
||||||
let errorMessage = "";
|
let errorMessage = "";
|
||||||
let operation = "";
|
let operation = "";
|
||||||
let compareFrom = "";
|
let compareFrom = "";
|
||||||
@@ -628,7 +619,6 @@
|
|||||||
if (autoRefreshTimer) { clearInterval(autoRefreshTimer); autoRefreshTimer = undefined; }
|
if (autoRefreshTimer) { clearInterval(autoRefreshTimer); autoRefreshTimer = undefined; }
|
||||||
if (backgroundRepoStatusTimer) { clearInterval(backgroundRepoStatusTimer); backgroundRepoStatusTimer = undefined; }
|
if (backgroundRepoStatusTimer) { clearInterval(backgroundRepoStatusTimer); backgroundRepoStatusTimer = undefined; }
|
||||||
if (backgroundFetchTimer) { clearInterval(backgroundFetchTimer); backgroundFetchTimer = undefined; }
|
if (backgroundFetchTimer) { clearInterval(backgroundFetchTimer); backgroundFetchTimer = undefined; }
|
||||||
if (commitAiPollTimer) { clearInterval(commitAiPollTimer); commitAiPollTimer = undefined; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function wait(ms: number): Promise<void> {
|
function wait(ms: number): Promise<void> {
|
||||||
@@ -681,7 +671,7 @@
|
|||||||
loadRepoLists();
|
loadRepoLists();
|
||||||
|
|
||||||
void checkForUpdates();
|
void checkForUpdates();
|
||||||
void initCommitAi();
|
aiSettings = loadAiSettings();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await waitForStartupPaint();
|
await waitForStartupPaint();
|
||||||
@@ -1029,48 +1019,10 @@
|
|||||||
|
|
||||||
// ── Commit AI ──────────────────────────────────────────────────────────────
|
// ── Commit AI ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
function stopCommitAiPolling() {
|
|
||||||
if (commitAiPollTimer) { clearInterval(commitAiPollTimer); commitAiPollTimer = undefined; }
|
|
||||||
}
|
|
||||||
|
|
||||||
async function pollCommitAiStatus() {
|
|
||||||
try {
|
|
||||||
const result = await commitAiStatus();
|
|
||||||
commitAiPhase = result.phase;
|
|
||||||
} catch { /* ignore transient errors */ }
|
|
||||||
if (commitAiPhase === "ready" || commitAiPhase === "error") stopCommitAiPolling();
|
|
||||||
}
|
|
||||||
|
|
||||||
function startCommitAiPolling() {
|
|
||||||
// Only the local model has a download/load phase worth polling — cloud providers are
|
|
||||||
// plain API calls with nothing to wait for.
|
|
||||||
stopCommitAiPolling();
|
|
||||||
if (aiSettings.provider !== "local") return;
|
|
||||||
void pollCommitAiStatus();
|
|
||||||
commitAiPollTimer = setInterval(() => { void pollCommitAiStatus(); }, 2000);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function initCommitAi() {
|
|
||||||
aiSettings = loadAiSettings();
|
|
||||||
try {
|
|
||||||
localModelOptions = await commitAiLocalModels();
|
|
||||||
} catch { /* AI features stay disabled if this fails; not fatal to the app */ }
|
|
||||||
if (aiSettings.provider === "local") {
|
|
||||||
try { await commitAiLoad(aiSettings.localModelId); } catch { /* surfaced via status polling */ }
|
|
||||||
}
|
|
||||||
startCommitAiPolling();
|
|
||||||
}
|
|
||||||
|
|
||||||
function saveAiSettings(next: AiSettings) {
|
function saveAiSettings(next: AiSettings) {
|
||||||
const modelChanged = next.provider === "local" && next.localModelId !== aiSettings.localModelId;
|
|
||||||
aiSettings = next;
|
aiSettings = next;
|
||||||
persistAiSettings(next);
|
persistAiSettings(next);
|
||||||
aiSettingsOpen = false;
|
aiSettingsOpen = false;
|
||||||
if (next.provider === "local" && (modelChanged || commitAiPhase === "idle")) {
|
|
||||||
commitAiPhase = "idle";
|
|
||||||
void commitAiLoad(next.localModelId);
|
|
||||||
}
|
|
||||||
startCommitAiPolling();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function defaultAnalyticsSettings(): AnalyticsSettings {
|
function defaultAnalyticsSettings(): AnalyticsSettings {
|
||||||
@@ -1324,27 +1276,15 @@
|
|||||||
|
|
||||||
function updateCommitMessage(message: string) {
|
function updateCommitMessage(message: string) {
|
||||||
commitMessage = message;
|
commitMessage = message;
|
||||||
if (message !== lastLocalAiGeneratedMessage) {
|
|
||||||
lastLocalAiGeneratedMessage = "";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function generateCommitMessageWithAi() {
|
async function generateCommitMessageWithAi() {
|
||||||
if (!activeRepoPath || commitAiGenerating) return;
|
if (!activeRepoPath || commitAiGenerating) return;
|
||||||
if (aiSettings.provider === "local" && commitAiPhase !== "ready") return;
|
|
||||||
commitAiGenerating = true;
|
commitAiGenerating = true;
|
||||||
errorMessage = "";
|
errorMessage = "";
|
||||||
try {
|
try {
|
||||||
const notes = commitMessage.trim() || undefined;
|
const notes = commitMessage.trim() || undefined;
|
||||||
if (aiSettings.provider === "local") {
|
if (aiSettings.provider === "openai") {
|
||||||
const localNotes = notes && notes !== lastLocalAiGeneratedMessage ? notes : undefined;
|
|
||||||
commitMessage = await commitAiGenerate(activeRepoPath, {
|
|
||||||
provider: "local",
|
|
||||||
notes: localNotes,
|
|
||||||
localProfile: aiSettings.localProfile,
|
|
||||||
});
|
|
||||||
lastLocalAiGeneratedMessage = commitMessage;
|
|
||||||
} else if (aiSettings.provider === "openai") {
|
|
||||||
const cred = await credLoad("ai:openai");
|
const cred = await credLoad("ai:openai");
|
||||||
commitMessage = await commitAiGenerate(activeRepoPath, {
|
commitMessage = await commitAiGenerate(activeRepoPath, {
|
||||||
provider: "openai",
|
provider: "openai",
|
||||||
@@ -1352,7 +1292,6 @@
|
|||||||
model: aiSettings.openaiModel,
|
model: aiSettings.openaiModel,
|
||||||
apiKey: cred?.password,
|
apiKey: cred?.password,
|
||||||
});
|
});
|
||||||
lastLocalAiGeneratedMessage = "";
|
|
||||||
} else if (aiSettings.provider === "anthropic") {
|
} else if (aiSettings.provider === "anthropic") {
|
||||||
const cred = await credLoad("ai:anthropic");
|
const cred = await credLoad("ai:anthropic");
|
||||||
commitMessage = await commitAiGenerate(activeRepoPath, {
|
commitMessage = await commitAiGenerate(activeRepoPath, {
|
||||||
@@ -1361,7 +1300,6 @@
|
|||||||
model: aiSettings.anthropicModel,
|
model: aiSettings.anthropicModel,
|
||||||
apiKey: cred?.password,
|
apiKey: cred?.password,
|
||||||
});
|
});
|
||||||
lastLocalAiGeneratedMessage = "";
|
|
||||||
} else {
|
} else {
|
||||||
const cred = await credLoad("ai:custom");
|
const cred = await credLoad("ai:custom");
|
||||||
commitMessage = await commitAiGenerate(activeRepoPath, {
|
commitMessage = await commitAiGenerate(activeRepoPath, {
|
||||||
@@ -1371,7 +1309,6 @@
|
|||||||
baseUrl: aiSettings.customBaseUrl,
|
baseUrl: aiSettings.customBaseUrl,
|
||||||
apiKey: cred?.password,
|
apiKey: cred?.password,
|
||||||
});
|
});
|
||||||
lastLocalAiGeneratedMessage = "";
|
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
errorMessage = errorToMessage(error);
|
errorMessage = errorToMessage(error);
|
||||||
@@ -1382,10 +1319,6 @@
|
|||||||
|
|
||||||
async function reviewStagedWithAi() {
|
async function reviewStagedWithAi() {
|
||||||
if (!activeRepoPath || commitAiReviewing || stagedCount === 0) return;
|
if (!activeRepoPath || commitAiReviewing || stagedCount === 0) return;
|
||||||
if (aiSettings.provider === "local") {
|
|
||||||
errorMessage = "Pre-commit review currently requires OpenAI, Anthropic, or a custom endpoint.";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
commitAiReviewing = true;
|
commitAiReviewing = true;
|
||||||
errorMessage = "";
|
errorMessage = "";
|
||||||
try {
|
try {
|
||||||
@@ -1427,10 +1360,6 @@
|
|||||||
|
|
||||||
async function splitStagedWithAi() {
|
async function splitStagedWithAi() {
|
||||||
if (!activeRepoPath || commitAiSplitting || stagedCount < 2) return;
|
if (!activeRepoPath || commitAiSplitting || stagedCount < 2) return;
|
||||||
if (aiSettings.provider === "local") {
|
|
||||||
errorMessage = "Commit splitting currently requires OpenAI, Anthropic, or a custom endpoint.";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
commitAiSplitting = true;
|
commitAiSplitting = true;
|
||||||
errorMessage = "";
|
errorMessage = "";
|
||||||
try {
|
try {
|
||||||
@@ -1735,8 +1664,6 @@
|
|||||||
function defaultAiSettings(): AiSettings {
|
function defaultAiSettings(): AiSettings {
|
||||||
return {
|
return {
|
||||||
provider: "openai",
|
provider: "openai",
|
||||||
localModelId: "qwen2.5-0.5b",
|
|
||||||
localProfile: "fast",
|
|
||||||
openaiModel: "gpt-4o-mini",
|
openaiModel: "gpt-4o-mini",
|
||||||
anthropicModel: "claude-3-5-haiku-latest",
|
anthropicModel: "claude-3-5-haiku-latest",
|
||||||
customBaseUrl: "",
|
customBaseUrl: "",
|
||||||
@@ -1748,11 +1675,17 @@
|
|||||||
try {
|
try {
|
||||||
const stored = JSON.parse(localStorage.getItem(AI_SETTINGS_KEY) ?? "null") as unknown;
|
const stored = JSON.parse(localStorage.getItem(AI_SETTINGS_KEY) ?? "null") as unknown;
|
||||||
if (stored && typeof stored === "object") {
|
if (stored && typeof stored === "object") {
|
||||||
const merged = { ...defaultAiSettings(), ...(stored as Partial<AiSettings>) };
|
const candidate = stored as Partial<AiSettings> & { provider?: unknown };
|
||||||
// Local AI is still in development and disabled in the settings UI — migrate any
|
const provider = candidate.provider === "anthropic" || candidate.provider === "custom"
|
||||||
// previously saved selection away from it so nobody gets stuck on a dead option.
|
? candidate.provider
|
||||||
if (merged.provider === "local") merged.provider = "openai";
|
: "openai";
|
||||||
return merged;
|
return {
|
||||||
|
provider,
|
||||||
|
openaiModel: typeof candidate.openaiModel === "string" ? candidate.openaiModel : "gpt-4o-mini",
|
||||||
|
anthropicModel: typeof candidate.anthropicModel === "string" ? candidate.anthropicModel : "claude-3-5-haiku-latest",
|
||||||
|
customBaseUrl: typeof candidate.customBaseUrl === "string" ? candidate.customBaseUrl : "",
|
||||||
|
customModel: typeof candidate.customModel === "string" ? candidate.customModel : "",
|
||||||
|
};
|
||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
// Fall through to defaults below.
|
// Fall through to defaults below.
|
||||||
@@ -2228,6 +2161,10 @@
|
|||||||
|| value.includes("fetch first");
|
|| value.includes("fetch first");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isUnrelatedHistoriesError(message: string): boolean {
|
||||||
|
return message.toLowerCase().includes("refusing to merge unrelated histories");
|
||||||
|
}
|
||||||
|
|
||||||
function statusHasConflicts(value: GitStatus | null): boolean {
|
function statusHasConflicts(value: GitStatus | null): boolean {
|
||||||
return (value?.files ?? []).some((file) => file.staged === "conflicted" || file.unstaged === "conflicted");
|
return (value?.files ?? []).some((file) => file.staged === "conflicted" || file.unstaged === "conflicted");
|
||||||
}
|
}
|
||||||
@@ -3717,17 +3654,61 @@
|
|||||||
mode: CredentialMode,
|
mode: CredentialMode,
|
||||||
) {
|
) {
|
||||||
errorMessage = "";
|
errorMessage = "";
|
||||||
await runOperation("Pulling", async () => {
|
const pulled = await pullWithUnrelatedHistoryConfirmation(username, password, "Pulling");
|
||||||
applyStatus(await pull(activeRepoPath, username, password, pullStrategy, selectedRemote || undefined));
|
if (pulled) {
|
||||||
await refreshRepositoryViews(activeRepoPath);
|
|
||||||
trackEvent("repository_pulled", {
|
trackEvent("repository_pulled", {
|
||||||
from_stored_credential: fromStore ? 1 : 0,
|
from_stored_credential: fromStore ? 1 : 0,
|
||||||
changed_files: status?.files.length ?? 0,
|
changed_files: status?.files.length ?? 0,
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
handleRemoteResult("pull", key, fromStore, username, mode);
|
handleRemoteResult("pull", key, fromStore, username, mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function pullWithUnrelatedHistoryConfirmation(
|
||||||
|
username: string,
|
||||||
|
password: string,
|
||||||
|
label: string,
|
||||||
|
): Promise<boolean> {
|
||||||
|
await runOperation(label, async () => {
|
||||||
|
applyStatus(await pull(activeRepoPath, username, password, pullStrategy, selectedRemote || undefined));
|
||||||
|
await refreshRepositoryViews(activeRepoPath);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!errorMessage || !isUnrelatedHistoriesError(errorMessage)) return !errorMessage;
|
||||||
|
|
||||||
|
if (pullStrategy !== "merge") {
|
||||||
|
errorMessage = appLanguage === "de"
|
||||||
|
? "Lokales und entferntes Repository haben unabhängige Historien. Wähle in den Sync-Einstellungen die Merge-Strategie, um sie zusammenzuführen."
|
||||||
|
: "The local and remote repositories have unrelated histories. Choose the Merge strategy in Sync settings to combine them.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
errorMessage = "";
|
||||||
|
const confirmed = window.confirm(appLanguage === "de"
|
||||||
|
? "Das lokale und das entfernte Repository besitzen getrennte Commit-Historien.\n\nTrotzdem zusammenführen? Dabei können Merge-Konflikte entstehen."
|
||||||
|
: "The local and remote repositories have separate commit histories.\n\nMerge them anyway? This may produce merge conflicts.");
|
||||||
|
if (!confirmed) {
|
||||||
|
errorMessage = appLanguage === "de"
|
||||||
|
? "Pull abgebrochen: Die getrennten Historien wurden nicht verändert."
|
||||||
|
: "Pull cancelled: the separate histories were left unchanged.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
await runOperation(appLanguage === "de" ? "Historien zusammenführen" : "Merging histories", async () => {
|
||||||
|
applyStatus(await pull(
|
||||||
|
activeRepoPath,
|
||||||
|
username,
|
||||||
|
password,
|
||||||
|
pullStrategy,
|
||||||
|
selectedRemote || undefined,
|
||||||
|
undefined,
|
||||||
|
true,
|
||||||
|
));
|
||||||
|
await refreshRepositoryViews(activeRepoPath);
|
||||||
|
});
|
||||||
|
return !errorMessage;
|
||||||
|
}
|
||||||
|
|
||||||
async function doActualFetch(
|
async function doActualFetch(
|
||||||
username: string,
|
username: string,
|
||||||
password: string,
|
password: string,
|
||||||
@@ -3782,10 +3763,7 @@
|
|||||||
|
|
||||||
if (!fromStore) credDialogError = "";
|
if (!fromStore) credDialogError = "";
|
||||||
|
|
||||||
await runOperation("Pulling before push", async () => {
|
await pullWithUnrelatedHistoryConfirmation(username, password, "Pulling before push");
|
||||||
applyStatus(await pull(activeRepoPath, username, password, pullStrategy, selectedRemote || undefined));
|
|
||||||
await refreshRepositoryViews(activeRepoPath);
|
|
||||||
});
|
|
||||||
|
|
||||||
if (errorMessage) {
|
if (errorMessage) {
|
||||||
handleRemoteResult("pull", key, fromStore, username, mode);
|
handleRemoteResult("pull", key, fromStore, username, mode);
|
||||||
@@ -4385,7 +4363,6 @@
|
|||||||
commitMessage = "";
|
commitMessage = "";
|
||||||
amendMode = false;
|
amendMode = false;
|
||||||
preAmendDraftMessage = "";
|
preAmendDraftMessage = "";
|
||||||
lastLocalAiGeneratedMessage = "";
|
|
||||||
await refreshRepositoryViews(activeRepoPath);
|
await refreshRepositoryViews(activeRepoPath);
|
||||||
trackEvent("commit_created", { amend: 1 });
|
trackEvent("commit_created", { amend: 1 });
|
||||||
});
|
});
|
||||||
@@ -4396,7 +4373,6 @@
|
|||||||
await runOperation("Committing", async () => {
|
await runOperation("Committing", async () => {
|
||||||
applyStatus(await commit(activeRepoPath, message));
|
applyStatus(await commit(activeRepoPath, message));
|
||||||
commitMessage = "";
|
commitMessage = "";
|
||||||
lastLocalAiGeneratedMessage = "";
|
|
||||||
await refreshRepositoryViews(activeRepoPath);
|
await refreshRepositoryViews(activeRepoPath);
|
||||||
trackEvent("commit_created", { amend: 0, staged_files: trackedStagedCount });
|
trackEvent("commit_created", { amend: 0, staged_files: trackedStagedCount });
|
||||||
});
|
});
|
||||||
@@ -5617,8 +5593,6 @@
|
|||||||
{isBusy}
|
{isBusy}
|
||||||
{operation}
|
{operation}
|
||||||
{stagedCount}
|
{stagedCount}
|
||||||
commitAiProvider={aiSettings.provider}
|
|
||||||
{commitAiPhase}
|
|
||||||
{commitAiGenerating}
|
{commitAiGenerating}
|
||||||
{commitAiReviewing}
|
{commitAiReviewing}
|
||||||
{commitAiSplitting}
|
{commitAiSplitting}
|
||||||
@@ -5983,7 +5957,6 @@
|
|||||||
{#await import("./lib/components/AiSettingsDialog.svelte") then module}
|
{#await import("./lib/components/AiSettingsDialog.svelte") then module}
|
||||||
<module.default
|
<module.default
|
||||||
settings={aiSettings}
|
settings={aiSettings}
|
||||||
localModels={localModelOptions}
|
|
||||||
onSave={saveAiSettings}
|
onSave={saveAiSettings}
|
||||||
onClose={() => { aiSettingsOpen = false; }}
|
onClose={() => { aiSettingsOpen = false; }}
|
||||||
/>
|
/>
|
||||||
|
|||||||
+129
-127
@@ -1486,73 +1486,61 @@
|
|||||||
right: 18px;
|
right: 18px;
|
||||||
bottom: 18px;
|
bottom: 18px;
|
||||||
z-index: 70;
|
z-index: 70;
|
||||||
display: grid;
|
width: min(410px, calc(100vw - 28px));
|
||||||
grid-template-columns: auto minmax(0, 1fr);
|
|
||||||
gap: 12px;
|
|
||||||
width: min(430px, calc(100vw - 32px));
|
|
||||||
padding: 14px;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: 1px solid rgba(100, 108, 255, 0.42);
|
border: 1px solid var(--color-border);
|
||||||
border-radius: 14px;
|
border-top: 2px solid var(--color-accent);
|
||||||
color: var(--color-ink);
|
color: var(--color-ink);
|
||||||
background:
|
background: var(--app-dialog-bg);
|
||||||
linear-gradient(135deg, rgba(100,108,255,0.22), rgba(189,52,254,0.12) 42%, rgba(65,209,255,0.08)),
|
box-shadow: 0 18px 48px rgba(0,0,0,0.42);
|
||||||
rgba(12, 13, 24, 0.96);
|
animation: update-toast-in 180ms cubic-bezier(.2,.8,.2,1) both;
|
||||||
box-shadow: 0 24px 72px rgba(0,0,0,0.48), 0 0 0 1px rgba(255,255,255,0.04) inset;
|
|
||||||
backdrop-filter: blur(18px);
|
|
||||||
}
|
}
|
||||||
.update-toast.error {
|
.update-toast.error {
|
||||||
border-color: rgba(232,96,96,0.45);
|
border-top-color: var(--code-delete-strong);
|
||||||
background:
|
|
||||||
linear-gradient(135deg, rgba(232,96,96,0.16), rgba(100,108,255,0.11)),
|
|
||||||
rgba(12, 13, 24, 0.96);
|
|
||||||
}
|
}
|
||||||
.update-toast.installed {
|
.update-toast.installed {
|
||||||
border-color: rgba(78,202,118,0.38);
|
border-top-color: var(--code-add-strong);
|
||||||
background:
|
|
||||||
linear-gradient(135deg, rgba(78,202,118,0.15), rgba(65,209,255,0.1), rgba(100,108,255,0.12)),
|
|
||||||
rgba(12, 13, 24, 0.96);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-toast-glow {
|
.update-toast-header {
|
||||||
position: absolute;
|
display: grid;
|
||||||
inset: auto 18px -46px auto;
|
grid-template-columns: 34px minmax(0, 1fr) auto;
|
||||||
width: 170px;
|
align-items: center;
|
||||||
height: 95px;
|
gap: 10px;
|
||||||
border-radius: 999px;
|
min-height: 58px;
|
||||||
background: rgba(65,209,255,0.18);
|
padding: 10px 11px;
|
||||||
filter: blur(34px);
|
border-bottom: 1px solid var(--color-border-subtle);
|
||||||
pointer-events: none;
|
background: var(--app-dialog-chrome);
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-toast-icon {
|
.update-toast-icon {
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
width: 42px;
|
width: 34px;
|
||||||
height: 42px;
|
height: 34px;
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
border: 1px solid rgba(255,255,255,0.14);
|
border: 1px solid color-mix(in srgb, var(--color-accent) 32%, var(--color-border));
|
||||||
border-radius: 12px;
|
color: var(--color-accent);
|
||||||
color: #ffffff;
|
background: color-mix(in srgb, var(--color-accent) 9%, var(--color-surface-raised));
|
||||||
background: linear-gradient(135deg, rgba(65,209,255,0.28), rgba(100,108,255,0.54), rgba(189,52,254,0.42));
|
|
||||||
box-shadow: 0 14px 32px rgba(100,108,255,0.22), inset 0 1px 0 rgba(255,255,255,0.16);
|
|
||||||
}
|
}
|
||||||
.update-toast-icon.busy { color: #bfefff; }
|
.update-toast.error .update-toast-icon {
|
||||||
|
border-color: color-mix(in srgb, var(--code-delete-strong) 34%, var(--color-border));
|
||||||
.update-toast-content {
|
color: var(--code-delete-strong);
|
||||||
position: relative;
|
background: var(--code-delete-bg);
|
||||||
z-index: 1;
|
|
||||||
display: grid;
|
|
||||||
gap: 9px;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
}
|
||||||
|
.update-toast.installed .update-toast-icon {
|
||||||
|
border-color: color-mix(in srgb, var(--code-add-strong) 34%, var(--color-border));
|
||||||
|
color: var(--code-add-strong);
|
||||||
|
background: var(--code-add-bg);
|
||||||
|
}
|
||||||
|
.update-toast-icon.busy { color: var(--color-accent); }
|
||||||
|
|
||||||
.update-toast-top {
|
.update-toast-body {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: minmax(0, 1fr) auto;
|
gap: 10px;
|
||||||
align-items: start;
|
|
||||||
gap: 8px;
|
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
padding: 12px;
|
||||||
|
background: var(--app-dialog-bg);
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-toast-copy { min-width: 0; }
|
.update-toast-copy { min-width: 0; }
|
||||||
@@ -1561,55 +1549,54 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
color: var(--color-accent);
|
color: var(--color-accent);
|
||||||
font-family: var(--font-mono);
|
font-family: var(--font-mono);
|
||||||
font-size: 11px;
|
font-size: 10px;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
|
letter-spacing: .035em;
|
||||||
|
text-transform: uppercase;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
.update-toast h2 {
|
.update-toast h2 {
|
||||||
margin: 2px 0 0;
|
margin: 3px 0 0;
|
||||||
color: #ffffff;
|
color: var(--color-ink);
|
||||||
font-size: 15px;
|
font-size: 14px;
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
}
|
}
|
||||||
.update-toast p {
|
.update-toast p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: var(--color-ink-muted);
|
color: var(--color-ink-muted);
|
||||||
font-size: 12.5px;
|
font-size: 12px;
|
||||||
line-height: 1.45;
|
line-height: 1.45;
|
||||||
overflow-wrap: anywhere;
|
overflow-wrap: anywhere;
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-toast-close {
|
.update-toast-close {
|
||||||
width: 28px;
|
width: 26px;
|
||||||
min-width: 28px;
|
min-width: 26px;
|
||||||
min-height: 28px;
|
min-height: 26px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border-color: rgba(255,255,255,0.1);
|
border-color: var(--color-border-subtle);
|
||||||
border-radius: 8px;
|
|
||||||
color: var(--color-ink-dim);
|
color: var(--color-ink-dim);
|
||||||
background: rgba(255,255,255,0.04);
|
background: transparent;
|
||||||
}
|
}
|
||||||
.update-toast-close:hover:not(:disabled) {
|
.update-toast-close:hover:not(:disabled) {
|
||||||
border-color: rgba(255,255,255,0.2);
|
border-color: var(--color-border);
|
||||||
color: #ffffff;
|
color: var(--color-ink);
|
||||||
background: rgba(255,255,255,0.1);
|
background: var(--color-surface-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
.update-progress {
|
.update-progress {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 6px;
|
height: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-radius: 999px;
|
background: var(--color-surface-hover);
|
||||||
background: rgba(255,255,255,0.09);
|
|
||||||
}
|
}
|
||||||
.update-progress span {
|
.update-progress span {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inset: 0 auto 0 0;
|
inset: 0 auto 0 0;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
border-radius: inherit;
|
background: var(--color-accent);
|
||||||
background: linear-gradient(90deg, #4db6d6, #6f8cff, #238eb4);
|
|
||||||
transition: width 160ms ease;
|
transition: width 160ms ease;
|
||||||
}
|
}
|
||||||
.update-progress.indeterminate span {
|
.update-progress.indeterminate span {
|
||||||
@@ -1627,29 +1614,48 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 8px;
|
gap: 7px;
|
||||||
|
min-height: 49px;
|
||||||
|
padding: 8px 11px;
|
||||||
|
border-top: 1px solid var(--color-border-subtle);
|
||||||
|
background: var(--app-dialog-chrome);
|
||||||
}
|
}
|
||||||
.update-toast-primary,
|
.update-toast-primary,
|
||||||
.update-toast-secondary {
|
.update-toast-secondary {
|
||||||
min-height: 32px;
|
min-height: 31px;
|
||||||
border-radius: 8px;
|
font-size: 11.5px;
|
||||||
font-size: 12.5px;
|
|
||||||
font-weight: 800;
|
font-weight: 800;
|
||||||
}
|
}
|
||||||
.update-toast-primary {
|
.update-toast-primary {
|
||||||
border-color: rgba(111,140,255,0.72);
|
border-color: var(--color-primary);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background: linear-gradient(135deg, #5f7df2, #238eb4);
|
background: var(--color-primary);
|
||||||
}
|
}
|
||||||
.update-toast-primary:hover:not(:disabled) {
|
.update-toast-primary:hover:not(:disabled) {
|
||||||
border-color: rgba(77,182,214,0.74);
|
border-color: var(--color-primary-dark);
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background: linear-gradient(135deg, #6f8cff, #2da0c7);
|
background: var(--color-primary-dark);
|
||||||
}
|
}
|
||||||
.update-toast-secondary {
|
.update-toast-secondary {
|
||||||
border-color: rgba(255,255,255,0.1);
|
border-color: var(--color-border);
|
||||||
color: var(--color-ink-muted);
|
color: var(--color-ink-muted);
|
||||||
background: rgba(255,255,255,0.05);
|
background: var(--app-button-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes update-toast-in {
|
||||||
|
from { opacity: 0; transform: translateY(8px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.update-toast {
|
||||||
|
right: 8px;
|
||||||
|
bottom: 8px;
|
||||||
|
width: calc(100vw - 16px);
|
||||||
|
}
|
||||||
|
.update-toast-actions > button {
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* --- Workspace layout --- */
|
/* --- Workspace layout --- */
|
||||||
@@ -4160,44 +4166,6 @@
|
|||||||
color: #f5f7ff;
|
color: #f5f7ff;
|
||||||
background: linear-gradient(180deg, rgba(100,108,255,0.22), rgba(65,209,255,0.1));
|
background: linear-gradient(180deg, rgba(100,108,255,0.22), rgba(65,209,255,0.1));
|
||||||
}
|
}
|
||||||
.ai-provider-option-local {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
row-gap: 2px;
|
|
||||||
}
|
|
||||||
.ai-provider-badge {
|
|
||||||
flex-basis: 100%;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 9.5px;
|
|
||||||
font-weight: 700;
|
|
||||||
letter-spacing: 0.04em;
|
|
||||||
text-transform: uppercase;
|
|
||||||
color: var(--color-ink-faint);
|
|
||||||
}
|
|
||||||
.ai-local-profile-options {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
||||||
gap: 8px;
|
|
||||||
}
|
|
||||||
.ai-local-profile-option {
|
|
||||||
min-width: 0;
|
|
||||||
min-height: 34px;
|
|
||||||
padding: 0 8px;
|
|
||||||
border-color: var(--color-border-subtle);
|
|
||||||
background: rgba(255,255,255,0.03);
|
|
||||||
color: var(--color-ink-dim);
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
.ai-local-profile-option:hover:not(:disabled) {
|
|
||||||
border-color: var(--color-border);
|
|
||||||
color: var(--color-ink);
|
|
||||||
background: var(--color-surface-hover);
|
|
||||||
}
|
|
||||||
.ai-local-profile-option.active {
|
|
||||||
border-color: rgba(65,209,255,0.48);
|
|
||||||
color: #f5f7ff;
|
|
||||||
background: linear-gradient(180deg, rgba(65,209,255,0.16), rgba(100,108,255,0.12));
|
|
||||||
}
|
|
||||||
.new-branch-form {
|
.new-branch-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@@ -8875,7 +8843,7 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s
|
|||||||
.repo-tab {
|
.repo-tab {
|
||||||
min-height: 35px;
|
min-height: 35px;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
padding: 0 31px 0 15px;
|
padding: 0 34px 0 15px;
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
font-size: 12.5px;
|
font-size: 12.5px;
|
||||||
font-weight: 650;
|
font-weight: 650;
|
||||||
@@ -8901,19 +8869,21 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s
|
|||||||
|
|
||||||
.repo-tab-close {
|
.repo-tab-close {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 8px;
|
top: 6px;
|
||||||
right: 6px;
|
right: 5px;
|
||||||
width: 19px;
|
width: 23px;
|
||||||
min-width: 19px;
|
min-width: 23px;
|
||||||
max-width: 19px;
|
max-width: 23px;
|
||||||
height: 19px;
|
height: 23px;
|
||||||
min-height: 19px;
|
min-height: 23px;
|
||||||
max-height: 19px;
|
max-height: 23px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-radius: 2px;
|
border-radius: 3px;
|
||||||
color: var(--color-ink-faint);
|
color: var(--color-ink-faint);
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
box-shadow: none;
|
||||||
opacity: 0.62;
|
opacity: 0.62;
|
||||||
|
transition: opacity 120ms ease, color 120ms ease, background 120ms ease, box-shadow 120ms ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.repo-tab-wrap.active .repo-tab-close { opacity: 0.72; }
|
.repo-tab-wrap.active .repo-tab-close { opacity: 0.72; }
|
||||||
@@ -8921,8 +8891,16 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s
|
|||||||
.repo-tab-wrap:focus-within .repo-tab-close { opacity: 1; }
|
.repo-tab-wrap:focus-within .repo-tab-close { opacity: 1; }
|
||||||
.repo-tab-close:hover:not(:disabled),
|
.repo-tab-close:hover:not(:disabled),
|
||||||
.repo-tab-close:focus-visible:not(:disabled) {
|
.repo-tab-close:focus-visible:not(:disabled) {
|
||||||
color: #e1848b;
|
color: #ffffff;
|
||||||
background: transparent;
|
background: #d93641;
|
||||||
|
box-shadow: inset 0 0 0 1px #f0646d;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root[data-theme="light"] .repo-tab-close:hover:not(:disabled),
|
||||||
|
:root[data-theme="light"] .repo-tab-close:focus-visible:not(:disabled) {
|
||||||
|
color: #ffffff;
|
||||||
|
background: #c92f3a;
|
||||||
|
box-shadow: inset 0 0 0 1px #a9212b;
|
||||||
}
|
}
|
||||||
|
|
||||||
.repo-tab-add {
|
.repo-tab-add {
|
||||||
@@ -8971,3 +8949,27 @@ input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px color-mix(in s
|
|||||||
:root:not([data-theme="light"]) .repo-tab.management.active > svg {
|
:root:not([data-theme="light"]) .repo-tab.management.active > svg {
|
||||||
color: #d7dae0;
|
color: #d7dae0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Keep every dialog close action neutral until it is intentionally targeted. */
|
||||||
|
:root .dialog-close:hover:not(:disabled),
|
||||||
|
:root .dialog-close:focus-visible:not(:disabled),
|
||||||
|
:root .dialog-icon-button:hover:not(:disabled),
|
||||||
|
:root .dialog-icon-button:focus-visible:not(:disabled),
|
||||||
|
:root .cred-close:hover:not(:disabled),
|
||||||
|
:root .cred-close:focus-visible:not(:disabled) {
|
||||||
|
color: #ffffff;
|
||||||
|
border-color: #f0646d;
|
||||||
|
background: #d93641;
|
||||||
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
:root[data-theme="light"] .dialog-close:hover:not(:disabled),
|
||||||
|
:root[data-theme="light"] .dialog-close:focus-visible:not(:disabled),
|
||||||
|
:root[data-theme="light"] .dialog-icon-button:hover:not(:disabled),
|
||||||
|
:root[data-theme="light"] .dialog-icon-button:focus-visible:not(:disabled),
|
||||||
|
:root[data-theme="light"] .cred-close:hover:not(:disabled),
|
||||||
|
:root[data-theme="light"] .cred-close:focus-visible:not(:disabled) {
|
||||||
|
color: #ffffff;
|
||||||
|
border-color: #a9212b;
|
||||||
|
background: #c92f3a;
|
||||||
|
}
|
||||||
|
|||||||
@@ -15,8 +15,7 @@
|
|||||||
function providerLabel(value: CommitAiProvider): string {
|
function providerLabel(value: CommitAiProvider): string {
|
||||||
if (value === "openai") return "OpenAI";
|
if (value === "openai") return "OpenAI";
|
||||||
if (value === "anthropic") return "Anthropic";
|
if (value === "anthropic") return "Anthropic";
|
||||||
if (value === "custom") return "Custom endpoint";
|
return "Custom endpoint";
|
||||||
return "Local AI";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function locationLabel(finding: AiReviewFinding): string {
|
function locationLabel(finding: AiReviewFinding): string {
|
||||||
|
|||||||
@@ -1,20 +1,18 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { onDestroy, onMount } from "svelte";
|
import { onDestroy, onMount } from "svelte";
|
||||||
import { AlertCircle, Bot, Check, Cpu, Eye, EyeOff, Gauge, Globe, Key, LoaderCircle, Sparkles, X, Zap } from "@lucide/svelte";
|
import { Bot, Check, Eye, EyeOff, Globe, Key, LoaderCircle, X } from "@lucide/svelte";
|
||||||
import { credDelete, credLoad, credSave } from "../git";
|
import { credDelete, credLoad, credSave } from "../git";
|
||||||
import type { AiSettings, CommitAiLocalProfile, CommitAiProvider, LocalModelOption } from "../types";
|
import type { AiSettings, CommitAiProvider } from "../types";
|
||||||
import SelectMenu from "./SelectMenu.svelte";
|
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
settings: AiSettings;
|
settings: AiSettings;
|
||||||
localModels: LocalModelOption[];
|
|
||||||
onSave: (settings: AiSettings) => void;
|
onSave: (settings: AiSettings) => void;
|
||||||
onClose: () => void;
|
onClose: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
let { settings, localModels = [], onSave, onClose }: Props = $props();
|
let { settings, onSave, onClose }: Props = $props();
|
||||||
|
|
||||||
type CloudProvider = Exclude<CommitAiProvider, "local">;
|
type CloudProvider = CommitAiProvider;
|
||||||
|
|
||||||
const CRED_KEYS: Record<CloudProvider, string> = {
|
const CRED_KEYS: Record<CloudProvider, string> = {
|
||||||
openai: "ai:openai",
|
openai: "ai:openai",
|
||||||
@@ -22,9 +20,7 @@
|
|||||||
custom: "ai:custom",
|
custom: "ai:custom",
|
||||||
};
|
};
|
||||||
|
|
||||||
let provider = $state<CommitAiProvider>("local");
|
let provider = $state<CommitAiProvider>("openai");
|
||||||
let localModelId = $state("");
|
|
||||||
let localProfile = $state<CommitAiLocalProfile>("fast");
|
|
||||||
let openaiModel = $state("");
|
let openaiModel = $state("");
|
||||||
let anthropicModel = $state("");
|
let anthropicModel = $state("");
|
||||||
let customBaseUrl = $state("");
|
let customBaseUrl = $state("");
|
||||||
@@ -41,8 +37,6 @@
|
|||||||
|
|
||||||
$effect(() => {
|
$effect(() => {
|
||||||
provider = settings.provider;
|
provider = settings.provider;
|
||||||
localModelId = settings.localModelId;
|
|
||||||
localProfile = settings.localProfile ?? "fast";
|
|
||||||
openaiModel = settings.openaiModel;
|
openaiModel = settings.openaiModel;
|
||||||
anthropicModel = settings.anthropicModel;
|
anthropicModel = settings.anthropicModel;
|
||||||
customBaseUrl = settings.customBaseUrl;
|
customBaseUrl = settings.customBaseUrl;
|
||||||
@@ -103,8 +97,6 @@
|
|||||||
]);
|
]);
|
||||||
onSave({
|
onSave({
|
||||||
provider,
|
provider,
|
||||||
localModelId,
|
|
||||||
localProfile,
|
|
||||||
openaiModel: openaiModel.trim() || "gpt-4o-mini",
|
openaiModel: openaiModel.trim() || "gpt-4o-mini",
|
||||||
anthropicModel: anthropicModel.trim() || "claude-3-5-haiku-latest",
|
anthropicModel: anthropicModel.trim() || "claude-3-5-haiku-latest",
|
||||||
customBaseUrl: customBaseUrl.trim(),
|
customBaseUrl: customBaseUrl.trim(),
|
||||||
@@ -117,26 +109,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatSize(mb: number): string {
|
|
||||||
return mb >= 1000 ? `${(mb / 1000).toFixed(1)} GB` : `${mb} MB`;
|
|
||||||
}
|
|
||||||
|
|
||||||
function recommendedModelForProfile(profile: CommitAiLocalProfile): string {
|
|
||||||
if (profile === "balanced") return "qwen2.5-1.5b";
|
|
||||||
if (profile === "detailed") return "qwen2.5-3b";
|
|
||||||
return "qwen2.5-0.5b";
|
|
||||||
}
|
|
||||||
|
|
||||||
function selectLocalProfile(profile: CommitAiLocalProfile) {
|
|
||||||
const previousRecommended = recommendedModelForProfile(localProfile);
|
|
||||||
localProfile = profile;
|
|
||||||
const nextRecommended = recommendedModelForProfile(profile);
|
|
||||||
if (!localModelId || localModelId === previousRecommended) {
|
|
||||||
localModelId = nextRecommended;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let selectedLocalModel = $derived(localModels.find((option) => option.id === localModelId));
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
@@ -156,17 +128,6 @@
|
|||||||
|
|
||||||
<form class="ai-settings-form" onsubmit={(e) => { e.preventDefault(); void handleSave(); }}>
|
<form class="ai-settings-form" onsubmit={(e) => { e.preventDefault(); void handleSave(); }}>
|
||||||
<div class="ai-provider-options" role="radiogroup" aria-label="AI provider">
|
<div class="ai-provider-options" role="radiogroup" aria-label="AI provider">
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="ai-provider-option ai-provider-option-local"
|
|
||||||
class:active={provider === "local"}
|
|
||||||
disabled
|
|
||||||
title="Local AI is still in development and not yet available"
|
|
||||||
>
|
|
||||||
<Cpu size={16} aria-hidden="true" />
|
|
||||||
Local AI
|
|
||||||
<span class="ai-provider-badge">In development</span>
|
|
||||||
</button>
|
|
||||||
<button type="button" class="ai-provider-option" class:active={provider === "openai"} onclick={() => { provider = "openai"; }}>
|
<button type="button" class="ai-provider-option" class:active={provider === "openai"} onclick={() => { provider = "openai"; }}>
|
||||||
<Bot size={16} aria-hidden="true" />
|
<Bot size={16} aria-hidden="true" />
|
||||||
OpenAI
|
OpenAI
|
||||||
@@ -181,38 +142,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if provider === "local"}
|
{#if provider === "openai"}
|
||||||
<div class="cred-field">
|
|
||||||
<span class="cred-field-label">Local speed</span>
|
|
||||||
<div class="ai-local-profile-options" role="radiogroup" aria-label="Local AI speed">
|
|
||||||
<button type="button" class="ai-local-profile-option" class:active={localProfile === "fast"} onclick={() => selectLocalProfile("fast")}>
|
|
||||||
<Zap size={15} aria-hidden="true" />
|
|
||||||
Fast
|
|
||||||
</button>
|
|
||||||
<button type="button" class="ai-local-profile-option" class:active={localProfile === "balanced"} onclick={() => selectLocalProfile("balanced")}>
|
|
||||||
<Gauge size={15} aria-hidden="true" />
|
|
||||||
Balanced
|
|
||||||
</button>
|
|
||||||
<button type="button" class="ai-local-profile-option" class:active={localProfile === "detailed"} onclick={() => selectLocalProfile("detailed")}>
|
|
||||||
<Sparkles size={15} aria-hidden="true" />
|
|
||||||
Detailed
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<label class="cred-field">
|
|
||||||
<span class="cred-field-label">Model</span>
|
|
||||||
<SelectMenu value={localModelId} options={localModels.map((option) => ({ value: option.id, label: `${option.label} - ${formatSize(option.approx_size_mb)}` }))} onChange={(value) => { localModelId = value; }} />
|
|
||||||
</label>
|
|
||||||
<div class="cred-token-hint">
|
|
||||||
<AlertCircle size={13} aria-hidden="true" />
|
|
||||||
<span>
|
|
||||||
Switching downloads the model{selectedLocalModel ? ` (${formatSize(selectedLocalModel.approx_size_mb)})` : ""}
|
|
||||||
in the background — depending on your internet connection this can take several minutes.
|
|
||||||
After that it stays cached locally and loads instantly on the next start.
|
|
||||||
The speed setting only changes Local AI; API providers keep their existing prompt.
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
{:else if provider === "openai"}
|
|
||||||
<label class="cred-field">
|
<label class="cred-field">
|
||||||
<span class="cred-field-label">Model</span>
|
<span class="cred-field-label">Model</span>
|
||||||
<input type="text" bind:value={openaiModel} placeholder="gpt-4o-mini" autocomplete="off" spellcheck="false" />
|
<input type="text" bind:value={openaiModel} placeholder="gpt-4o-mini" autocomplete="off" spellcheck="false" />
|
||||||
|
|||||||
@@ -55,6 +55,18 @@
|
|||||||
if (!query) return activeRepositories;
|
if (!query) return activeRepositories;
|
||||||
return activeRepositories.filter((repository) => `${repository.fullName} ${repository.description}`.toLocaleLowerCase().includes(query));
|
return activeRepositories.filter((repository) => `${repository.fullName} ${repository.description}`.toLocaleLowerCase().includes(query));
|
||||||
});
|
});
|
||||||
|
const azureRepositoryGroups = $derived.by(() => {
|
||||||
|
if (activeSource?.provider !== "azure-devops") return [];
|
||||||
|
const groups = new Map<string, GitIntegrationRepository[]>();
|
||||||
|
for (const repository of filteredRepositories) {
|
||||||
|
const separator = repository.fullName.indexOf("/");
|
||||||
|
const project = separator > 0 ? repository.fullName.slice(0, separator) : (isGerman ? "Weitere Repositories" : "Other repositories");
|
||||||
|
const repositories = groups.get(project) ?? [];
|
||||||
|
repositories.push(repository);
|
||||||
|
groups.set(project, repositories);
|
||||||
|
}
|
||||||
|
return [...groups.entries()].map(([project, repositories]) => ({ project, repositories }));
|
||||||
|
});
|
||||||
const selectedRepository = $derived(activeRepositories.find((repository) => repository.id === selectedRepositoryId));
|
const selectedRepository = $derived(activeRepositories.find((repository) => repository.id === selectedRepositoryId));
|
||||||
const directorySuggestion = $derived(directoryNameFromRemoteUrl(remoteUrl));
|
const directorySuggestion = $derived(directoryNameFromRemoteUrl(remoteUrl));
|
||||||
const canSubmit = $derived(!isBusy && remoteUrl.trim().length > 0 && parentPath.trim().length > 0);
|
const canSubmit = $derived(!isBusy && remoteUrl.trim().length > 0 && parentPath.trim().length > 0);
|
||||||
@@ -230,10 +242,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function showIntegrations() {
|
function selectIntegrationSource(integrationSource: GitIntegrationSource) {
|
||||||
source = "integrations";
|
source = "integrations";
|
||||||
const nextSource = configuredSources.find((candidate) => candidate.id === selectedSourceId) ?? configuredSources[0];
|
void loadRepositories(integrationSource);
|
||||||
if (nextSource) void loadRepositories(nextSource);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function showUrlInput() {
|
function showUrlInput() {
|
||||||
@@ -255,33 +266,51 @@
|
|||||||
|
|
||||||
<div class="dialog-backdrop" role="presentation">
|
<div class="dialog-backdrop" role="presentation">
|
||||||
<div class="dialog clone-repository-dialog" role="dialog" aria-modal="true" aria-label={isGerman ? "Repository klonen" : "Clone repository"} tabindex="-1">
|
<div class="dialog clone-repository-dialog" role="dialog" aria-modal="true" aria-label={isGerman ? "Repository klonen" : "Clone repository"} tabindex="-1">
|
||||||
<header class="dialog-header">
|
<header class="dialog-header clone-dialog-header">
|
||||||
<div><span class="eyebrow">Repository Management</span><h2 class="mt-0.5 text-ink text-base font-bold leading-tight">{isGerman ? "Repository klonen" : "Clone repository"}</h2></div>
|
<div><h2>{isGerman ? "Repository klonen" : "Clone a Repository"}</h2></div>
|
||||||
<button class="dialog-close" type="button" onclick={onClose} disabled={isBusy} title={isGerman ? "Schließen" : "Close"} aria-label={isGerman ? "Klonen schließen" : "Close clone dialog"}><X size={18} /></button>
|
<button class="dialog-close" type="button" onclick={onClose} disabled={isBusy} title={isGerman ? "Schließen" : "Close"} aria-label={isGerman ? "Klonen schließen" : "Close clone dialog"}><X size={18} /></button>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<form class="clone-dialog-form" onsubmit={submit}>
|
<form class="clone-dialog-form" onsubmit={submit}>
|
||||||
<div class="clone-source-tabs" role="tablist" aria-label={isGerman ? "Repository-Quelle" : "Repository source"}>
|
<div class="clone-dialog-layout">
|
||||||
<button type="button" role="tab" aria-selected={source === "url"} class:active={source === "url"} onclick={showUrlInput}><Globe2 size={15} />URL</button>
|
<aside class="clone-source-nav" aria-label={isGerman ? "Repository-Quellen" : "Repository sources"}>
|
||||||
<button type="button" role="tab" aria-selected={source === "integrations"} class:active={source === "integrations"} onclick={showIntegrations}><Cloud size={15} />{isGerman ? "Integrationen" : "Integrations"}{#if configuredSources.length}<em>{configuredSources.length}</em>{/if}</button>
|
<div class="clone-source-heading">{isGerman ? "Quelle" : "Source"}</div>
|
||||||
</div>
|
<div class="clone-source-list" role="tablist" aria-label={isGerman ? "Repository-Quelle" : "Repository source"}>
|
||||||
|
<button type="button" role="tab" aria-selected={source === "url"} class:active={source === "url"} onclick={showUrlInput}><Globe2 size={15} /><span>{isGerman ? "Mit URL klonen" : "Clone with URL"}</span></button>
|
||||||
|
{#each configuredSources as integrationSource}
|
||||||
|
<button type="button" role="tab" aria-selected={source === "integrations" && selectedSourceId === integrationSource.id} class:active={source === "integrations" && selectedSourceId === integrationSource.id} onclick={() => selectIntegrationSource(integrationSource)}>
|
||||||
|
{#if integrationSource.provider === "azure-devops"}<Cloud size={15} />{:else}<GitBranch size={15} />{/if}
|
||||||
|
<span>{integrationSource.provider === "azure-devops" ? `Azure · ${integrationSource.label}` : integrationSource.label}</span>
|
||||||
|
</button>
|
||||||
|
{/each}
|
||||||
|
</div>
|
||||||
|
{#if configuredSources.length === 0}<p>{isGerman ? "Integrationen kannst du in den Einstellungen einrichten." : "Set up integrations in Settings."}</p>{/if}
|
||||||
|
</aside>
|
||||||
|
|
||||||
{#if source === "url"}
|
<section class="clone-dialog-content">
|
||||||
<label class="clone-dialog-field">
|
<div class="clone-dialog-title">
|
||||||
<span>{isGerman ? "Remote-URL" : "Remote URL"}</span>
|
<span>{source === "integrations" ? (activeSource?.label ?? "Integration") : "URL"}</span>
|
||||||
<!-- svelte-ignore a11y_autofocus -->
|
<h3>{isGerman ? "Repository klonen" : "Clone a Repo"}</h3>
|
||||||
<input value={remoteUrl} oninput={handleRemoteInput} autocomplete="off" spellcheck="false" placeholder="https://gitlab.com/org/project.git" disabled={isBusy} autofocus />
|
</div>
|
||||||
</label>
|
|
||||||
{:else}
|
<div class="clone-target-grid">
|
||||||
<section class="integration-browser" aria-label={isGerman ? "Repositories aus Integrationen" : "Repositories from integrations"}>
|
<label class="clone-dialog-field"><span>{isGerman ? "Klonen nach" : "Where to clone to"}</span><div class="clone-dialog-path-field"><input bind:value={parentPath} autocomplete="off" spellcheck="false" placeholder={isGerman ? "Übergeordneten Ordner auswählen" : "Choose parent folder"} disabled={isBusy} /><button class="btn-secondary" type="button" onclick={chooseParentFolder} disabled={isBusy}><FolderOpen size={14} />{isGerman ? "Durchsuchen" : "Browse"}</button></div></label>
|
||||||
|
<label class="clone-dialog-field"><span>{isGerman ? "Ordnername" : "Folder name"}</span><input bind:value={directoryName} oninput={handleDirectoryInput} autocomplete="off" spellcheck="false" placeholder={directorySuggestion || "Optional"} disabled={isBusy} /></label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{#if source === "url"}
|
||||||
|
<label class="clone-dialog-field clone-url-field">
|
||||||
|
<span>{isGerman ? "Repository-URL" : "Repository URL"}</span>
|
||||||
|
<!-- svelte-ignore a11y_autofocus -->
|
||||||
|
<input value={remoteUrl} oninput={handleRemoteInput} autocomplete="off" spellcheck="false" placeholder="https://gitlab.com/org/project.git" disabled={isBusy} autofocus />
|
||||||
|
</label>
|
||||||
|
{:else}
|
||||||
|
<section class="integration-browser" aria-label={isGerman ? "Repositories aus Integrationen" : "Repositories from integrations"}>
|
||||||
{#if configuredSources.length === 0}
|
{#if configuredSources.length === 0}
|
||||||
<div class="integration-empty"><Cloud size={26} /><strong>{isGerman ? "Keine aktive Integration" : "No active integration"}</strong><p>{isGerman ? "Richte unter Einstellungen → Integrationen zuerst GitHub, GitLab, Azure DevOps oder Gitea ein." : "Set up GitHub, GitLab, Azure DevOps, or Gitea under Settings → Integrations first."}</p></div>
|
<div class="integration-empty"><Cloud size={26} /><strong>{isGerman ? "Keine aktive Integration" : "No active integration"}</strong><p>{isGerman ? "Richte unter Einstellungen → Integrationen zuerst GitHub, GitLab, Azure DevOps oder Gitea ein." : "Set up GitHub, GitLab, Azure DevOps, or Gitea under Settings → Integrations first."}</p></div>
|
||||||
{:else}
|
{:else}
|
||||||
<div class="integration-provider-tabs" role="tablist" aria-label={isGerman ? "Konfigurierte Anbieter" : "Configured providers"}>
|
|
||||||
{#each configuredSources as integrationSource}<button type="button" role="tab" aria-selected={selectedSourceId === integrationSource.id} class:active={selectedSourceId === integrationSource.id} onclick={() => loadRepositories(integrationSource)}>{integrationSource.provider === "azure-devops" ? `Azure · ${integrationSource.label}` : integrationSource.label}</button>{/each}
|
|
||||||
</div>
|
|
||||||
<div class="repository-toolbar">
|
<div class="repository-toolbar">
|
||||||
<label><Search size={14} /><input bind:value={repositorySearch} placeholder={isGerman ? "Repositories filtern…" : "Filter repositories…"} aria-label={isGerman ? "Repositories filtern" : "Filter repositories"} /></label>
|
<label><Search size={14} /><input bind:value={repositorySearch} placeholder={isGerman ? "Repositories durchsuchen…" : "Search repositories…"} aria-label={isGerman ? "Repositories durchsuchen" : "Search repositories"} /></label>
|
||||||
<button type="button" onclick={() => activeSource && loadRepositories(activeSource, true)} disabled={!activeSource || loadingSourceId.length > 0} title={isGerman ? "Neu laden" : "Refresh"} aria-label={isGerman ? "Repository-Liste neu laden" : "Refresh repository list"}><RefreshCw class={loadingSourceId ? "spin" : ""} size={14} /></button>
|
<button type="button" onclick={() => activeSource && loadRepositories(activeSource, true)} disabled={!activeSource || loadingSourceId.length > 0} title={isGerman ? "Neu laden" : "Refresh"} aria-label={isGerman ? "Repository-Liste neu laden" : "Refresh repository list"}><RefreshCw class={loadingSourceId ? "spin" : ""} size={14} /></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="repository-list-shell">
|
<div class="repository-list-shell">
|
||||||
@@ -292,6 +321,19 @@
|
|||||||
<div class="repository-state repository-state-error"><strong>{isGerman ? "Repositories konnten nicht geladen werden" : "Could not load repositories"}</strong><span>{repositoryError}</span></div>
|
<div class="repository-state repository-state-error"><strong>{isGerman ? "Repositories konnten nicht geladen werden" : "Could not load repositories"}</strong><span>{repositoryError}</span></div>
|
||||||
{:else if filteredRepositories.length === 0}
|
{:else if filteredRepositories.length === 0}
|
||||||
<div class="repository-state"><GitBranch size={20} /><span>{repositorySearch ? (isGerman ? "Keine passenden Repositories." : "No matching repositories.") : (isGerman ? "Keine Repositories gefunden." : "No repositories found.")}</span></div>
|
<div class="repository-state"><GitBranch size={20} /><span>{repositorySearch ? (isGerman ? "Keine passenden Repositories." : "No matching repositories.") : (isGerman ? "Keine Repositories gefunden." : "No repositories found.")}</span></div>
|
||||||
|
{:else if activeSource?.provider === "azure-devops"}
|
||||||
|
{#each azureRepositoryGroups as group (group.project)}
|
||||||
|
<section class="repository-project-group" aria-label={group.project}>
|
||||||
|
<div class="repository-project-header"><span>{group.project}</span><em>{group.repositories.length}</em></div>
|
||||||
|
{#each group.repositories as repository (repository.id)}
|
||||||
|
<button type="button" class="repository-option" class:selected={selectedRepositoryId === repository.id} onclick={() => selectRepository(repository)}>
|
||||||
|
<span class="repository-option-icon"><GitBranch size={15} /></span>
|
||||||
|
<span class="repository-option-copy"><strong>{repository.name}</strong><small>{repository.description || repository.cloneUrl}</small></span>
|
||||||
|
<span class="repository-option-meta">{#if repository.private}<LockKeyhole size={12} aria-label={isGerman ? "Privat" : "Private"} />{/if}{formatUpdatedAt(repository.updatedAt)}</span>
|
||||||
|
</button>
|
||||||
|
{/each}
|
||||||
|
</section>
|
||||||
|
{/each}
|
||||||
{:else}
|
{:else}
|
||||||
{#each filteredRepositories as repository (repository.id)}
|
{#each filteredRepositories as repository (repository.id)}
|
||||||
<button type="button" class="repository-option" class:selected={selectedRepositoryId === repository.id} onclick={() => selectRepository(repository)}>
|
<button type="button" class="repository-option" class:selected={selectedRepositoryId === repository.id} onclick={() => selectRepository(repository)}>
|
||||||
@@ -331,38 +373,46 @@
|
|||||||
</div>
|
</div>
|
||||||
{#if selectedRepository}<div class="selected-repository"><span>{isGerman ? "Ausgewählt" : "Selected"}</span><strong>{selectedRepository.fullName}</strong><code>{selectedRepository.cloneUrl}</code></div>{/if}
|
{#if selectedRepository}<div class="selected-repository"><span>{isGerman ? "Ausgewählt" : "Selected"}</span><strong>{selectedRepository.fullName}</strong><code>{selectedRepository.cloneUrl}</code></div>{/if}
|
||||||
{/if}
|
{/if}
|
||||||
|
</section>
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{#if visibleError}<div class="clone-dialog-error" role="alert">{visibleError}</div>{/if}
|
||||||
</section>
|
</section>
|
||||||
{/if}
|
|
||||||
|
|
||||||
<div class="clone-target-grid">
|
|
||||||
<label class="clone-dialog-field"><span>{isGerman ? "Ziel" : "Destination"}</span><div class="clone-dialog-path-field"><input bind:value={parentPath} autocomplete="off" spellcheck="false" placeholder={isGerman ? "Übergeordneten Ordner auswählen" : "Choose parent folder"} disabled={isBusy} /><button class="btn-secondary" type="button" onclick={chooseParentFolder} disabled={isBusy}><FolderOpen size={14} />{isGerman ? "Durchsuchen" : "Browse"}</button></div></label>
|
|
||||||
<label class="clone-dialog-field"><span>{isGerman ? "Ordnername" : "Folder name"}</span><input bind:value={directoryName} oninput={handleDirectoryInput} autocomplete="off" spellcheck="false" placeholder={directorySuggestion || "Optional"} disabled={isBusy} /></label>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if visibleError}<div class="clone-dialog-error" role="alert">{visibleError}</div>{/if}
|
|
||||||
<div class="clone-dialog-actions"><button class="btn-secondary" type="button" onclick={onClose} disabled={isBusy}>{isGerman ? "Abbrechen" : "Cancel"}</button><button class="btn-primary" type="submit" disabled={!canSubmit}>{#if isBusy}<LoaderCircle class="spin" size={16} />{:else}<Download size={16} />{/if}{isGerman ? "Klonen" : "Clone"}</button></div>
|
<div class="clone-dialog-actions"><button class="btn-secondary" type="button" onclick={onClose} disabled={isBusy}>{isGerman ? "Abbrechen" : "Cancel"}</button><button class="btn-primary" type="submit" disabled={!canSubmit}>{#if isBusy}<LoaderCircle class="spin" size={16} />{:else}<Download size={16} />{/if}{isGerman ? "Klonen" : "Clone"}</button></div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.clone-repository-dialog { width: min(760px, calc(100vw - 32px)); }
|
.clone-repository-dialog { width: min(900px, calc(100vw - 32px)); height: min(660px, calc(100vh - 32px)); }
|
||||||
.clone-source-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; padding: 4px; border: 1px solid var(--color-border-subtle); border-radius: 9px; background: var(--app-settings-row-bg); }
|
.clone-dialog-header { min-height: 52px; padding: 0 16px 0 20px; }
|
||||||
.clone-source-tabs button { min-height: 36px; border-color: transparent; color: var(--color-ink-dim); background: transparent; font-size: 11px; font-weight: 800; }
|
.clone-dialog-header h2 { margin: 0; color: var(--color-ink); font-size: 15px; font-weight: 650; }
|
||||||
.clone-source-tabs button.active { border-color: var(--color-border-input); color: var(--color-ink); background: var(--color-surface-raised); box-shadow: 0 2px 8px rgba(0,0,0,.12); }
|
.clone-dialog-form { grid-template-rows: minmax(0, 1fr) auto; gap: 0; height: calc(100% - 53px); padding: 0; }
|
||||||
.clone-source-tabs button.active :global(svg) { color: var(--color-accent); }
|
.clone-dialog-layout { display: grid; grid-template-columns: 205px minmax(0, 1fr); min-height: 0; }
|
||||||
.clone-source-tabs em { display: grid; place-items: center; min-width: 19px; height: 18px; padding: 0 5px; border-radius: 9px; color: var(--color-accent); background: color-mix(in srgb, var(--color-accent) 12%, transparent); font-size: 9px; font-style: normal; }
|
.clone-source-nav { min-width: 0; padding: 12px 0; border-right: 1px solid var(--color-border-subtle); background: var(--app-dialog-chrome); }
|
||||||
.integration-browser { display: grid; gap: 9px; min-height: 270px; padding: 11px; border: 1px solid var(--color-border-subtle); border-radius: 10px; background: color-mix(in srgb, var(--app-settings-row-bg) 72%, transparent); }
|
.clone-source-heading { padding: 2px 14px 8px; color: var(--color-ink-faint); font-size: 8.5px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
|
||||||
.integration-provider-tabs { display: flex; gap: 5px; overflow-x: auto; }
|
.clone-source-list { display: grid; gap: 2px; }
|
||||||
.integration-provider-tabs button { flex: 0 0 auto; min-height: 29px; padding: 0 9px; border-color: transparent; color: var(--color-ink-dim); background: transparent; font-size: 10px; font-weight: 750; }
|
.clone-source-list button { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: center; gap: 8px; width: 100%; min-height: 38px; padding: 0 14px; border: 0; border-radius: 0; color: var(--color-ink-dim); background: transparent; box-shadow: none; font-size: 10.5px; font-weight: 650; text-align: left; }
|
||||||
.integration-provider-tabs button.active { border-color: color-mix(in srgb, var(--color-accent) 30%, var(--color-border)); color: var(--color-ink); background: color-mix(in srgb, var(--color-accent) 8%, var(--color-surface-raised)); }
|
.clone-source-list button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||||
|
.clone-source-list button :global(svg) { color: var(--color-ink-faint); }
|
||||||
|
.clone-source-list button:hover { color: var(--color-ink); background: var(--color-surface-hover); }
|
||||||
|
.clone-source-list button.active { color: var(--color-ink); background: color-mix(in srgb, var(--color-accent) 18%, var(--color-surface-hover)); box-shadow: inset 3px 0 0 var(--color-accent); }
|
||||||
|
.clone-source-list button.active :global(svg) { color: var(--color-accent); }
|
||||||
|
.clone-source-nav > p { margin: 12px 14px 0; color: var(--color-ink-faint); font-size: 9px; line-height: 1.45; }
|
||||||
|
.clone-dialog-content { display: grid; grid-template-rows: auto auto minmax(0, 1fr); grid-auto-rows: auto; align-content: stretch; gap: 14px; min-width: 0; min-height: 0; padding: 16px 18px; overflow: hidden; }
|
||||||
|
.clone-dialog-title { display: grid; gap: 3px; }
|
||||||
|
.clone-dialog-title > span { color: var(--color-accent); font-size: 8.5px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
|
||||||
|
.clone-dialog-title h3 { margin: 0; color: var(--color-ink); font-size: 16px; font-weight: 650; }
|
||||||
|
.clone-url-field { align-self: start; margin-top: 2px; }
|
||||||
|
.integration-browser { display: grid; grid-template-rows: auto minmax(0, 1fr); grid-auto-rows: auto; gap: 8px; min-height: 0; }
|
||||||
.repository-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) 32px; gap: 6px; }
|
.repository-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) 32px; gap: 6px; }
|
||||||
.repository-toolbar label { position: relative; min-width: 0; }
|
.repository-toolbar label { position: relative; min-width: 0; }
|
||||||
.repository-toolbar label > :global(svg) { position: absolute; z-index: 1; top: 10px; left: 10px; color: var(--color-ink-faint); }
|
.repository-toolbar label > :global(svg) { position: absolute; z-index: 1; top: 10px; left: 10px; color: var(--color-ink-faint); }
|
||||||
.repository-toolbar input { height: 34px; padding-left: 31px; font-size: 11px; }
|
.repository-toolbar input { height: 34px; padding-left: 31px; font-size: 11px; }
|
||||||
.repository-toolbar button { min-height: 32px; padding: 0; }
|
.repository-toolbar button { min-height: 32px; padding: 0; }
|
||||||
.repository-list-shell { position: relative; min-height: 162px; max-height: 250px; overflow: hidden; border: 1px solid var(--color-border-subtle); border-radius: 8px; background: var(--color-surface-raised); }
|
.repository-list-shell { position: relative; min-height: 0; height: 100%; overflow: hidden; border: 1px solid var(--color-border-input); border-radius: 7px; background: var(--color-surface-raised); box-shadow: 0 8px 18px rgba(0,0,0,.13); }
|
||||||
.repository-list { min-height: 160px; max-height: 248px; padding-right: 8px; overflow: auto; scrollbar-width: none; border-radius: inherit; background: transparent; }
|
.repository-list { min-height: 0; height: 100%; padding-right: 8px; overflow: auto; scrollbar-width: none; border-radius: inherit; background: transparent; }
|
||||||
.repository-list::-webkit-scrollbar { display: none; width: 0; height: 0; }
|
.repository-list::-webkit-scrollbar { display: none; width: 0; height: 0; }
|
||||||
.repository-scrollbar { position: absolute; z-index: 2; top: 3px; right: 1px; bottom: 3px; width: 7px; border-radius: 4px; opacity: 0; pointer-events: none; touch-action: none; transition: opacity 120ms ease; }
|
.repository-scrollbar { position: absolute; z-index: 2; top: 3px; right: 1px; bottom: 3px; width: 7px; border-radius: 4px; opacity: 0; pointer-events: none; touch-action: none; transition: opacity 120ms ease; }
|
||||||
.repository-scrollbar.visible { opacity: 1; pointer-events: auto; }
|
.repository-scrollbar.visible { opacity: 1; pointer-events: auto; }
|
||||||
@@ -371,28 +421,55 @@
|
|||||||
.repository-scrollbar:focus-visible .repository-scrollbar-thumb,
|
.repository-scrollbar:focus-visible .repository-scrollbar-thumb,
|
||||||
.repository-scrollbar.dragging .repository-scrollbar-thumb { right: 1px; width: 4px; background: var(--app-scrollbar-thumb-hover); }
|
.repository-scrollbar.dragging .repository-scrollbar-thumb { right: 1px; width: 4px; background: var(--app-scrollbar-thumb-hover); }
|
||||||
.repository-scrollbar:focus-visible { outline: 1px solid color-mix(in srgb, var(--color-accent) 70%, transparent); outline-offset: 1px; }
|
.repository-scrollbar:focus-visible { outline: 1px solid color-mix(in srgb, var(--color-accent) 70%, transparent); outline-offset: 1px; }
|
||||||
.repository-option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 9px; width: 100%; min-height: 52px; padding: 7px 9px; border: 0; border-bottom: 1px solid var(--color-border-subtle); border-radius: 0; color: var(--color-ink-dim); background: transparent; text-align: left; }
|
.repository-project-group + .repository-project-group { border-top: 1px solid var(--color-border-subtle); }
|
||||||
|
.repository-project-header { position: sticky; z-index: 1; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 34px; padding: 7px 10px 6px 12px; color: var(--color-accent); background: color-mix(in srgb, var(--color-surface-raised) 96%, transparent); font-size: 9.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .045em; }
|
||||||
|
.repository-project-header span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||||
|
.repository-project-header em { display: grid; flex: 0 0 auto; place-items: center; min-width: 19px; height: 16px; padding: 0 5px; color: var(--color-ink); background: color-mix(in srgb, var(--color-ink) 12%, transparent); font-size: 8px; font-style: normal; line-height: 1; letter-spacing: 0; }
|
||||||
|
.repository-option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 8px; width: 100%; min-height: 44px; padding: 6px 10px 6px 12px; border: 0; border-bottom: 1px solid var(--color-border-subtle); border-radius: 0; color: var(--color-ink-dim); background: transparent; text-align: left; }
|
||||||
.repository-option:last-child { border-bottom: 0; }
|
.repository-option:last-child { border-bottom: 0; }
|
||||||
.repository-option:hover { color: var(--color-ink); background: var(--color-surface-hover); }
|
.repository-option:hover { color: var(--color-ink); background: var(--color-surface-hover); }
|
||||||
.repository-option.selected { color: var(--color-ink); background: color-mix(in srgb, var(--color-accent) 8%, var(--color-surface-hover)); box-shadow: inset 2px 0 0 var(--color-accent); }
|
.repository-option.selected { color: var(--color-ink); background: color-mix(in srgb, var(--color-accent) 15%, var(--color-surface-hover)); box-shadow: inset 3px 0 0 var(--color-accent); }
|
||||||
.repository-option-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--color-border-subtle); border-radius: 7px; color: var(--color-accent); background: color-mix(in srgb, var(--color-accent) 7%, transparent); }
|
.repository-option-icon { display: grid; place-items: center; width: 22px; height: 22px; color: var(--color-ink-faint); }
|
||||||
|
.repository-option.selected .repository-option-icon { color: var(--color-accent); }
|
||||||
.repository-option-copy { display: grid; min-width: 0; gap: 3px; }
|
.repository-option-copy { display: grid; min-width: 0; gap: 3px; }
|
||||||
.repository-option-copy strong, .repository-option-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
.repository-option-copy strong, .repository-option-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||||
.repository-option-copy strong { color: inherit; font-size: 10.5px; }
|
.repository-option-copy strong { color: inherit; font-size: 10.5px; }
|
||||||
.repository-option-copy small { color: var(--color-ink-faint); font-size: 9px; }
|
.repository-option-copy small { color: var(--color-ink-faint); font-size: 9px; }
|
||||||
|
.repository-project-group .repository-option { min-height: 38px; padding-block: 5px; }
|
||||||
|
.repository-project-group .repository-option-copy { gap: 0; }
|
||||||
|
.repository-project-group .repository-option-copy strong { color: var(--color-ink); font-size: 11.5px; font-weight: 800; }
|
||||||
|
.repository-project-group .repository-option-copy small { display: none; }
|
||||||
.repository-option-meta { display: flex; align-items: center; gap: 5px; color: var(--color-ink-faint); font-size: 8.5px; }
|
.repository-option-meta { display: flex; align-items: center; gap: 5px; color: var(--color-ink-faint); font-size: 8.5px; }
|
||||||
.repository-state, .integration-empty { display: grid; place-items: center; align-content: center; min-height: 160px; padding: 20px; color: var(--color-ink-faint); text-align: center; }
|
.repository-state, .integration-empty { display: grid; place-items: center; align-content: center; min-height: 188px; padding: 20px; color: var(--color-ink-faint); text-align: center; }
|
||||||
.repository-state { gap: 7px; font-size: 10.5px; }
|
.repository-state { gap: 7px; font-size: 10.5px; }
|
||||||
.repository-state strong, .integration-empty strong { color: var(--color-ink); font-size: 11px; }
|
.repository-state strong, .integration-empty strong { color: var(--color-ink); font-size: 11px; }
|
||||||
.repository-state-error strong { color: #e86060; }
|
.repository-state-error strong { color: #e86060; }
|
||||||
.repository-state-error span { max-width: 520px; line-height: 1.45; }
|
.repository-state-error span { max-width: 520px; line-height: 1.45; }
|
||||||
.integration-empty { min-height: 235px; gap: 8px; }
|
.integration-empty { min-height: 260px; gap: 8px; }
|
||||||
.integration-empty :global(svg) { color: var(--color-accent); }
|
.integration-empty :global(svg) { color: var(--color-accent); }
|
||||||
.integration-empty p { max-width: 400px; margin: 0; color: var(--color-ink-faint); font-size: 10px; line-height: 1.5; }
|
.integration-empty p { max-width: 400px; margin: 0; color: var(--color-ink-faint); font-size: 10px; line-height: 1.5; }
|
||||||
.selected-repository { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 3px 8px; min-width: 0; padding: 8px 9px; border-left: 2px solid var(--color-accent); background: color-mix(in srgb, var(--color-accent) 6%, transparent); }
|
.selected-repository { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 3px 8px; min-width: 0; padding: 8px 9px; border-left: 2px solid var(--color-accent); background: color-mix(in srgb, var(--color-accent) 6%, transparent); }
|
||||||
.selected-repository span { color: var(--color-accent); font-size: 8.5px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
|
.selected-repository span { color: var(--color-accent); font-size: 8.5px; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
|
||||||
.selected-repository strong { overflow: hidden; color: var(--color-ink); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
|
.selected-repository strong { overflow: hidden; color: var(--color-ink); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
|
||||||
.selected-repository code { grid-column: 2; overflow: hidden; color: var(--color-ink-faint); font: 8.5px var(--font-mono); text-overflow: ellipsis; white-space: nowrap; }
|
.selected-repository code { grid-column: 2; overflow: hidden; color: var(--color-ink-faint); font: 8.5px var(--font-mono); text-overflow: ellipsis; white-space: nowrap; }
|
||||||
.clone-target-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(150px, .75fr); gap: 10px; }
|
.clone-target-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(150px, .72fr); gap: 10px; }
|
||||||
@media (max-width: 620px) { .clone-repository-dialog { width: min(620px, calc(100vw - 20px)); } .clone-target-grid { grid-template-columns: 1fr; } .repository-option-meta { display: none; } }
|
.clone-dialog-actions { min-height: 54px; align-items: center; padding: 9px 16px; border-top: 1px solid var(--color-border-subtle); background: var(--app-dialog-chrome); }
|
||||||
|
@media (max-width: 700px) {
|
||||||
|
.clone-repository-dialog { width: min(660px, calc(100vw - 20px)); }
|
||||||
|
.clone-dialog-layout { grid-template-columns: 155px minmax(0, 1fr); }
|
||||||
|
.clone-source-list button { padding-inline: 10px; }
|
||||||
|
.clone-target-grid { grid-template-columns: 1fr; }
|
||||||
|
.repository-option-meta { display: none; }
|
||||||
|
}
|
||||||
|
@media (max-width: 500px) {
|
||||||
|
.dialog-backdrop { padding: 10px; }
|
||||||
|
.clone-repository-dialog { width: calc(100vw - 20px); height: min(660px, calc(100vh - 20px)); }
|
||||||
|
.clone-dialog-layout { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); }
|
||||||
|
.clone-source-nav { padding: 6px 0; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--color-border-subtle); }
|
||||||
|
.clone-source-heading, .clone-source-nav > p { display: none; }
|
||||||
|
.clone-source-list { display: flex; width: max-content; min-width: 100%; padding: 0 6px; }
|
||||||
|
.clone-source-list button { width: auto; min-height: 34px; padding-inline: 9px; border-radius: 5px; }
|
||||||
|
.clone-source-list button.active { box-shadow: inset 0 -2px 0 var(--color-accent); }
|
||||||
|
.clone-dialog-content { padding: 13px 12px; overflow: hidden; }
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Check, GitCommitHorizontal, LoaderCircle, RotateCcw, Settings, ShieldCheck, Sparkles } from "@lucide/svelte";
|
import { Check, GitCommitHorizontal, LoaderCircle, RotateCcw, Settings, ShieldCheck, Sparkles } from "@lucide/svelte";
|
||||||
import type { CommitAiPhase, CommitAiProvider } from "../types";
|
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
commitMessage: string;
|
commitMessage: string;
|
||||||
@@ -10,8 +9,6 @@
|
|||||||
isBusy: boolean;
|
isBusy: boolean;
|
||||||
operation: string;
|
operation: string;
|
||||||
stagedCount: number;
|
stagedCount: number;
|
||||||
commitAiProvider: CommitAiProvider;
|
|
||||||
commitAiPhase: CommitAiPhase;
|
|
||||||
commitAiGenerating: boolean;
|
commitAiGenerating: boolean;
|
||||||
commitAiReviewing: boolean;
|
commitAiReviewing: boolean;
|
||||||
commitAiSplitting: boolean;
|
commitAiSplitting: boolean;
|
||||||
@@ -35,8 +32,6 @@
|
|||||||
isBusy = false,
|
isBusy = false,
|
||||||
operation = "",
|
operation = "",
|
||||||
stagedCount = 0,
|
stagedCount = 0,
|
||||||
commitAiProvider = "local",
|
|
||||||
commitAiPhase = "idle",
|
|
||||||
commitAiGenerating = false,
|
commitAiGenerating = false,
|
||||||
commitAiReviewing = false,
|
commitAiReviewing = false,
|
||||||
commitAiSplitting = false,
|
commitAiSplitting = false,
|
||||||
@@ -57,23 +52,19 @@
|
|||||||
onCommit();
|
onCommit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function aiButtonTitle(provider: CommitAiProvider, phase: CommitAiPhase, staged: number): string {
|
function aiButtonTitle(staged: number): string {
|
||||||
if (staged === 0) return "Stage changes first";
|
if (staged === 0) return "Stage changes first";
|
||||||
if (provider === "local" && phase === "loading") return "AI model is downloading/loading — this happens once";
|
|
||||||
if (provider === "local" && phase === "error") return "AI model failed to load — check AI settings";
|
|
||||||
return "Generate commit message with AI from the staged diff";
|
return "Generate commit message with AI from the staged diff";
|
||||||
}
|
}
|
||||||
|
|
||||||
let localModelLoading = $derived(commitAiProvider === "local" && commitAiPhase === "loading");
|
|
||||||
let canGenerate = $derived(
|
let canGenerate = $derived(
|
||||||
hasRepository &&
|
hasRepository &&
|
||||||
!isBusy &&
|
!isBusy &&
|
||||||
!commitAiGenerating &&
|
!commitAiGenerating &&
|
||||||
!commitAiReviewing &&
|
!commitAiReviewing &&
|
||||||
stagedCount > 0 &&
|
stagedCount > 0,
|
||||||
(commitAiProvider !== "local" || commitAiPhase === "ready"),
|
|
||||||
);
|
);
|
||||||
let canReview = $derived(canGenerate && commitAiProvider !== "local");
|
let canReview = $derived(canGenerate);
|
||||||
let canSplit = $derived(canReview && stagedCount > 1 && !commitAiSplitting);
|
let canSplit = $derived(canReview && stagedCount > 1 && !commitAiSplitting);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -90,7 +81,7 @@
|
|||||||
type="button"
|
type="button"
|
||||||
onclick={onSplitStaged}
|
onclick={onSplitStaged}
|
||||||
disabled={!canSplit}
|
disabled={!canSplit}
|
||||||
title={commitAiProvider === "local" ? "Commit splitting currently requires an API provider" : "Suggest logical commits for the staged files"}
|
title="Suggest logical commits for the staged files"
|
||||||
>
|
>
|
||||||
{#if commitAiSplitting}<LoaderCircle class="spin" size={14} aria-hidden="true" />{:else}<GitCommitHorizontal size={14} aria-hidden="true" />{/if}
|
{#if commitAiSplitting}<LoaderCircle class="spin" size={14} aria-hidden="true" />{:else}<GitCommitHorizontal size={14} aria-hidden="true" />{/if}
|
||||||
Split
|
Split
|
||||||
@@ -100,7 +91,7 @@
|
|||||||
type="button"
|
type="button"
|
||||||
onclick={onReviewStaged}
|
onclick={onReviewStaged}
|
||||||
disabled={!canReview}
|
disabled={!canReview}
|
||||||
title={commitAiProvider === "local" ? "Pre-commit review currently requires an API provider" : stagedCount === 0 ? "Stage changes first" : "Review staged changes for bugs and risks"}
|
title={stagedCount === 0 ? "Stage changes first" : "Review staged changes for bugs and risks"}
|
||||||
>
|
>
|
||||||
{#if commitAiReviewing}<LoaderCircle class="spin" size={14} aria-hidden="true" />{:else}<ShieldCheck size={14} aria-hidden="true" />{/if}
|
{#if commitAiReviewing}<LoaderCircle class="spin" size={14} aria-hidden="true" />{:else}<ShieldCheck size={14} aria-hidden="true" />{/if}
|
||||||
Review
|
Review
|
||||||
@@ -110,9 +101,9 @@
|
|||||||
type="button"
|
type="button"
|
||||||
onclick={onGenerateCommitMessage}
|
onclick={onGenerateCommitMessage}
|
||||||
disabled={!canGenerate}
|
disabled={!canGenerate}
|
||||||
title={aiButtonTitle(commitAiProvider, commitAiPhase, stagedCount)}
|
title={aiButtonTitle(stagedCount)}
|
||||||
>
|
>
|
||||||
{#if commitAiGenerating || localModelLoading}<LoaderCircle class="spin" size={14} aria-hidden="true" />{:else}<Sparkles size={14} aria-hidden="true" />{/if}
|
{#if commitAiGenerating}<LoaderCircle class="spin" size={14} aria-hidden="true" />{:else}<Sparkles size={14} aria-hidden="true" />{/if}
|
||||||
Generate
|
Generate
|
||||||
</button>
|
</button>
|
||||||
<button class="commit-settings-button" type="button" onclick={onOpenAiSettings} disabled={isBusy} title="AI settings" aria-label="AI settings">
|
<button class="commit-settings-button" type="button" onclick={onOpenAiSettings} disabled={isBusy} title="AI settings" aria-label="AI settings">
|
||||||
|
|||||||
@@ -2116,7 +2116,8 @@
|
|||||||
.help-search-icon { position: absolute; left: 12px; display: grid; color: var(--color-ink-faint); pointer-events: none; }
|
.help-search-icon { position: absolute; left: 12px; display: grid; color: var(--color-ink-faint); pointer-events: none; }
|
||||||
.help-search input { width: 100%; height: 40px; padding: 0 68px 0 39px; border-color: var(--color-border-input); border-radius: 8px; background: var(--app-input-bg); color: var(--color-ink); font-size: 12.5px; }
|
.help-search input { width: 100%; height: 40px; padding: 0 68px 0 39px; border-color: var(--color-border-input); border-radius: 8px; background: var(--app-input-bg); color: var(--color-ink); font-size: 12.5px; }
|
||||||
.help-search kbd { position: absolute; right: 8px; }
|
.help-search kbd { position: absolute; right: 8px; }
|
||||||
.help-close { justify-self: end; width: 36px; min-height: 36px; padding: 0; border-color: transparent; border-radius: 7px; background: transparent; color: var(--color-ink-muted); }
|
.help-close { justify-self: end; width: 36px; min-height: 36px; padding: 0; border-color: transparent; border-radius: 7px; background: transparent; color: var(--color-ink-muted); transition: color 120ms ease, border-color 120ms ease, background 120ms ease, box-shadow 120ms ease; }
|
||||||
|
.help-close:hover:not(:disabled), .help-close:focus-visible:not(:disabled) { color: #fff; border-color: #f0646d; background: #d93641; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
|
||||||
|
|
||||||
.help-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 0; }
|
.help-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 0; }
|
||||||
.help-nav { display: flex; flex-direction: column; min-height: 0; padding: 14px 10px 12px; border-right: 1px solid var(--color-border); background: var(--color-surface-dim); }
|
.help-nav { display: flex; flex-direction: column; min-height: 0; padding: 14px 10px 12px; border-right: 1px solid var(--color-border); background: var(--color-surface-dim); }
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
<style>
|
<style>
|
||||||
.repo-loading {
|
.repo-loading {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: calc(var(--app-titlebar-height, 42px) + 56px);
|
top: calc(var(--app-titlebar-height, 40px) + var(--app-repo-tabbar-height, 36px));
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
@@ -47,8 +47,8 @@
|
|||||||
color-mix(in srgb, var(--color-accent) 13%, transparent),
|
color-mix(in srgb, var(--color-accent) 13%, transparent),
|
||||||
transparent 38%
|
transparent 38%
|
||||||
),
|
),
|
||||||
var(--app-dialog-backdrop);
|
color-mix(in srgb, var(--app-dialog-bg) 78%, #05070a 22%);
|
||||||
backdrop-filter: blur(5px);
|
backdrop-filter: blur(9px);
|
||||||
animation: overlay-in 180ms ease;
|
animation: overlay-in 180ms ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
);
|
);
|
||||||
const versionLabel = $derived(
|
const versionLabel = $derived(
|
||||||
version && currentVersion
|
version && currentVersion
|
||||||
? `${currentVersion} -> ${version}`
|
? `${currentVersion} → ${version}`
|
||||||
: version
|
: version
|
||||||
? `Version ${version}`
|
? `Version ${version}`
|
||||||
: "New version",
|
: "New version",
|
||||||
@@ -69,34 +69,32 @@
|
|||||||
role={state === "error" ? "alert" : "status"}
|
role={state === "error" ? "alert" : "status"}
|
||||||
aria-live={state === "error" ? "assertive" : "polite"}
|
aria-live={state === "error" ? "assertive" : "polite"}
|
||||||
>
|
>
|
||||||
<div class="update-toast-glow" aria-hidden="true"></div>
|
<header class="update-toast-header">
|
||||||
|
<div class="update-toast-icon" class:busy={isBusy}>
|
||||||
<div class="update-toast-icon" class:busy={isBusy}>
|
{#if state === "downloading"}
|
||||||
{#if state === "downloading"}
|
<LoaderCircle class="spin" size={18} aria-hidden="true" />
|
||||||
<LoaderCircle class="spin" size={21} aria-hidden="true" />
|
{:else if state === "installed"}
|
||||||
{:else if state === "installed"}
|
<PackageCheck size={18} aria-hidden="true" />
|
||||||
<PackageCheck size={21} aria-hidden="true" />
|
{:else if state === "error"}
|
||||||
{:else if state === "error"}
|
<AlertCircle size={18} aria-hidden="true" />
|
||||||
<AlertCircle size={21} aria-hidden="true" />
|
{:else}
|
||||||
{:else}
|
<Sparkles size={18} aria-hidden="true" />
|
||||||
<Sparkles size={21} aria-hidden="true" />
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="update-toast-content">
|
|
||||||
<div class="update-toast-top">
|
|
||||||
<div class="update-toast-copy">
|
|
||||||
<span class="update-toast-kicker">{versionLabel}</span>
|
|
||||||
<h2>{title}</h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{#if !isBusy}
|
|
||||||
<button class="update-toast-close" type="button" onclick={onDismiss} title="Close" aria-label="Close">
|
|
||||||
<X size={15} aria-hidden="true" />
|
|
||||||
</button>
|
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="update-toast-copy">
|
||||||
|
<span class="update-toast-kicker">Gitty update · {versionLabel}</span>
|
||||||
|
<h2>{title}</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{#if !isBusy}
|
||||||
|
<button class="update-toast-close" type="button" onclick={onDismiss} title="Close" aria-label="Close">
|
||||||
|
<X size={15} aria-hidden="true" />
|
||||||
|
</button>
|
||||||
|
{/if}
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="update-toast-body">
|
||||||
<p>{description}</p>
|
<p>{description}</p>
|
||||||
|
|
||||||
{#if showProgress}
|
{#if showProgress}
|
||||||
@@ -115,33 +113,34 @@
|
|||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div class="update-toast-actions">
|
|
||||||
{#if state === "installed"}
|
|
||||||
<button class="update-toast-secondary" type="button" onclick={onDismiss}>
|
|
||||||
Got it
|
|
||||||
</button>
|
|
||||||
{:else if state === "error"}
|
|
||||||
<button class="update-toast-secondary" type="button" onclick={onDismiss}>
|
|
||||||
Close
|
|
||||||
</button>
|
|
||||||
<button class="update-toast-primary" type="button" onclick={onInstall}>
|
|
||||||
<Download size={14} aria-hidden="true" />
|
|
||||||
Try again
|
|
||||||
</button>
|
|
||||||
{:else}
|
|
||||||
<button class="update-toast-secondary" type="button" onclick={onLater} disabled={isBusy}>
|
|
||||||
Later
|
|
||||||
</button>
|
|
||||||
<button class="update-toast-primary" type="button" onclick={onInstall} disabled={isBusy}>
|
|
||||||
{#if isBusy}
|
|
||||||
<LoaderCircle class="spin" size={14} aria-hidden="true" />
|
|
||||||
Installing
|
|
||||||
{:else}
|
|
||||||
<Download size={14} aria-hidden="true" />
|
|
||||||
Install
|
|
||||||
{/if}
|
|
||||||
</button>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer class="update-toast-actions">
|
||||||
|
{#if state === "installed"}
|
||||||
|
<button class="update-toast-secondary" type="button" onclick={onDismiss}>
|
||||||
|
Got it
|
||||||
|
</button>
|
||||||
|
{:else if state === "error"}
|
||||||
|
<button class="update-toast-secondary" type="button" onclick={onDismiss}>
|
||||||
|
Close
|
||||||
|
</button>
|
||||||
|
<button class="update-toast-primary" type="button" onclick={onInstall}>
|
||||||
|
<Download size={14} aria-hidden="true" />
|
||||||
|
Try again
|
||||||
|
</button>
|
||||||
|
{:else}
|
||||||
|
<button class="update-toast-secondary" type="button" onclick={onLater} disabled={isBusy}>
|
||||||
|
Later
|
||||||
|
</button>
|
||||||
|
<button class="update-toast-primary" type="button" onclick={onInstall} disabled={isBusy}>
|
||||||
|
{#if isBusy}
|
||||||
|
<LoaderCircle class="spin" size={14} aria-hidden="true" />
|
||||||
|
Installing
|
||||||
|
{:else}
|
||||||
|
<Download size={14} aria-hidden="true" />
|
||||||
|
Install
|
||||||
|
{/if}
|
||||||
|
</button>
|
||||||
|
{/if}
|
||||||
|
</footer>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
+18
-19
@@ -3,9 +3,7 @@ import { tracedInvoke as invoke } from "./telemetry";
|
|||||||
import type {
|
import type {
|
||||||
AiReviewResult,
|
AiReviewResult,
|
||||||
AiCommitPlan,
|
AiCommitPlan,
|
||||||
CommitAiLocalProfile,
|
|
||||||
CommitAiProvider,
|
CommitAiProvider,
|
||||||
CommitAiStatus,
|
|
||||||
ConflictFile,
|
ConflictFile,
|
||||||
DetectedExternalTool,
|
DetectedExternalTool,
|
||||||
ExternalToolCommand,
|
ExternalToolCommand,
|
||||||
@@ -30,7 +28,6 @@ import type {
|
|||||||
GitStatus,
|
GitStatus,
|
||||||
GitTag,
|
GitTag,
|
||||||
GitWorktree,
|
GitWorktree,
|
||||||
LocalModelOption,
|
|
||||||
PatchApplyAction,
|
PatchApplyAction,
|
||||||
RepositoryBundle,
|
RepositoryBundle,
|
||||||
StoredCredential,
|
StoredCredential,
|
||||||
@@ -369,22 +366,9 @@ export function stashDrop(path: string, selector: string): Promise<GitStatus> {
|
|||||||
return invoke<GitStatus>("stash_drop", { path, selector });
|
return invoke<GitStatus>("stash_drop", { path, selector });
|
||||||
}
|
}
|
||||||
|
|
||||||
export function commitAiStatus(): Promise<CommitAiStatus> {
|
|
||||||
return invoke<CommitAiStatus>("commit_ai_status");
|
|
||||||
}
|
|
||||||
|
|
||||||
export function commitAiLoad(modelId: string): Promise<void> {
|
|
||||||
return invoke<void>("commit_ai_load", { modelId });
|
|
||||||
}
|
|
||||||
|
|
||||||
export function commitAiLocalModels(): Promise<LocalModelOption[]> {
|
|
||||||
return invoke<LocalModelOption[]>("commit_ai_local_models");
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface CommitAiGenerateOptions {
|
export interface CommitAiGenerateOptions {
|
||||||
notes?: string;
|
notes?: string;
|
||||||
provider: CommitAiProvider;
|
provider: CommitAiProvider;
|
||||||
localProfile?: CommitAiLocalProfile;
|
|
||||||
model?: string;
|
model?: string;
|
||||||
apiKey?: string;
|
apiKey?: string;
|
||||||
baseUrl?: string;
|
baseUrl?: string;
|
||||||
@@ -395,7 +379,6 @@ export function commitAiGenerate(path: string, options: CommitAiGenerateOptions)
|
|||||||
path,
|
path,
|
||||||
notes: options.notes,
|
notes: options.notes,
|
||||||
provider: options.provider,
|
provider: options.provider,
|
||||||
localProfile: options.localProfile,
|
|
||||||
model: options.model,
|
model: options.model,
|
||||||
apiKey: options.apiKey,
|
apiKey: options.apiKey,
|
||||||
baseUrl: options.baseUrl,
|
baseUrl: options.baseUrl,
|
||||||
@@ -422,8 +405,24 @@ export function commitAiSplit(path: string, options: CommitAiGenerateOptions): P
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function pull(path: string, username?: string, password?: string, strategy: PullStrategy = "merge", remote?: string, branch?: string): Promise<GitStatus> {
|
export function pull(
|
||||||
return invoke<GitStatus>("pull", { path, username: username ?? null, password: password ?? null, strategy, remote: remote || null, branch: branch || null });
|
path: string,
|
||||||
|
username?: string,
|
||||||
|
password?: string,
|
||||||
|
strategy: PullStrategy = "merge",
|
||||||
|
remote?: string,
|
||||||
|
branch?: string,
|
||||||
|
allowUnrelatedHistories = false,
|
||||||
|
): Promise<GitStatus> {
|
||||||
|
return invoke<GitStatus>("pull", {
|
||||||
|
path,
|
||||||
|
username: username ?? null,
|
||||||
|
password: password ?? null,
|
||||||
|
strategy,
|
||||||
|
remote: remote || null,
|
||||||
|
branch: branch || null,
|
||||||
|
allowUnrelatedHistories,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fetchRemote(path: string, username?: string, password?: string, prune = false, remote?: string): Promise<GitStatus> {
|
export function fetchRemote(path: string, username?: string, password?: string, prune = false, remote?: string): Promise<GitStatus> {
|
||||||
|
|||||||
+1
-17
@@ -9,9 +9,7 @@ export type FileStatusKind =
|
|||||||
|
|
||||||
export type GitIgnoreKind = "file" | "extension" | "folder";
|
export type GitIgnoreKind = "file" | "extension" | "folder";
|
||||||
|
|
||||||
export type CommitAiPhase = "idle" | "loading" | "ready" | "error";
|
export type CommitAiProvider = "openai" | "anthropic" | "custom";
|
||||||
export type CommitAiProvider = "local" | "openai" | "anthropic" | "custom";
|
|
||||||
export type CommitAiLocalProfile = "fast" | "balanced" | "detailed";
|
|
||||||
export type AppTheme = "system" | "light" | "dark";
|
export type AppTheme = "system" | "light" | "dark";
|
||||||
export type AppAppearance = "modern" | "classic" | "custom";
|
export type AppAppearance = "modern" | "classic" | "custom";
|
||||||
export type AppLanguage = "en" | "de";
|
export type AppLanguage = "en" | "de";
|
||||||
@@ -74,12 +72,6 @@ export interface CustomThemeColors {
|
|||||||
text: string;
|
text: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CommitAiStatus {
|
|
||||||
phase: CommitAiPhase;
|
|
||||||
model_id: string | null;
|
|
||||||
error: string | null;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type AiReviewRisk = "low" | "medium" | "high";
|
export type AiReviewRisk = "low" | "medium" | "high";
|
||||||
export type AiReviewSeverity = "critical" | "warning" | "info";
|
export type AiReviewSeverity = "critical" | "warning" | "info";
|
||||||
|
|
||||||
@@ -109,16 +101,8 @@ export interface AiCommitPlan {
|
|||||||
groups: AiCommitGroup[];
|
groups: AiCommitGroup[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface LocalModelOption {
|
|
||||||
id: string;
|
|
||||||
label: string;
|
|
||||||
approx_size_mb: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface AiSettings {
|
export interface AiSettings {
|
||||||
provider: CommitAiProvider;
|
provider: CommitAiProvider;
|
||||||
localModelId: string;
|
|
||||||
localProfile: CommitAiLocalProfile;
|
|
||||||
openaiModel: string;
|
openaiModel: string;
|
||||||
anthropicModel: string;
|
anthropicModel: string;
|
||||||
customBaseUrl: string;
|
customBaseUrl: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user