spawn-term 3.0.3 → 3.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/cjs/components/App.js +29 -63
  2. package/dist/cjs/components/App.js.map +1 -1
  3. package/dist/cjs/components/ErrorFooter.js +120 -0
  4. package/dist/cjs/components/ErrorFooter.js.map +1 -0
  5. package/dist/cjs/components/ExpandedOutput.js +0 -2
  6. package/dist/cjs/components/ExpandedOutput.js.map +1 -1
  7. package/dist/cjs/components/StatusBar.js +22 -33
  8. package/dist/cjs/components/StatusBar.js.map +1 -1
  9. package/dist/cjs/src/components/ErrorFooter.d.ts +11 -0
  10. package/dist/cjs/src/state/processStore.d.ts +9 -6
  11. package/dist/cjs/state/processStore.js +23 -20
  12. package/dist/cjs/state/processStore.js.map +1 -1
  13. package/dist/esm/components/App.js +29 -63
  14. package/dist/esm/components/App.js.map +1 -1
  15. package/dist/esm/components/ErrorFooter.js +95 -0
  16. package/dist/esm/components/ErrorFooter.js.map +1 -0
  17. package/dist/esm/components/ExpandedOutput.js +0 -2
  18. package/dist/esm/components/ExpandedOutput.js.map +1 -1
  19. package/dist/esm/components/StatusBar.js +22 -33
  20. package/dist/esm/components/StatusBar.js.map +1 -1
  21. package/dist/esm/src/components/ErrorFooter.d.ts +11 -0
  22. package/dist/esm/src/state/processStore.d.ts +9 -6
  23. package/dist/esm/state/processStore.js +19 -18
  24. package/dist/esm/state/processStore.js.map +1 -1
  25. package/package.json +1 -1
  26. package/dist/cjs/components/ErrorDetailModal.js +0 -115
  27. package/dist/cjs/components/ErrorDetailModal.js.map +0 -1
  28. package/dist/cjs/components/ErrorListModal.js +0 -135
  29. package/dist/cjs/components/ErrorListModal.js.map +0 -1
  30. package/dist/cjs/src/components/ErrorDetailModal.d.ts +0 -8
  31. package/dist/cjs/src/components/ErrorListModal.d.ts +0 -8
  32. package/dist/esm/components/ErrorDetailModal.js +0 -99
  33. package/dist/esm/components/ErrorDetailModal.js.map +0 -1
  34. package/dist/esm/components/ErrorListModal.js +0 -116
  35. package/dist/esm/components/ErrorListModal.js.map +0 -1
  36. package/dist/esm/src/components/ErrorDetailModal.d.ts +0 -8
  37. package/dist/esm/src/components/ErrorListModal.d.ts +0 -8
@@ -1,116 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Box, Text, useStdout } from 'ink';
3
- import { memo } from 'react';
4
- import figures from '../lib/figures.js';
5
- import { LineType } from '../types.js';
6
- function truncate(str, maxLength) {
7
- if (str.length <= maxLength) return str;
8
- return `${str.slice(0, maxLength - 1)}…`;
9
- }
10
- function getErrorLineCount(process) {
11
- return process.lines.filter((l)=>l.type === LineType.stderr).length;
12
- }
13
- export default /*#__PURE__*/ memo(function ErrorListModal({ errors, selectedIndex, totalErrorLines }) {
14
- const { stdout } = useStdout();
15
- const width = (stdout === null || stdout === void 0 ? void 0 : stdout.columns) || 80;
16
- const innerWidth = width - 4; // 2 chars padding each side
17
- const borderH = '─'.repeat(width - 2);
18
- const title = ' Errors ';
19
- const titleBorder = `┌${title}${borderH.slice(title.length + 1)}┐`;
20
- return /*#__PURE__*/ _jsxs(Box, {
21
- flexDirection: "column",
22
- children: [
23
- /*#__PURE__*/ _jsx(Text, {
24
- children: titleBorder
25
- }),
26
- /*#__PURE__*/ _jsx(Box, {
27
- paddingX: 1,
28
- children: /*#__PURE__*/ _jsxs(Text, {
29
- children: [
30
- errors.length,
31
- " process",
32
- errors.length !== 1 ? 'es' : '',
33
- " failed (",
34
- totalErrorLines,
35
- " error line",
36
- totalErrorLines !== 1 ? 's' : '',
37
- " total)"
38
- ]
39
- })
40
- }),
41
- /*#__PURE__*/ _jsx(Box, {
42
- paddingX: 1,
43
- children: /*#__PURE__*/ _jsx(Text, {
44
- children: " "
45
- })
46
- }),
47
- errors.map((error, index)=>{
48
- const isSelected = index === selectedIndex;
49
- const indicator = isSelected ? figures.pointer : ' ';
50
- const name = error.group || error.title;
51
- const lineCount = getErrorLineCount(error);
52
- const lineText = `${lineCount} line${lineCount !== 1 ? 's' : ''}`;
53
- // Calculate available space for name
54
- const prefixLen = 3; // indicator + space + space
55
- const suffixLen = lineText.length + 2; // space + lineText
56
- const maxNameLen = innerWidth - prefixLen - suffixLen;
57
- const truncatedName = truncate(name, maxNameLen);
58
- return /*#__PURE__*/ _jsxs(Box, {
59
- paddingX: 1,
60
- children: [
61
- /*#__PURE__*/ _jsxs(Text, {
62
- color: isSelected ? 'cyan' : undefined,
63
- bold: isSelected,
64
- children: [
65
- indicator,
66
- " ",
67
- truncatedName
68
- ]
69
- }),
70
- /*#__PURE__*/ _jsx(Box, {
71
- flexGrow: 1
72
- }),
73
- /*#__PURE__*/ _jsx(Text, {
74
- dimColor: true,
75
- children: lineText
76
- })
77
- ]
78
- }, error.id);
79
- }),
80
- /*#__PURE__*/ _jsx(Box, {
81
- paddingX: 1,
82
- children: /*#__PURE__*/ _jsx(Text, {
83
- children: " "
84
- })
85
- }),
86
- /*#__PURE__*/ _jsxs(Text, {
87
- children: [
88
- "├",
89
- borderH,
90
- "┤"
91
- ]
92
- }),
93
- /*#__PURE__*/ _jsxs(Box, {
94
- paddingX: 1,
95
- justifyContent: "space-between",
96
- children: [
97
- /*#__PURE__*/ _jsx(Text, {
98
- dimColor: true,
99
- children: "[↑↓] navigate [Enter] view details"
100
- }),
101
- /*#__PURE__*/ _jsx(Text, {
102
- dimColor: true,
103
- children: "[Esc] close"
104
- })
105
- ]
106
- }),
107
- /*#__PURE__*/ _jsxs(Text, {
108
- children: [
109
- "└",
110
- borderH,
111
- "┘"
112
- ]
113
- })
114
- ]
115
- });
116
- });
@@ -1 +0,0 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/node/spawn-term/src/components/ErrorListModal.tsx"],"sourcesContent":["import { Box, Text, useStdout } from 'ink';\nimport { memo } from 'react';\nimport figures from '../lib/figures.ts';\nimport type { ChildProcess } from '../types.ts';\nimport { LineType } from '../types.ts';\n\ntype Props = {\n errors: ChildProcess[];\n selectedIndex: number;\n totalErrorLines: number;\n};\n\nfunction truncate(str: string, maxLength: number): string {\n if (str.length <= maxLength) return str;\n return `${str.slice(0, maxLength - 1)}…`;\n}\n\nfunction getErrorLineCount(process: ChildProcess): number {\n return process.lines.filter((l) => l.type === LineType.stderr).length;\n}\n\nexport default memo(function ErrorListModal({ errors, selectedIndex, totalErrorLines }: Props) {\n const { stdout } = useStdout();\n const width = stdout?.columns || 80;\n const innerWidth = width - 4; // 2 chars padding each side\n\n const borderH = '─'.repeat(width - 2);\n const title = ' Errors ';\n const titleBorder = `┌${title}${borderH.slice(title.length + 1)}┐`;\n\n return (\n <Box flexDirection=\"column\">\n {/* Top border with title */}\n <Text>{titleBorder}</Text>\n\n {/* Summary */}\n <Box paddingX={1}>\n <Text>\n {errors.length} process{errors.length !== 1 ? 'es' : ''} failed ({totalErrorLines} error line\n {totalErrorLines !== 1 ? 's' : ''} total)\n </Text>\n </Box>\n\n {/* Empty line */}\n <Box paddingX={1}>\n <Text> </Text>\n </Box>\n\n {/* Error list */}\n {errors.map((error, index) => {\n const isSelected = index === selectedIndex;\n const indicator = isSelected ? figures.pointer : ' ';\n const name = error.group || error.title;\n const lineCount = getErrorLineCount(error);\n const lineText = `${lineCount} line${lineCount !== 1 ? 's' : ''}`;\n\n // Calculate available space for name\n const prefixLen = 3; // indicator + space + space\n const suffixLen = lineText.length + 2; // space + lineText\n const maxNameLen = innerWidth - prefixLen - suffixLen;\n const truncatedName = truncate(name, maxNameLen);\n\n return (\n <Box key={error.id} paddingX={1}>\n <Text color={isSelected ? 'cyan' : undefined} bold={isSelected}>\n {indicator} {truncatedName}\n </Text>\n <Box flexGrow={1} />\n <Text dimColor>{lineText}</Text>\n </Box>\n );\n })}\n\n {/* Empty line for padding */}\n <Box paddingX={1}>\n <Text> </Text>\n </Box>\n\n {/* Bottom border with hints */}\n <Text>├{borderH}┤</Text>\n <Box paddingX={1} justifyContent=\"space-between\">\n <Text dimColor>[↑↓] navigate [Enter] view details</Text>\n <Text dimColor>[Esc] close</Text>\n </Box>\n <Text>└{borderH}┘</Text>\n </Box>\n );\n});\n"],"names":["Box","Text","useStdout","memo","figures","LineType","truncate","str","maxLength","length","slice","getErrorLineCount","process","lines","filter","l","type","stderr","ErrorListModal","errors","selectedIndex","totalErrorLines","stdout","width","columns","innerWidth","borderH","repeat","title","titleBorder","flexDirection","paddingX","map","error","index","isSelected","indicator","pointer","name","group","lineCount","lineText","prefixLen","suffixLen","maxNameLen","truncatedName","color","undefined","bold","flexGrow","dimColor","id","justifyContent"],"mappings":";AAAA,SAASA,GAAG,EAAEC,IAAI,EAAEC,SAAS,QAAQ,MAAM;AAC3C,SAASC,IAAI,QAAQ,QAAQ;AAC7B,OAAOC,aAAa,oBAAoB;AAExC,SAASC,QAAQ,QAAQ,cAAc;AAQvC,SAASC,SAASC,GAAW,EAAEC,SAAiB;IAC9C,IAAID,IAAIE,MAAM,IAAID,WAAW,OAAOD;IACpC,OAAO,GAAGA,IAAIG,KAAK,CAAC,GAAGF,YAAY,GAAG,CAAC,CAAC;AAC1C;AAEA,SAASG,kBAAkBC,OAAqB;IAC9C,OAAOA,QAAQC,KAAK,CAACC,MAAM,CAAC,CAACC,IAAMA,EAAEC,IAAI,KAAKX,SAASY,MAAM,EAAER,MAAM;AACvE;AAEA,6BAAeN,KAAK,SAASe,eAAe,EAAEC,MAAM,EAAEC,aAAa,EAAEC,eAAe,EAAS;IAC3F,MAAM,EAAEC,MAAM,EAAE,GAAGpB;IACnB,MAAMqB,QAAQD,CAAAA,mBAAAA,6BAAAA,OAAQE,OAAO,KAAI;IACjC,MAAMC,aAAaF,QAAQ,GAAG,4BAA4B;IAE1D,MAAMG,UAAU,IAAIC,MAAM,CAACJ,QAAQ;IACnC,MAAMK,QAAQ;IACd,MAAMC,cAAc,CAAC,CAAC,EAAED,QAAQF,QAAQhB,KAAK,CAACkB,MAAMnB,MAAM,GAAG,GAAG,CAAC,CAAC;IAElE,qBACE,MAACT;QAAI8B,eAAc;;0BAEjB,KAAC7B;0BAAM4B;;0BAGP,KAAC7B;gBAAI+B,UAAU;0BACb,cAAA,MAAC9B;;wBACEkB,OAAOV,MAAM;wBAAC;wBAASU,OAAOV,MAAM,KAAK,IAAI,OAAO;wBAAG;wBAAUY;wBAAgB;wBACjFA,oBAAoB,IAAI,MAAM;wBAAG;;;;0BAKtC,KAACrB;gBAAI+B,UAAU;0BACb,cAAA,KAAC9B;8BAAK;;;YAIPkB,OAAOa,GAAG,CAAC,CAACC,OAAOC;gBAClB,MAAMC,aAAaD,UAAUd;gBAC7B,MAAMgB,YAAYD,aAAa/B,QAAQiC,OAAO,GAAG;gBACjD,MAAMC,OAAOL,MAAMM,KAAK,IAAIN,MAAML,KAAK;gBACvC,MAAMY,YAAY7B,kBAAkBsB;gBACpC,MAAMQ,WAAW,GAAGD,UAAU,KAAK,EAAEA,cAAc,IAAI,MAAM,IAAI;gBAEjE,qCAAqC;gBACrC,MAAME,YAAY,GAAG,4BAA4B;gBACjD,MAAMC,YAAYF,SAAShC,MAAM,GAAG,GAAG,mBAAmB;gBAC1D,MAAMmC,aAAanB,aAAaiB,YAAYC;gBAC5C,MAAME,gBAAgBvC,SAASgC,MAAMM;gBAErC,qBACE,MAAC5C;oBAAmB+B,UAAU;;sCAC5B,MAAC9B;4BAAK6C,OAAOX,aAAa,SAASY;4BAAWC,MAAMb;;gCACjDC;gCAAU;gCAAES;;;sCAEf,KAAC7C;4BAAIiD,UAAU;;sCACf,KAAChD;4BAAKiD,QAAQ;sCAAET;;;mBALRR,MAAMkB,EAAE;YAQtB;0BAGA,KAACnD;gBAAI+B,UAAU;0BACb,cAAA,KAAC9B;8BAAK;;;0BAIR,MAACA;;oBAAK;oBAAEyB;oBAAQ;;;0BAChB,MAAC1B;gBAAI+B,UAAU;gBAAGqB,gBAAe;;kCAC/B,KAACnD;wBAAKiD,QAAQ;kCAAC;;kCACf,KAACjD;wBAAKiD,QAAQ;kCAAC;;;;0BAEjB,MAACjD;;oBAAK;oBAAEyB;oBAAQ;;;;;AAGtB,GAAG"}
@@ -1,8 +0,0 @@
1
- import type { ChildProcess } from '../types.js';
2
- type Props = {
3
- error: ChildProcess;
4
- currentIndex: number;
5
- totalErrors: number;
6
- };
7
- declare const _default: import("react").NamedExoticComponent<Props>;
8
- export default _default;
@@ -1,8 +0,0 @@
1
- import type { ChildProcess } from '../types.js';
2
- type Props = {
3
- errors: ChildProcess[];
4
- selectedIndex: number;
5
- totalErrorLines: number;
6
- };
7
- declare const _default: import("react").NamedExoticComponent<Props>;
8
- export default _default;