mirinjs 0.0.1-alpha.1 → 0.0.1-alpha.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mirinjs",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.10",
4
4
  "description": "Build desktop apps with Bun, TypeScript, and Chromium (CEF). The Bun-native Electron alternative.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/app.ts CHANGED
@@ -32,6 +32,14 @@ export type AppEvents = {
32
32
  "window-all-closed": void;
33
33
  };
34
34
 
35
+ /** A window's frame in screen points (bottom-left origin, like AppKit). */
36
+ export interface WindowFrame {
37
+ x: number;
38
+ y: number;
39
+ width: number;
40
+ height: number;
41
+ }
42
+
35
43
  type Listener<P> = (payload: P) => void;
36
44
 
37
45
  class Emitter<Events extends Record<string, unknown>> {
@@ -127,6 +135,31 @@ export class WindowHandle extends Emitter<WindowEvents> {
127
135
  runtime().core.windowSetMaterial(this.id, JSON.stringify(normalizeMaterial(material)));
128
136
  }
129
137
 
138
+ /** Move the window's bottom-left origin to screen point (x, y), in points. */
139
+ setPosition(x: number, y: number): void {
140
+ runtime().core.windowSetPosition(this.id, x, y);
141
+ }
142
+
143
+ /** The latest known window frame (screen points, bottom-left origin). Tracked
144
+ * from `moved`/`resized` events, so it's current without a round-trip. */
145
+ getFrame(): WindowFrame {
146
+ return this.#frame ?? { x: 0, y: 0, width: 0, height: 0 };
147
+ }
148
+
149
+ /** Whether the window is currently zoomed (maximized). */
150
+ isMaximized(): boolean {
151
+ return this.#maximized;
152
+ }
153
+
154
+ #frame: WindowFrame | null = null;
155
+ #maximized = false;
156
+
157
+ /** @internal — fed from native window frame events. */
158
+ _setFrame(frame: WindowFrame, maximized: boolean): void {
159
+ this.#frame = frame;
160
+ this.#maximized = maximized;
161
+ }
162
+
130
163
  #control(verb: string): void {
131
164
  runtime().core.windowControl(this.id, verb);
132
165
  }
@@ -322,7 +355,15 @@ export function wireAppEvents(): void {
322
355
  for (const kind of WINDOW_EVENTS) {
323
356
  onNativeEvent(`window.${kind}`, (event: NativeEvent) => {
324
357
  const id = event.id as number | undefined;
325
- if (id != null) app.windows._byId(id)?._emit(kind, undefined);
358
+ if (id == null) return;
359
+ const handle = app.windows._byId(id);
360
+ if (!handle) return;
361
+ // moved/resized carry the current frame + maximized state; track them so
362
+ // getFrame()/isMaximized() are answerable without a round-trip.
363
+ if (event.frame) {
364
+ handle._setFrame(event.frame as WindowFrame, Boolean(event.maximized));
365
+ }
366
+ handle._emit(kind, undefined);
326
367
  });
327
368
  }
328
369
  }
package/src/config.ts CHANGED
@@ -42,12 +42,22 @@ export interface WindowConfig {
42
42
  title?: string;
43
43
  width?: number;
44
44
  height?: number;
45
+ /** Screen position (bottom-left origin, points). Centered when absent. */
46
+ x?: number;
47
+ y?: number;
45
48
  /** "ready" (default) shows on first paint to avoid a white flash. */
46
49
  show?: "ready" | "immediately";
47
50
  /** "auto" (default) opens at launch; "manual" windows are templates for app.windows.open(name). */
48
51
  open?: "auto" | "manual";
49
52
  /** Custom title bar: hide it (content fills) or inset the traffic lights. */
50
53
  titleBarStyle?: "hidden" | "hiddenInset";
54
+ /**
55
+ * Reposition the macOS traffic-light buttons for a custom title bar.
56
+ * `x` insets the leftmost button from the left edge; `y` sets the effective
57
+ * title-bar height the buttons are vertically centered in (so `y` ≈ your CSS
58
+ * title-bar height minus the button height). Re-applied automatically on resize.
59
+ */
60
+ trafficLightPosition?: { x: number; y: number };
51
61
  /** Non-opaque window (for transparent/blurred UIs). */
52
62
  transparent?: boolean;
53
63
  /**
@@ -70,6 +80,12 @@ export interface MirinConfig {
70
80
  name: string;
71
81
  /** Main-process entry, relative to the project root (runs in the Bun Worker). */
72
82
  main: string;
83
+ /**
84
+ * App icon, relative to the project root (macOS). Accepts a `.icns`, a
85
+ * `.iconset` directory, or a single square `.png` (≥512px) that mirin renders
86
+ * into an `.icns`. Embedded in the bundle for the Dock and Finder.
87
+ */
88
+ icon?: string;
73
89
  windows: Record<string, WindowConfig>;
74
90
  }
75
91
 
package/src/host.ts CHANGED
@@ -36,7 +36,9 @@ const manifest = JSON.parse(
36
36
 
37
37
  const coreConfig = JSON.parse(
38
38
  process.env.MIRIN_CONFIG_JSON ??
39
- JSON.stringify(process.env.MIRIN_DEV_URL ? {} : { resources_path: resourcesDir }),
39
+ JSON.stringify(
40
+ process.env.MIRIN_DEV_URL ? { dev: true } : { resources_path: resourcesDir },
41
+ ),
40
42
  );
41
43
 
42
44
  // Load the native core on the main thread FIRST. The Worker also dlopens the
package/src/index.ts CHANGED
@@ -3,8 +3,8 @@
3
3
  *
4
4
  * Importing this module boots the runtime (loads libmirin_core, starts the RPC
5
5
  * server, begins draining native events) and exposes the developer-facing API:
6
- * the `app` singleton plus the `menu`, `Tray`, `dialog`, `clipboard`, and
7
- * `globalShortcut` features (docs/api-design.md).
6
+ * the `app` singleton plus the `menu`, `Tray`, `dialog`, `clipboard`,
7
+ * `globalShortcut`, and `logger` features (docs/api-design.md).
8
8
  */
9
9
 
10
10
  import { app, wireAppEvents } from "./app.ts";
@@ -22,11 +22,13 @@ export { Tray } from "./tray.ts";
22
22
  export { dialog } from "./dialog.ts";
23
23
  export { clipboard } from "./clipboard.ts";
24
24
  export { globalShortcut } from "./shortcut.ts";
25
+ export { logger, setLogLevel, getLogLevel, Logger } from "./logger.ts";
25
26
  export { NotAttachedError } from "./runtime.ts";
26
27
 
27
28
  export type {
28
29
  WindowEvents,
29
30
  WindowMaterialInfo,
31
+ WindowFrame,
30
32
  AppEvents,
31
33
  WindowHandle,
32
34
  WindowOpenOptions,
@@ -35,6 +37,7 @@ export type {
35
37
  Dock,
36
38
  } from "./app.ts";
37
39
  export type { MenuItemTemplate, MenuRole } from "./menu.ts";
40
+ export type { LogLevel } from "./logger.ts";
38
41
  export type { TrayOptions } from "./tray.ts";
39
42
  export type { OpenDialogOptions, SaveDialogOptions, MessageDialogOptions } from "./dialog.ts";
40
43
  export type {
package/src/logger.ts ADDED
@@ -0,0 +1,97 @@
1
+ /**
2
+ * mirin/logger — a small leveled logger for the Bun main process.
3
+ *
4
+ * Exported from `mirinjs` so app code and mirin itself log consistently. The
5
+ * level defaults from the `MIRIN_LOG` env var (`debug` | `info` | `warn` |
6
+ * `error` | `silent`), falling back to `info`; change it at runtime with
7
+ * `logger.setLevel(...)`. `warn`/`error` go to stderr, `debug`/`info` to stdout.
8
+ *
9
+ * import { logger } from "mirinjs";
10
+ * logger.info("server listening", port);
11
+ * const db = logger.child("db");
12
+ * db.debug("query", sql); // → [mirin:db] debug query …
13
+ */
14
+
15
+ export type LogLevel = "debug" | "info" | "warn" | "error" | "silent";
16
+
17
+ const ORDER: Record<LogLevel, number> = {
18
+ debug: 10,
19
+ info: 20,
20
+ warn: 30,
21
+ error: 40,
22
+ silent: 100,
23
+ };
24
+
25
+ const COLOR = {
26
+ debug: "\x1b[2m", // dim
27
+ info: "\x1b[36m", // cyan
28
+ warn: "\x1b[33m", // yellow
29
+ error: "\x1b[31m", // red
30
+ dim: "\x1b[2m",
31
+ reset: "\x1b[0m",
32
+ } as const;
33
+
34
+ const LEVELS: LogLevel[] = ["debug", "info", "warn", "error", "silent"];
35
+
36
+ function envLevel(): LogLevel {
37
+ const v = (process.env.MIRIN_LOG ?? "").toLowerCase() as LogLevel;
38
+ return LEVELS.includes(v) ? v : "info";
39
+ }
40
+
41
+ // Shared across every logger instance so `setLevel` is global.
42
+ let currentLevel: LogLevel = envLevel();
43
+ const useColor = Boolean(process.stderr.isTTY) && process.env.NO_COLOR == null;
44
+
45
+ /** Set the global minimum level. Messages below it are dropped. */
46
+ export function setLogLevel(level: LogLevel): void {
47
+ currentLevel = level;
48
+ }
49
+
50
+ /** The current global log level. */
51
+ export function getLogLevel(): LogLevel {
52
+ return currentLevel;
53
+ }
54
+
55
+ export class Logger {
56
+ /** @param scope optional dotted scope shown as `[mirin:scope]`. */
57
+ constructor(private readonly scope?: string) {}
58
+
59
+ /** Derive a scoped child logger (e.g. `logger.child("db")`). */
60
+ child(scope: string): Logger {
61
+ return new Logger(this.scope ? `${this.scope}:${scope}` : scope);
62
+ }
63
+
64
+ /** Set the global level (same as the exported `setLogLevel`). */
65
+ setLevel(level: LogLevel): void {
66
+ setLogLevel(level);
67
+ }
68
+
69
+ get level(): LogLevel {
70
+ return currentLevel;
71
+ }
72
+
73
+ debug(...args: unknown[]): void {
74
+ this.#emit("debug", args);
75
+ }
76
+ info(...args: unknown[]): void {
77
+ this.#emit("info", args);
78
+ }
79
+ warn(...args: unknown[]): void {
80
+ this.#emit("warn", args);
81
+ }
82
+ error(...args: unknown[]): void {
83
+ this.#emit("error", args);
84
+ }
85
+
86
+ #emit(level: Exclude<LogLevel, "silent">, args: unknown[]): void {
87
+ if (ORDER[level] < ORDER[currentLevel]) return;
88
+ const name = this.scope ? `[mirin:${this.scope}]` : "[mirin]";
89
+ const prefix = useColor ? `${COLOR.dim}${name}${COLOR.reset}` : name;
90
+ const tag = useColor ? `${COLOR[level]}${level}${COLOR.reset}` : level;
91
+ const sink = level === "warn" || level === "error" ? console.error : console.log;
92
+ sink(`${prefix} ${tag}`, ...args);
93
+ }
94
+ }
95
+
96
+ /** The default mirin logger. Import and use directly, or derive children. */
97
+ export const logger = new Logger();
package/src/native.ts CHANGED
@@ -23,6 +23,7 @@ const symbols = {
23
23
  mirin_window_set_title: { args: [FFIType.u32, FFIType.ptr], returns: FFIType.void },
24
24
  mirin_window_control: { args: [FFIType.u32, FFIType.ptr], returns: FFIType.void },
25
25
  mirin_window_set_material: { args: [FFIType.u32, FFIType.ptr], returns: FFIType.void },
26
+ mirin_window_set_position: { args: [FFIType.u32, FFIType.f64, FFIType.f64], returns: FFIType.void },
26
27
  mirin_app_quit: { args: [], returns: FFIType.void },
27
28
  mirin_app_set_dock_visible: { args: [FFIType.i32], returns: FFIType.void },
28
29
  mirin_set_app_menu: { args: [FFIType.ptr], returns: FFIType.void },
@@ -108,6 +109,10 @@ export class Core {
108
109
  this.#lib.symbols.mirin_window_set_material(id, ptr(buf));
109
110
  }
110
111
 
112
+ windowSetPosition(id: number, x: number, y: number): void {
113
+ this.#lib.symbols.mirin_window_set_position(id, x, y);
114
+ }
115
+
111
116
  quit(): void {
112
117
  this.#lib.symbols.mirin_app_quit();
113
118
  }
package/src/runtime.ts CHANGED
@@ -35,9 +35,14 @@ export function runtime(): Runtime {
35
35
  return current;
36
36
  }
37
37
 
38
- /** Dev: every window loads the Vite server. Production: its manifest app:// URL. */
38
+ /** Dev: every window loads the Vite server. Production: its manifest app:// URL.
39
+ * Any query/hash on the requested URL (e.g. "#devtools") is preserved so
40
+ * hash-routed sub-windows reach the right view through the dev server too. */
39
41
  export function resolveUrl(url: string): string {
40
- return current?.devUrl ?? url;
42
+ const devUrl = current?.devUrl;
43
+ if (!devUrl) return url;
44
+ const suffix = url.match(/[?#].*$/)?.[0] ?? "";
45
+ return devUrl + suffix;
41
46
  }
42
47
 
43
48
  // ---- native event dispatch ----