@argo-video/cli 0.3.1 → 0.4.1

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/README.md CHANGED
@@ -179,6 +179,7 @@ Argo exports Playwright fixtures and helpers for use in demo scripts:
179
179
  ```ts
180
180
  import { test, expect, demoType } from '@argo-video/cli';
181
181
  import { showOverlay, hideOverlay, withOverlay } from '@argo-video/cli';
182
+ import { showConfetti } from '@argo-video/cli';
182
183
  import { showCaption, hideCaption, withCaption } from '@argo-video/cli';
183
184
  import { defineConfig, demosProject } from '@argo-video/cli';
184
185
  ```
@@ -191,6 +192,7 @@ import { defineConfig, demosProject } from '@argo-video/cli';
191
192
  | `showOverlay(page, scene, cue, durationMs)` | Show a templated overlay (lower-third, headline-card, callout, image-card) |
192
193
  | `withOverlay(page, scene, cue, action)` | Show overlay during an async action |
193
194
  | `hideOverlay(page, zone?)` | Remove overlay from a zone |
195
+ | `showConfetti(page, opts?)` | Burst confetti animation (`spread: 'burst' \| 'rain'`) |
194
196
  | `showCaption(page, scene, text, durationMs)` | Show a simple text caption |
195
197
  | `withCaption(page, scene, text, action)` | Show caption during an async action |
196
198
  | `hideCaption(page)` | Remove caption |
@@ -0,0 +1,17 @@
1
+ import type { Page } from '@playwright/test';
2
+ export interface ConfettiOptions {
3
+ /** Milliseconds before auto-fade. Default: 3000 */
4
+ duration?: number;
5
+ /** Number of confetti pieces. Default: 150 */
6
+ pieces?: number;
7
+ /** 'burst' fans from center-top (Raycast-style), 'rain' falls across full width. Default: 'burst' */
8
+ spread?: 'burst' | 'rain';
9
+ /** Hex color strings for confetti pieces. Default: blue, cyan, green, amber, red, purple */
10
+ colors?: string[];
11
+ /** Fade-out duration in ms. Default: 800 */
12
+ fadeOut?: number;
13
+ /** Block until animation completes. Default: false (non-blocking, fire-and-forget safe). */
14
+ wait?: boolean;
15
+ }
16
+ export declare function showConfetti(page: Page, opts?: ConfettiOptions): Promise<void>;
17
+ //# sourceMappingURL=effects.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"effects.d.ts","sourceRoot":"","sources":["../src/effects.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAE7C,MAAM,WAAW,eAAe;IAC9B,mDAAmD;IACnD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,8CAA8C;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,qGAAqG;IACrG,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC1B,4FAA4F;IAC5F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,4CAA4C;IAC5C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4FAA4F;IAC5F,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAMD,wBAAsB,YAAY,CAChC,IAAI,EAAE,IAAI,EACV,IAAI,CAAC,EAAE,eAAe,GACrB,OAAO,CAAC,IAAI,CAAC,CAyHf"}
@@ -0,0 +1,101 @@
1
+ const DEFAULT_COLORS = ['#3b82f6', '#06b6d4', '#4ade80', '#f59e0b', '#ef4444', '#a78bfa'];
2
+ const CONFETTI_ID = 'argo-confetti';
3
+ export async function showConfetti(page, opts) {
4
+ const duration = opts?.duration ?? 3000;
5
+ const pieces = opts?.pieces ?? 150;
6
+ const spread = opts?.spread ?? 'burst';
7
+ const colors = opts?.colors ?? DEFAULT_COLORS;
8
+ const fadeOut = opts?.fadeOut ?? 800;
9
+ const wait = opts?.wait ?? false;
10
+ await page.evaluate(({ pieces, spread, colors, duration, fadeOut, id }) => {
11
+ // Remove any existing confetti
12
+ document.getElementById(id)?.remove();
13
+ const canvas = document.createElement('canvas');
14
+ canvas.id = id;
15
+ canvas.style.cssText =
16
+ 'position:fixed;top:0;left:0;width:100vw;height:100vh;pointer-events:none;z-index:99999';
17
+ document.body.appendChild(canvas);
18
+ canvas.width = window.innerWidth;
19
+ canvas.height = window.innerHeight;
20
+ const ctx = canvas.getContext('2d');
21
+ const particles = [];
22
+ for (let i = 0; i < pieces; i++) {
23
+ const color = colors[Math.floor(Math.random() * colors.length)];
24
+ const w = 6 + Math.random() * 8;
25
+ const h = 4 + Math.random() * 6;
26
+ const rot = Math.random() * Math.PI * 2;
27
+ const rv = (Math.random() - 0.5) * 0.2;
28
+ if (spread === 'burst') {
29
+ // Raycast-style: burst from center-top, fan outward
30
+ const cx = canvas.width / 2;
31
+ const angle = -Math.PI / 2 + (Math.random() - 0.5) * Math.PI * 0.8;
32
+ const speed = 4 + Math.random() * 8;
33
+ particles.push({
34
+ x: cx + (Math.random() - 0.5) * 40,
35
+ y: -10,
36
+ w,
37
+ h,
38
+ color,
39
+ vx: Math.cos(angle) * speed,
40
+ vy: Math.sin(angle) * speed,
41
+ rot,
42
+ rv,
43
+ });
44
+ }
45
+ else {
46
+ // Rain: spawn across full width above viewport
47
+ particles.push({
48
+ x: Math.random() * canvas.width,
49
+ y: -Math.random() * canvas.height,
50
+ w,
51
+ h,
52
+ color,
53
+ vx: (Math.random() - 0.5) * 4,
54
+ vy: 2 + Math.random() * 4,
55
+ rot,
56
+ rv,
57
+ });
58
+ }
59
+ }
60
+ const startTime = performance.now();
61
+ function frame() {
62
+ const elapsed = performance.now() - startTime;
63
+ ctx.clearRect(0, 0, canvas.width, canvas.height);
64
+ for (const p of particles) {
65
+ p.x += p.vx;
66
+ p.y += p.vy;
67
+ p.rot += p.rv;
68
+ p.vy += 0.15; // gravity
69
+ if (spread === 'burst') {
70
+ p.vx *= 0.99; // air resistance for burst spread
71
+ }
72
+ ctx.save();
73
+ ctx.translate(p.x, p.y);
74
+ ctx.rotate(p.rot);
75
+ ctx.fillStyle = p.color;
76
+ ctx.fillRect(-p.w / 2, -p.h / 2, p.w, p.h);
77
+ ctx.restore();
78
+ }
79
+ // Start fade-out when duration reached
80
+ if (elapsed >= duration) {
81
+ const fadeProgress = Math.min(1, (elapsed - duration) / fadeOut);
82
+ canvas.style.opacity = String(1 - fadeProgress);
83
+ if (fadeProgress >= 1) {
84
+ canvas.remove();
85
+ return;
86
+ }
87
+ }
88
+ if (particles.some((p) => p.y < canvas.height + 50) || elapsed < duration + fadeOut) {
89
+ requestAnimationFrame(frame);
90
+ }
91
+ else {
92
+ canvas.remove();
93
+ }
94
+ }
95
+ requestAnimationFrame(frame);
96
+ }, { pieces, spread, colors, duration, fadeOut, id: CONFETTI_ID });
97
+ if (wait) {
98
+ await page.waitForTimeout(duration + fadeOut);
99
+ }
100
+ }
101
+ //# sourceMappingURL=effects.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"effects.js","sourceRoot":"","sources":["../src/effects.ts"],"names":[],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export { test, expect, demoType } from './fixtures.js';
3
3
  export { NarrationTimeline, type SceneDurationOptions } from './narration.js';
4
4
  export { showCaption, hideCaption, withCaption } from './captions.js';
5
5
  export { showOverlay, hideOverlay, withOverlay, type OverlayCue, type OverlayManifestEntry, type Zone, type TemplateType, type MotionPreset, } from './overlays/index.js';
6
+ export { showConfetti, type ConfettiOptions } from './effects.js';
6
7
  export { type TTSEngineOptions } from './tts/engine.js';
7
8
  export { init } from './init.js';
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,KAAK,UAAU,EACf,KAAK,UAAU,EACf,KAAK,SAAS,EACd,KAAK,SAAS,EACd,KAAK,WAAW,EAChB,KAAK,YAAY,GAClB,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAGvD,OAAO,EAAE,iBAAiB,EAAE,KAAK,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAG9E,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAGtE,OAAO,EACL,WAAW,EACX,WAAW,EACX,WAAW,EACX,KAAK,UAAU,EACf,KAAK,oBAAoB,EACzB,KAAK,IAAI,EACT,KAAK,YAAY,EACjB,KAAK,YAAY,GAClB,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGxD,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,YAAY,EACZ,UAAU,EACV,YAAY,EACZ,KAAK,UAAU,EACf,KAAK,UAAU,EACf,KAAK,SAAS,EACd,KAAK,SAAS,EACd,KAAK,WAAW,EAChB,KAAK,YAAY,GAClB,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAGvD,OAAO,EAAE,iBAAiB,EAAE,KAAK,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AAG9E,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAGtE,OAAO,EACL,WAAW,EACX,WAAW,EACX,WAAW,EACX,KAAK,UAAU,EACf,KAAK,oBAAoB,EACzB,KAAK,IAAI,EACT,KAAK,YAAY,EACjB,KAAK,YAAY,GAClB,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EAAE,YAAY,EAAE,KAAK,eAAe,EAAE,MAAM,cAAc,CAAC;AAGlE,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAGxD,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC"}
package/dist/index.js CHANGED
@@ -9,6 +9,8 @@ export { NarrationTimeline } from './narration.js';
9
9
  export { showCaption, hideCaption, withCaption } from './captions.js';
10
10
  // Overlays
11
11
  export { showOverlay, hideOverlay, withOverlay, } from './overlays/index.js';
12
+ // Effects
13
+ export { showConfetti } from './effects.js';
12
14
  // Init
13
15
  export { init } from './init.js';
14
16
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;AAErD,SAAS;AACT,OAAO,EACL,YAAY,EACZ,UAAU,EACV,YAAY,GAOb,MAAM,aAAa,CAAC;AAErB,WAAW;AACX,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEvD,YAAY;AACZ,OAAO,EAAE,iBAAiB,EAA6B,MAAM,gBAAgB,CAAC;AAE9E,WAAW;AACX,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEtE,WAAW;AACX,OAAO,EACL,WAAW,EACX,WAAW,EACX,WAAW,GAMZ,MAAM,qBAAqB,CAAC;AAK7B,OAAO;AACP,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;AAErD,SAAS;AACT,OAAO,EACL,YAAY,EACZ,UAAU,EACV,YAAY,GAOb,MAAM,aAAa,CAAC;AAErB,WAAW;AACX,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEvD,YAAY;AACZ,OAAO,EAAE,iBAAiB,EAA6B,MAAM,gBAAgB,CAAC;AAE9E,WAAW;AACX,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAEtE,WAAW;AACX,OAAO,EACL,WAAW,EACX,WAAW,EACX,WAAW,GAMZ,MAAM,qBAAqB,CAAC;AAE7B,UAAU;AACV,OAAO,EAAE,YAAY,EAAwB,MAAM,cAAc,CAAC;AAKlE,OAAO;AACP,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argo-video/cli",
3
- "version": "0.3.1",
3
+ "version": "0.4.1",
4
4
  "description": "Turn Playwright demo scripts into polished product demo videos with AI voiceover",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",