Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions src/popups/create_branch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ use crate::{
};
use anyhow::Result;
use asyncgit::sync::{self, RepoPathRef};
use crossterm::event::Event;
use crossterm::event::{Event, KeyCode, KeyEvent};
use easy_cast::Cast;
use ratatui::{layout::Rect, widgets::Paragraph, Frame};
use std::borrow::Cow;

pub struct CreateBranchPopup {
repo: RepoPathRef,
Expand Down Expand Up @@ -57,11 +58,28 @@ impl Component for CreateBranchPopup {

fn event(&mut self, ev: &Event) -> Result<EventState> {
if self.is_visible() {
if self.input.event(ev)?.is_consumed() {
let ev = match ev {
Event::Key(KeyEvent {
code: KeyCode::Char(c),
modifiers,
kind,
state,
}) => Cow::Owned(Event::Key(KeyEvent {
code: KeyCode::Char(strings::normalize_branch_name_char(
*c,
)),
modifiers: *modifiers,
kind: *kind,
state: *state,
})),
_ => Cow::Borrowed(ev),
};

if self.input.event(&ev)?.is_consumed() {
return Ok(EventState::Consumed);
}

if let Event::Key(e) = ev {
if let Event::Key(e) = ev.as_ref() {
if key_match(e, self.key_config.keys.enter) {
self.create_branch();
}
Expand Down
24 changes: 21 additions & 3 deletions src/popups/rename_branch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ use crate::{
};
use anyhow::Result;
use asyncgit::sync::{self, RepoPathRef};
use crossterm::event::Event;
use crossterm::event::{Event, KeyCode, KeyEvent};
use easy_cast::Cast;
use ratatui::{layout::Rect, widgets::Paragraph, Frame};
use std::borrow::Cow;

pub struct RenameBranchPopup {
repo: RepoPathRef,
Expand Down Expand Up @@ -57,11 +58,28 @@ impl Component for RenameBranchPopup {

fn event(&mut self, ev: &Event) -> Result<EventState> {
if self.is_visible() {
if self.input.event(ev)?.is_consumed() {
let ev = match ev {
Event::Key(KeyEvent {
code: KeyCode::Char(c),
modifiers,
kind,
state,
}) => Cow::Owned(Event::Key(KeyEvent {
code: KeyCode::Char(strings::normalize_branch_name_char(
*c,
)),
modifiers: *modifiers,
kind: *kind,
state: *state,
})),
_ => Cow::Borrowed(ev),
};

if self.input.event(&ev)?.is_consumed() {
return Ok(EventState::Consumed);
}

if let Event::Key(e) = ev {
if let Event::Key(e) = ev.as_ref() {
if key_match(e, self.key_config.keys.enter) {
self.rename_branch();
}
Expand Down
23 changes: 23 additions & 0 deletions src/strings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,13 @@ pub fn ellipsis_trim_start(s: &str, width: usize) -> Cow<'_, str> {
}
}

pub const fn normalize_branch_name_char(c: char) -> char {
match c {
' ' => '-',
c => c,
}
}

#[derive(PartialEq, Eq, Clone, Copy)]
pub enum CheckoutOptions {
KeepLocalChanges,
Expand Down Expand Up @@ -1934,3 +1941,19 @@ pub mod commands {
)
}
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn test_spaces_are_replaced_by_dashes_in_branch_name() {
let input = "feature/auto replace spaces in branch name";
let output: String =
input.chars().map(normalize_branch_name_char).collect();
assert_eq!(
output,
"feature/auto-replace-spaces-in-branch-name"
);
}
}