๐Ÿ“ฆ juspay / workforge

๐Ÿ“„ ListDisplay.ts ยท 273 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273import chalk from 'chalk';
import path from 'path';
import { WorktreeInfo } from '../types/index.js';
import { Logger } from './Logger.js';

/**
 * List Display
 *
 * Displays worktree information in various formats:
 * - Table format (default)
 * - JSON format (for scripting)
 * - Simple format (compact)
 */
export class ListDisplay {
  private logger: Logger;

  constructor(logger?: Logger) {
    this.logger = logger || new Logger();
  }

  /**
   * Display worktrees in specified format
   *
   * @param worktrees - Array of worktree information
   * @param format - Display format
   * @param sortBy - Sort field
   */
  show(
    worktrees: WorktreeInfo[],
    format: 'table' | 'json' | 'simple' = 'table',
    sortBy?: 'name' | 'path' | 'age'
  ): void {
    // Sort if requested
    const sorted = sortBy ? this.sortWorktrees(worktrees, sortBy) : worktrees;

    switch (format) {
      case 'json':
        this.showJSON(sorted);
        break;
      case 'simple':
        this.showSimple(sorted);
        break;
      default:
        this.showTable(sorted);
    }
  }

  /**
   * Display worktrees in table format
   */
  private showTable(worktrees: WorktreeInfo[]): void {
    if (worktrees.length === 0) {
      this.logger.warning('No worktrees found');
      return;
    }

    this.logger.newline();
    this.logger.header('๐Ÿ“‹ Worktrees');
    this.logger.newline();

    // Define column headers and widths
    const headers = ['Branch', 'Path', 'Commit', 'Status'];
    const widths = [25, 45, 12, 15];

    // Print headers
    this.logger.tableRow(
      headers.map(h => chalk.bold(h)),
      widths
    );
    this.logger.separator();

    // Print rows
    for (const worktree of worktrees) {
      const branch = worktree.isMainRepo
        ? chalk.cyan('(main)')
        : chalk.cyan(worktree.branchName);

      const relativePath = this.getRelativePath(worktree.path);
      const pathDisplay = this.truncatePath(relativePath, 40);

      const commit = chalk.gray(this.truncate(worktree.commitHash || '', 10));

      const status = this.getStatusBadge(worktree);

      this.logger.tableRow([branch, pathDisplay, commit, status], widths);
    }

    this.logger.separator();
    this.logger.newline();
    this.logger.dim(`Total: ${worktrees.length} worktree${worktrees.length === 1 ? '' : 's'}`);
    this.logger.newline();
  }

  /**
   * Display worktrees in JSON format
   */
  private showJSON(worktrees: WorktreeInfo[]): void {
    const output = worktrees.map(w => ({
      branchName: w.branchName,
      path: w.path,
      relativePath: this.getRelativePath(w.path),
      commitHash: w.commitHash,
      isMainRepo: w.isMainRepo,
      isLocked: w.isLocked,
      isPrunable: w.isPrunable,
      remoteUrl: w.remoteUrl
    }));

    console.log(JSON.stringify(output, null, 2));
  }

  /**
   * Display worktrees in simple format
   */
  private showSimple(worktrees: WorktreeInfo[]): void {
    if (worktrees.length === 0) {
      this.logger.warning('No worktrees found');
      return;
    }

    for (const worktree of worktrees) {
      const relativePath = this.getRelativePath(worktree.path);
      if (worktree.isMainRepo) {
        this.logger.info(chalk.cyan('(main)') + ` - ${relativePath}`);
      } else {
        this.logger.info(chalk.cyan(worktree.branchName) + ` - ${relativePath}`);
      }
    }
  }

  /**
   * Display detailed worktree information
   */
  showDetailed(worktree: WorktreeInfo): void {
    this.logger.newline();
    this.logger.header('Worktree Details');
    this.logger.newline();

    this.logger.keyValue('Branch', worktree.branchName);
    this.logger.keyValue('Path', worktree.path);

    if (worktree.commitHash) {
      this.logger.keyValue('Commit', worktree.commitHash);
    }

    if (worktree.remoteUrl) {
      this.logger.keyValue('Remote', worktree.remoteUrl);
    }

    this.logger.newline();
    this.logger.subheader('Status:');

    if (worktree.isMainRepo) {
      this.logger.listItem(chalk.cyan('Main repository'));
    }

    if (worktree.isLocked) {
      this.logger.listItem(chalk.yellow('Locked'));
    }

    if (worktree.isPrunable) {
      this.logger.listItem(chalk.red('Prunable (directory missing)'));
    }

    if (!worktree.isMainRepo && !worktree.isLocked && !worktree.isPrunable) {
      this.logger.listItem(chalk.green('Active'));
    }

    this.logger.newline();
  }

  /**
   * Display worktree count summary
   */
  showSummary(totalCount: number, mainRepoCount: number, worktreeCount: number): void {
    this.logger.newline();
    this.logger.subheader('Summary:');
    this.logger.listItem(`Total: ${totalCount}`);
    this.logger.listItem(`Main repositories: ${mainRepoCount}`);
    this.logger.listItem(`Worktrees: ${worktreeCount}`);
    this.logger.newline();
  }

  /**
   * Get status badge for worktree
   */
  private getStatusBadge(worktree: WorktreeInfo): string {
    if (worktree.isMainRepo) {
      return chalk.cyan('MAIN');
    }

    if (worktree.isPrunable) {
      return chalk.red('PRUNABLE');
    }

    if (worktree.isLocked) {
      return chalk.yellow('LOCKED');
    }

    return chalk.green('ACTIVE');
  }

  /**
   * Sort worktrees
   */
  private sortWorktrees(
    worktrees: WorktreeInfo[],
    sortBy: 'name' | 'path' | 'age'
  ): WorktreeInfo[] {
    const sorted = [...worktrees];

    switch (sortBy) {
      case 'name':
        sorted.sort((a, b) => a.branchName.localeCompare(b.branchName));
        break;

      case 'path':
        sorted.sort((a, b) => a.path.localeCompare(b.path));
        break;

      case 'age':
        // Sort by commit hash (not perfect, but reasonable approximation)
        sorted.sort((a, b) => {
          if (!a.commitHash) return 1;
          if (!b.commitHash) return -1;
          return b.commitHash.localeCompare(a.commitHash);
        });
        break;
    }

    return sorted;
  }

  /**
   * Truncate path for display
   */
  private truncatePath(path: string, maxLength: number): string {
    if (path.length <= maxLength) {
      return path;
    }

    // Try to keep the most relevant parts
    const parts = path.split('/');
    if (parts.length > 3) {
      const first = parts[0];
      const last = parts[parts.length - 1];
      const secondLast = parts[parts.length - 2];

      return `${first}/.../${secondLast}/${last}`;
    }

    return this.truncate(path, maxLength);
  }

  /**
   * Truncate string for display
   */
  private truncate(str: string, maxLength: number): string {
    if (str.length <= maxLength) {
      return str;
    }

    return str.substring(0, maxLength - 3) + '...';
  }

  /**
   * Get relative path from current directory
   */
  private getRelativePath(absolutePath: string): string {
    return path.relative(process.cwd(), absolutePath);
  }
}