Add branch creation and file history search
Implement the ability to create new local branches directly from the application's UI. This includes a new backend command to handle branch creation with validation and a frontend form in the branch panel. Additionally, extend the global search dialog to include a "Files" tab. Users can now search for files by name or path within the repository. Selecting a file in the search results displays its full commit history, with options to diff the file at a specific commit or restore it to that version.
This commit is contained in:
+305
-1
@@ -715,6 +715,88 @@
|
||||
|
||||
/* --- Branch list --- */
|
||||
|
||||
.branch-head-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
.branch-create-toggle {
|
||||
width: 26px;
|
||||
min-width: 26px;
|
||||
min-height: 26px;
|
||||
padding: 0;
|
||||
border-color: rgba(65,209,255,0.2);
|
||||
border-radius: 7px;
|
||||
color: var(--color-ink-dim);
|
||||
background: rgba(65,209,255,0.06);
|
||||
}
|
||||
.branch-create-toggle:hover:not(:disabled) {
|
||||
border-color: rgba(65,209,255,0.45);
|
||||
color: #ffffff;
|
||||
background: rgba(65,209,255,0.13);
|
||||
}
|
||||
|
||||
.branch-list { gap: 8px; }
|
||||
|
||||
.branch-create-form {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr) auto auto;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
margin-bottom: 8px;
|
||||
padding: 7px 8px;
|
||||
border: 1px solid rgba(65,209,255,0.22);
|
||||
border-radius: 8px;
|
||||
background: linear-gradient(90deg, rgba(65,209,255,0.08), rgba(100,108,255,0.07));
|
||||
}
|
||||
.branch-create-form svg { color: var(--color-accent); }
|
||||
.branch-create-form input {
|
||||
height: 30px;
|
||||
min-width: 0;
|
||||
border-radius: 7px;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 12px;
|
||||
}
|
||||
.branch-create-action {
|
||||
width: 28px;
|
||||
min-width: 28px;
|
||||
min-height: 28px;
|
||||
padding: 0;
|
||||
border-radius: 7px;
|
||||
}
|
||||
.branch-create-action.confirm {
|
||||
border-color: rgba(78,202,118,0.34);
|
||||
color: #6ee090;
|
||||
background: rgba(78,202,118,0.11);
|
||||
}
|
||||
|
||||
.branch-group { display: grid; gap: 4px; min-width: 0; }
|
||||
.branch-group + .branch-group { margin-top: 8px; }
|
||||
|
||||
.branch-group-toggle {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr) auto;
|
||||
justify-content: stretch;
|
||||
width: 100%;
|
||||
min-height: 28px;
|
||||
padding: 4px 6px;
|
||||
border-color: transparent;
|
||||
border-radius: 7px;
|
||||
background: rgba(255,255,255,0.02);
|
||||
color: var(--color-ink-faint);
|
||||
font-size: 10px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.07em;
|
||||
text-align: left;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.branch-group-toggle:hover:not(:disabled) {
|
||||
border-color: var(--color-border-subtle);
|
||||
background: rgba(255,255,255,0.05);
|
||||
color: var(--color-ink-muted);
|
||||
}
|
||||
.branch-group-toggle svg { color: var(--color-ink-faint); }
|
||||
|
||||
.branch-group-label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -738,6 +820,12 @@
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.branch-empty {
|
||||
padding: 8px 10px;
|
||||
color: var(--color-ink-faint);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.branch-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
@@ -1175,11 +1263,38 @@
|
||||
|
||||
.global-search-body {
|
||||
display: grid;
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
grid-template-rows: auto auto minmax(0, 1fr);
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.global-search-tabs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 9px 12px;
|
||||
border-bottom: 1px solid var(--color-border-subtle);
|
||||
background: rgba(7, 8, 16, 0.34);
|
||||
}
|
||||
.global-search-tab {
|
||||
min-height: 30px;
|
||||
padding: 0 12px;
|
||||
border-color: transparent;
|
||||
color: var(--color-ink-dim);
|
||||
background: transparent;
|
||||
font-size: 12px;
|
||||
font-weight: 800;
|
||||
}
|
||||
.global-search-tab:hover:not(:disabled) {
|
||||
border-color: rgba(65,209,255,0.22);
|
||||
background: rgba(65,209,255,0.07);
|
||||
}
|
||||
.global-search-tab.active {
|
||||
border-color: rgba(65,209,255,0.36);
|
||||
color: #ffffff;
|
||||
background: linear-gradient(135deg, rgba(100,108,255,0.26), rgba(65,209,255,0.1));
|
||||
}
|
||||
|
||||
.global-search-form {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
@@ -1206,6 +1321,11 @@
|
||||
white-space: pre;
|
||||
overflow: auto;
|
||||
}
|
||||
.global-search-query input {
|
||||
height: 40px;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.global-search-options {
|
||||
display: grid;
|
||||
@@ -1342,6 +1462,185 @@
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.file-search-form { grid-template-columns: minmax(0, 1fr); }
|
||||
.file-search-results {
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.file-search-split {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
|
||||
height: 100%;
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
}
|
||||
.file-search-column {
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
padding: 10px;
|
||||
border-right: 1px solid var(--color-border-subtle);
|
||||
}
|
||||
.file-search-list { display: grid; gap: 7px; }
|
||||
.file-search-hit {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr) auto auto;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
min-height: 48px;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid var(--color-border-subtle);
|
||||
border-radius: 8px;
|
||||
background: var(--color-surface-raised);
|
||||
text-align: left;
|
||||
}
|
||||
.file-search-hit:hover:not(:disabled) {
|
||||
border-color: rgba(65,209,255,0.3);
|
||||
background: var(--color-surface-hover);
|
||||
}
|
||||
.file-search-hit.active {
|
||||
border-color: rgba(90,140,248,0.42);
|
||||
background: rgba(90,140,248,0.11);
|
||||
}
|
||||
.file-search-icon {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
color: var(--color-accent);
|
||||
}
|
||||
.file-search-icon .language-icon {
|
||||
display: block;
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
fill: currentColor;
|
||||
}
|
||||
.file-search-icon .language-icon path { fill: currentColor; }
|
||||
.file-search-main {
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
min-width: 0;
|
||||
}
|
||||
.file-search-main strong {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--color-ink);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 12.5px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.file-search-main span {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--color-ink-faint);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 11.5px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.file-search-action {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
color: var(--color-accent);
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.file-search-history {
|
||||
display: grid;
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
background: rgba(7, 8, 16, 0.18);
|
||||
}
|
||||
.file-search-history-head {
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
min-width: 0;
|
||||
padding: 10px 12px;
|
||||
border-bottom: 1px solid var(--color-border-subtle);
|
||||
background: rgba(0,0,0,0.12);
|
||||
}
|
||||
.file-search-history-head span {
|
||||
color: var(--color-ink-faint);
|
||||
font-size: 10.5px;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
.file-search-history-head strong {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--color-ink);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 12.5px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.file-search-history-list {
|
||||
display: grid;
|
||||
align-content: start;
|
||||
gap: 8px;
|
||||
min-width: 0;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
padding: 10px;
|
||||
}
|
||||
.file-search-history-row {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
min-width: 0;
|
||||
padding: 9px;
|
||||
border: 1px solid var(--color-border-subtle);
|
||||
border-radius: 8px;
|
||||
background: var(--color-surface-raised);
|
||||
}
|
||||
.file-search-history-main {
|
||||
display: grid;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
align-items: center;
|
||||
gap: 5px 8px;
|
||||
min-width: 0;
|
||||
}
|
||||
.file-search-history-main .hash {
|
||||
padding: 2px 7px;
|
||||
border: 1px solid rgba(90,140,248,0.22);
|
||||
border-radius: 6px;
|
||||
color: var(--color-accent);
|
||||
background: rgba(90,140,248,0.13);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
}
|
||||
.file-search-history-main strong {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--color-ink);
|
||||
font-size: 12.5px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.file-search-history-main > span:last-child {
|
||||
grid-column: 1 / -1;
|
||||
overflow: hidden;
|
||||
color: var(--color-ink-faint);
|
||||
font-size: 11.5px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.file-search-history-actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
/* --- Credential dialog --- */
|
||||
|
||||
.cred-card {
|
||||
@@ -1929,6 +2228,11 @@
|
||||
.dialog-body { grid-template-columns: 1fr; grid-template-rows: minmax(120px, 0.4fr) minmax(0, 1fr); }
|
||||
.compare-dialog .dialog-body { grid-template-columns: 1fr; grid-template-rows: minmax(120px, 0.4fr) minmax(0, 1fr); }
|
||||
.global-search-options { grid-template-columns: 1fr; }
|
||||
.file-search-split { grid-template-columns: 1fr; grid-template-rows: minmax(150px, 0.9fr) minmax(220px, 1fr); }
|
||||
.file-search-column { border-right: none; border-bottom: 1px solid var(--color-border-subtle); }
|
||||
.file-search-hit { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
|
||||
.file-search-hit .status-badge,
|
||||
.file-search-action { grid-column: 2; justify-self: start; }
|
||||
.dialog-files { border-right: none; border-bottom: 1px solid var(--color-border-subtle); }
|
||||
.branch-actions { flex-direction: row; justify-content: flex-start; }
|
||||
.tb-action-label { display: none; }
|
||||
|
||||
Reference in New Issue
Block a user