|
58 | 58 | let rsViewport = $state<HTMLElement>();
|
59 | 59 |
|
60 | 60 | const branchHasFiles = $derived(branch.files !== undefined && branch.files.length > 0);
|
61 |
| - const branchHasNoCommits = $derived(branch.validSeries.flatMap((s) => s.patches).length === 0); |
| 61 | + const branchHasNoCommits = $derived(branch.validBranches.flatMap((s) => s.patches).length === 0); |
62 | 62 |
|
63 | 63 | $effect(() => {
|
64 | 64 | if ($commitBoxOpen && branch.files.length === 0) {
|
|
79 | 79 | const upstreamPatches: DetailedCommit[] = [];
|
80 | 80 | const branchPatches: DetailedCommit[] = [];
|
81 | 81 |
|
82 |
| - branch.validSeries.map((series) => { |
| 82 | + branch.validBranches.map((series) => { |
83 | 83 | upstreamPatches.push(...series.upstreamPatches);
|
84 | 84 | branchPatches.push(...series.patches);
|
85 | 85 | hasConflicts = branchPatches.some((patch) => patch.conflicted);
|
|
111 | 111 | }
|
112 | 112 |
|
113 | 113 | async function checkMergeable() {
|
114 |
| - const nonArchivedBranches = branch.validSeries.filter((s) => !s.archived); |
| 114 | + const nonArchivedBranches = branch.validNonArchivedBranches; |
115 | 115 | if (nonArchivedBranches.length <= 1) return false;
|
116 | 116 |
|
117 | 117 | const seriesMergeResponse = await Promise.allSettled(
|
|
136 | 136 | // started last and therefore complete last.
|
137 | 137 | const forge = getForge();
|
138 | 138 | const checksMonitor = $derived(
|
139 |
| - $forge?.checksMonitor(branch.validSeries.filter((s) => !s.archived)[0]?.name ?? '') |
| 139 | + $forge?.checksMonitor(branch.validNonArchivedBranches[0]?.name ?? '') |
140 | 140 | );
|
141 | 141 | const checks = $derived(checksMonitor?.status);
|
142 | 142 |
|
|
149 | 149 | async function mergeAll(method: MergeMethod) {
|
150 | 150 | isMergingSeries = true;
|
151 | 151 | try {
|
152 |
| - const topBranch = branch.validSeries[0]; |
| 152 | + const topBranch = branch.validBranches[0]; |
153 | 153 |
|
154 | 154 | if (topBranch?.prNumber && $prService) {
|
155 | 155 | const targetBase = $baseBranch.branchName.replace(`${$baseBranch.remoteName}/`, '');
|
|
264 | 264 | >
|
265 | 265 | {branch.requiresForce
|
266 | 266 | ? 'Force push'
|
267 |
| - : branch.validSeries.length > 1 |
| 267 | + : branch.validBranches.length > 1 |
268 | 268 | ? 'Push All'
|
269 | 269 | : 'Push'}
|
270 | 270 | </Button>
|
|
0 commit comments