paean 0.8.1 → 0.8.2
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.
- package/dist/ui/components/Spinner.d.ts +1 -1
- package/dist/ui/components/Spinner.d.ts.map +1 -1
- package/dist/ui/components/Spinner.js +49 -39
- package/dist/ui/components/Spinner.js.map +1 -1
- package/dist/ui/theme/branding.js +7 -7
- package/dist/ui/theme/ink-theme.d.ts +1 -0
- package/dist/ui/theme/ink-theme.d.ts.map +1 -1
- package/dist/ui/theme/ink-theme.js +16 -6
- package/dist/ui/theme/ink-theme.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Spinner Component
|
|
3
3
|
* Loading indicator with Paean brand styling
|
|
4
|
-
* Features: Animated thinking indicator, tool call status, MCP status
|
|
4
|
+
* Features: Animated thinking indicator with glow effect, tool call status, MCP status
|
|
5
5
|
*/
|
|
6
6
|
import React from 'react';
|
|
7
7
|
interface SpinnerProps {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Spinner.d.ts","sourceRoot":"","sources":["../../../src/ui/components/Spinner.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAuC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Spinner.d.ts","sourceRoot":"","sources":["../../../src/ui/components/Spinner.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAuC,MAAM,OAAO,CAAC;AAI5D,UAAU,YAAY;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,UAAU,GAAG,MAAM,GAAG,KAAK,GAAG,WAAW,CAAC;IACjD,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAwF1C,CAAC"}
|
|
@@ -1,42 +1,35 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
/**
|
|
3
3
|
* Spinner Component
|
|
4
4
|
* Loading indicator with Paean brand styling
|
|
5
|
-
* Features: Animated thinking indicator, tool call status, MCP status
|
|
5
|
+
* Features: Animated thinking indicator with glow effect, tool call status, MCP status
|
|
6
6
|
*/
|
|
7
7
|
import { useState, useEffect, useMemo } from 'react';
|
|
8
8
|
import { Box, Text } from 'ink';
|
|
9
|
-
import
|
|
10
|
-
import { SYMBOLS, INK_COLORS, THINKING_FRAMES } from '../theme/ink-theme.js';
|
|
9
|
+
import { SYMBOLS, INK_COLORS, THINKING_FRAMES, THINKING_MESSAGES } from '../theme/ink-theme.js';
|
|
11
10
|
export const Spinner = ({ label = 'Thinking...', type = 'thinking', charCount }) => {
|
|
12
11
|
const [frameIndex, setFrameIndex] = useState(0);
|
|
13
|
-
const [
|
|
14
|
-
|
|
15
|
-
const barWidth = 40;
|
|
16
|
-
const highlightBar = useMemo(() => {
|
|
17
|
-
let bar = '';
|
|
18
|
-
for (let i = 0; i < barWidth; i++) {
|
|
19
|
-
const dist = Math.abs(i - highlightPos);
|
|
20
|
-
if (dist === 0) {
|
|
21
|
-
bar += '━';
|
|
22
|
-
}
|
|
23
|
-
else if (dist <= 2) {
|
|
24
|
-
bar += '━';
|
|
25
|
-
}
|
|
26
|
-
else {
|
|
27
|
-
bar += '─';
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
return bar;
|
|
31
|
-
}, [highlightPos]);
|
|
12
|
+
const [glowIntensity, setGlowIntensity] = useState(0);
|
|
13
|
+
const [messageIndex, setMessageIndex] = useState(0);
|
|
32
14
|
// Animation effect
|
|
33
15
|
useEffect(() => {
|
|
34
16
|
const interval = setInterval(() => {
|
|
35
17
|
setFrameIndex(prev => (prev + 1) % THINKING_FRAMES.length);
|
|
36
|
-
|
|
37
|
-
|
|
18
|
+
// Glow intensity cycles 0-4 for pulsing effect
|
|
19
|
+
setGlowIntensity(prev => (prev + 1) % 5);
|
|
20
|
+
}, 100);
|
|
38
21
|
return () => clearInterval(interval);
|
|
39
22
|
}, []);
|
|
23
|
+
// Cycle through thinking messages every 2 seconds
|
|
24
|
+
useEffect(() => {
|
|
25
|
+
if (type === 'thinking') {
|
|
26
|
+
const interval = setInterval(() => {
|
|
27
|
+
setMessageIndex(prev => (prev + 1) % THINKING_MESSAGES.length);
|
|
28
|
+
}, 2000);
|
|
29
|
+
return () => clearInterval(interval);
|
|
30
|
+
}
|
|
31
|
+
return undefined;
|
|
32
|
+
}, [type]);
|
|
40
33
|
// Color based on type
|
|
41
34
|
const color = type === 'mcp' ? INK_COLORS.warning
|
|
42
35
|
: type === 'tool' ? INK_COLORS.secondary
|
|
@@ -47,19 +40,36 @@ export const Spinner = ({ label = 'Thinking...', type = 'thinking', charCount })
|
|
|
47
40
|
: type === 'tool' ? SYMBOLS.tool
|
|
48
41
|
: type === 'receiving' ? '📝'
|
|
49
42
|
: THINKING_FRAMES[frameIndex];
|
|
50
|
-
// Dynamic label for receiving
|
|
51
|
-
const displayLabel = type === '
|
|
52
|
-
?
|
|
53
|
-
:
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
43
|
+
// Dynamic label for thinking or receiving
|
|
44
|
+
const displayLabel = type === 'thinking'
|
|
45
|
+
? THINKING_MESSAGES[messageIndex]
|
|
46
|
+
: type === 'receiving' && charCount !== undefined
|
|
47
|
+
? `Receiving... (${charCount} chars)`
|
|
48
|
+
: label;
|
|
49
|
+
// Glow effect using brightness cycling
|
|
50
|
+
const glowStyles = useMemo(() => {
|
|
51
|
+
if (type !== 'thinking')
|
|
52
|
+
return null;
|
|
53
|
+
// Cycle through different effects based on glowIntensity
|
|
54
|
+
const intensity = glowIntensity;
|
|
55
|
+
return { intensity, color };
|
|
56
|
+
}, [glowIntensity, type, color]);
|
|
57
|
+
return (_jsxs(Box, { flexDirection: "row", children: [_jsxs(Text, { color: color, children: [SYMBOLS.prompt, " "] }), _jsx(Text, { children: " " }), type === 'thinking' && glowStyles ? (
|
|
58
|
+
// Animated glow text for thinking state
|
|
59
|
+
_jsx(Text, { children: displayLabel.split('').map((char, i) => {
|
|
60
|
+
// Create a wave glow effect across the text
|
|
61
|
+
const charPos = i % 8;
|
|
62
|
+
const isInGlow = charPos === glowStyles.intensity;
|
|
63
|
+
const isNearGlow = Math.abs(charPos - glowStyles.intensity) <= 1;
|
|
64
|
+
if (isInGlow) {
|
|
65
|
+
return _jsx(Text, { color: glowStyles.color, bold: true, children: char }, i);
|
|
66
|
+
}
|
|
67
|
+
else if (isNearGlow) {
|
|
68
|
+
return _jsx(Text, { color: glowStyles.color, children: char }, i);
|
|
69
|
+
}
|
|
70
|
+
return _jsx(Text, { dimColor: true, children: char }, i);
|
|
71
|
+
}) })) : (
|
|
72
|
+
// Standard display for other states
|
|
73
|
+
_jsxs(Text, { children: [icon, " ", _jsx(Text, { dimColor: true, children: displayLabel })] }))] }));
|
|
64
74
|
};
|
|
65
75
|
//# sourceMappingURL=Spinner.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Spinner.js","sourceRoot":"","sources":["../../../src/ui/components/Spinner.tsx"],"names":[],"mappings":";AAAA;;;;GAIG;AAEH,OAAc,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAC5D,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAC;AAChC,OAAO,
|
|
1
|
+
{"version":3,"file":"Spinner.js","sourceRoot":"","sources":["../../../src/ui/components/Spinner.tsx"],"names":[],"mappings":"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"}
|
|
@@ -19,12 +19,12 @@ export const BRAND_COLORS = {
|
|
|
19
19
|
// ASCII Logo - Stylized 'AI Paean'
|
|
20
20
|
export const getLogoAscii = () => {
|
|
21
21
|
return `
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
██████╗ █████╗ ███████╗ █████╗ ███╗ ██╗
|
|
23
|
+
██╔══██╗██╔══██╗██╔════╝██╔══██╗████╗ ██║
|
|
24
|
+
██████╔╝███████║█████╗ ███████║██╔██╗ ██║
|
|
25
|
+
██╔═══╝ ██╔══██║██╔══╝ ██╔══██║██║╚██╗██║
|
|
26
|
+
██║ ██║ ██║███████╗██║ ██║██║ ╚████║
|
|
27
|
+
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝
|
|
28
28
|
`;
|
|
29
29
|
};
|
|
30
30
|
// Compact Logo for Headers
|
|
@@ -45,8 +45,8 @@ export const PAEAN_SYMBOLS = {
|
|
|
45
45
|
export const ARCH_FRAMES = [
|
|
46
46
|
'∩',
|
|
47
47
|
'⌒',
|
|
48
|
-
'︵',
|
|
49
48
|
'⌓',
|
|
49
|
+
'⌒',
|
|
50
50
|
'∩',
|
|
51
51
|
];
|
|
52
52
|
// Rotating loading messages for agent analysis
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ink-theme.d.ts","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,eAAO,MAAM,MAAM;;;;;;;;CAQlB,CAAC;AAGF,eAAO,MAAM,UAAU;;;;;;;CAOtB,CAAC;AAGF,eAAO,MAAM,UAAU,QAOf,CAAC;AAGT,eAAO,MAAM,YAAY,qBAAW,CAAC;AAGrC,eAAO,MAAM,OAAO;;;;;;;;;;;;CAYnB,CAAC;AAGF,eAAO,MAAM,eAAe,UAAuB,CAAC;AAGpD,eAAO,MAAM,cAAc,WAAM,CAAC"}
|
|
1
|
+
{"version":3,"file":"ink-theme.d.ts","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,eAAO,MAAM,MAAM;;;;;;;;CAQlB,CAAC;AAGF,eAAO,MAAM,UAAU;;;;;;;CAOtB,CAAC;AAGF,eAAO,MAAM,UAAU,QAOf,CAAC;AAGT,eAAO,MAAM,YAAY,qBAAW,CAAC;AAGrC,eAAO,MAAM,OAAO;;;;;;;;;;;;CAYnB,CAAC;AAGF,eAAO,MAAM,eAAe,UAAuB,CAAC;AAGpD,eAAO,MAAM,iBAAiB,UAQ7B,CAAC;AAGF,eAAO,MAAM,cAAc,WAAM,CAAC"}
|
|
@@ -23,12 +23,12 @@ export const INK_COLORS = {
|
|
|
23
23
|
};
|
|
24
24
|
// ASCII Logo for Ink
|
|
25
25
|
export const ASCII_LOGO = `
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
██████╗ █████╗ ███████╗ █████╗ ███╗ ██╗
|
|
27
|
+
██╔══██╗██╔══██╗██╔════╝██╔══██╗████╗ ██║
|
|
28
|
+
██████╔╝███████║█████╗ ███████║██╔██╗ ██║
|
|
29
|
+
██╔═══╝ ██╔══██║██╔══╝ ██╔══██║██║╚██╗██║
|
|
30
|
+
██║ ██║ ██║███████╗██║ ██║██║ ╚████║
|
|
31
|
+
╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝
|
|
32
32
|
`.trim();
|
|
33
33
|
// Compact logo for small screens
|
|
34
34
|
export const COMPACT_LOGO = '∩ Pæan';
|
|
@@ -48,6 +48,16 @@ export const SYMBOLS = {
|
|
|
48
48
|
};
|
|
49
49
|
// Animation frames for thinking indicator
|
|
50
50
|
export const THINKING_FRAMES = ['∩', '⌒', '︵', '⌓'];
|
|
51
|
+
// Rotating thinking messages for better waiting experience
|
|
52
|
+
export const THINKING_MESSAGES = [
|
|
53
|
+
'Analyzing your request...',
|
|
54
|
+
'Understanding context...',
|
|
55
|
+
'Planning the approach...',
|
|
56
|
+
'Gathering my thoughts...',
|
|
57
|
+
'Deep thinking...',
|
|
58
|
+
'Considering options...',
|
|
59
|
+
'Almost there...',
|
|
60
|
+
];
|
|
51
61
|
// Separator line character
|
|
52
62
|
export const SEPARATOR_CHAR = '─';
|
|
53
63
|
//# sourceMappingURL=ink-theme.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ink-theme.js","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,kEAAkE;AAClE,MAAM,CAAC,MAAM,MAAM,GAAG;IAClB,OAAO,EAAE,SAAS,EAAO,2BAA2B;IACpD,YAAY,EAAE,SAAS;IACvB,SAAS,EAAE,SAAS,EAAK,0BAA0B;IACnD,OAAO,EAAE,SAAS,EAAO,yBAAyB;IAClD,OAAO,EAAE,SAAS,EAAO,wBAAwB;IACjD,KAAK,EAAE,SAAS,EAAS,MAAM;IAC/B,KAAK,EAAE,SAAS,EAAS,OAAO;CACnC,CAAC;AAEF,qBAAqB;AACrB,MAAM,CAAC,MAAM,UAAU,GAAG;IACtB,OAAO,EAAE,MAAe;IACxB,SAAS,EAAE,SAAkB;IAC7B,OAAO,EAAE,OAAgB;IACzB,OAAO,EAAE,QAAiB;IAC1B,KAAK,EAAE,KAAc;IACrB,KAAK,EAAE,MAAe;CACzB,CAAC;AAEF,qBAAqB;AACrB,MAAM,CAAC,MAAM,UAAU,GAAG;;;;;;;CAOzB,CAAC,IAAI,EAAE,CAAC;AAET,iCAAiC;AACjC,MAAM,CAAC,MAAM,YAAY,GAAG,QAAQ,CAAC;AAErC,gBAAgB;AAChB,MAAM,CAAC,MAAM,OAAO,GAAG;IACnB,IAAI,EAAE,GAAG;IACT,MAAM,EAAE,GAAG;IACX,OAAO,EAAE,GAAG;IACZ,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,GAAG;IACZ,IAAI,EAAE,GAAG;IACT,GAAG,EAAE,GAAG;IACR,IAAI,EAAE,IAAI;IACV,QAAQ,EAAE,IAAI;IACd,QAAQ,EAAE,GAAG;IACb,MAAM,EAAE,GAAG;CACd,CAAC;AAEF,0CAA0C;AAC1C,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAEpD,2BAA2B;AAC3B,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,CAAC"}
|
|
1
|
+
{"version":3,"file":"ink-theme.js","sourceRoot":"","sources":["../../../src/ui/theme/ink-theme.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,kEAAkE;AAClE,MAAM,CAAC,MAAM,MAAM,GAAG;IAClB,OAAO,EAAE,SAAS,EAAO,2BAA2B;IACpD,YAAY,EAAE,SAAS;IACvB,SAAS,EAAE,SAAS,EAAK,0BAA0B;IACnD,OAAO,EAAE,SAAS,EAAO,yBAAyB;IAClD,OAAO,EAAE,SAAS,EAAO,wBAAwB;IACjD,KAAK,EAAE,SAAS,EAAS,MAAM;IAC/B,KAAK,EAAE,SAAS,EAAS,OAAO;CACnC,CAAC;AAEF,qBAAqB;AACrB,MAAM,CAAC,MAAM,UAAU,GAAG;IACtB,OAAO,EAAE,MAAe;IACxB,SAAS,EAAE,SAAkB;IAC7B,OAAO,EAAE,OAAgB;IACzB,OAAO,EAAE,QAAiB;IAC1B,KAAK,EAAE,KAAc;IACrB,KAAK,EAAE,MAAe;CACzB,CAAC;AAEF,qBAAqB;AACrB,MAAM,CAAC,MAAM,UAAU,GAAG;;;;;;;CAOzB,CAAC,IAAI,EAAE,CAAC;AAET,iCAAiC;AACjC,MAAM,CAAC,MAAM,YAAY,GAAG,QAAQ,CAAC;AAErC,gBAAgB;AAChB,MAAM,CAAC,MAAM,OAAO,GAAG;IACnB,IAAI,EAAE,GAAG;IACT,MAAM,EAAE,GAAG;IACX,OAAO,EAAE,GAAG;IACZ,KAAK,EAAE,GAAG;IACV,OAAO,EAAE,GAAG;IACZ,IAAI,EAAE,GAAG;IACT,GAAG,EAAE,GAAG;IACR,IAAI,EAAE,IAAI;IACV,QAAQ,EAAE,IAAI;IACd,QAAQ,EAAE,GAAG;IACb,MAAM,EAAE,GAAG;CACd,CAAC;AAEF,0CAA0C;AAC1C,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AAEpD,2DAA2D;AAC3D,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC7B,2BAA2B;IAC3B,0BAA0B;IAC1B,0BAA0B;IAC1B,0BAA0B;IAC1B,kBAAkB;IAClB,wBAAwB;IACxB,iBAAiB;CACpB,CAAC;AAEF,2BAA2B;AAC3B,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,CAAC"}
|
package/package.json
CHANGED