@konemono/nostr-login 1.7.64 → 1.7.65

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": "@konemono/nostr-login",
3
- "version": "1.7.64",
3
+ "version": "1.7.65",
4
4
  "description": "",
5
5
  "main": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
@@ -30,7 +30,8 @@ export class AmberDirectSigner implements Signer {
30
30
  public async getPublicKey(id?: string): Promise<string> {
31
31
  id = id || Math.random().toString(36).substring(7);
32
32
  const url = this.generateUrl('', 'get_public_key', id);
33
- window.location.href = url;
33
+ console.log('Amber redirecting to:', url);
34
+ window.location.assign(url);
34
35
  return new Promise((resolve) => {
35
36
  AmberDirectSigner.pendingResolves.set(id!, resolve);
36
37
  });
@@ -39,7 +40,8 @@ export class AmberDirectSigner implements Signer {
39
40
  public async signEvent(event: any, id?: string): Promise<any> {
40
41
  id = id || Math.random().toString(36).substring(7);
41
42
  const url = this.generateUrl(JSON.stringify(event), 'sign_event', id);
42
- window.location.href = url;
43
+ console.log('Amber redirecting to:', url);
44
+ window.location.assign(url);
43
45
  return new Promise((resolve) => {
44
46
  AmberDirectSigner.pendingResolves.set(id!, (result: string) => {
45
47
  resolve(JSON.parse(result));
@@ -50,7 +52,8 @@ export class AmberDirectSigner implements Signer {
50
52
  public async encrypt04(pubkey: string, plaintext: string, id?: string): Promise<string> {
51
53
  id = id || Math.random().toString(36).substring(7);
52
54
  const url = this.generateUrl(plaintext, 'nip04_encrypt', id, pubkey);
53
- window.location.href = url;
55
+ console.log('Amber redirecting to:', url);
56
+ window.location.assign(url);
54
57
  return new Promise((resolve) => {
55
58
  AmberDirectSigner.pendingResolves.set(id!, resolve);
56
59
  });
@@ -59,7 +62,8 @@ export class AmberDirectSigner implements Signer {
59
62
  public async decrypt04(pubkey: string, ciphertext: string, id?: string): Promise<string> {
60
63
  id = id || Math.random().toString(36).substring(7);
61
64
  const url = this.generateUrl(ciphertext, 'nip04_decrypt', id, pubkey);
62
- window.location.href = url;
65
+ console.log('Amber redirecting to:', url);
66
+ window.location.assign(url);
63
67
  return new Promise((resolve) => {
64
68
  AmberDirectSigner.pendingResolves.set(id!, resolve);
65
69
  });
@@ -68,7 +72,8 @@ export class AmberDirectSigner implements Signer {
68
72
  public async encrypt44(pubkey: string, plaintext: string, id?: string): Promise<string> {
69
73
  id = id || Math.random().toString(36).substring(7);
70
74
  const url = this.generateUrl(plaintext, 'nip44_encrypt', id, pubkey);
71
- window.location.href = url;
75
+ console.log('Amber redirecting to:', url);
76
+ window.location.assign(url);
72
77
  return new Promise((resolve) => {
73
78
  AmberDirectSigner.pendingResolves.set(id!, resolve);
74
79
  });
@@ -77,7 +82,8 @@ export class AmberDirectSigner implements Signer {
77
82
  public async decrypt44(pubkey: string, ciphertext: string, id?: string): Promise<string> {
78
83
  id = id || Math.random().toString(36).substring(7);
79
84
  const url = this.generateUrl(ciphertext, 'nip44_decrypt', id, pubkey);
80
- window.location.href = url;
85
+ console.log('Amber redirecting to:', url);
86
+ window.location.assign(url);
81
87
  return new Promise((resolve) => {
82
88
  AmberDirectSigner.pendingResolves.set(id!, resolve);
83
89
  });
@@ -89,21 +95,21 @@ export class AmberDirectSigner implements Signer {
89
95
  const encodedContent = encodeURIComponent(content || '');
90
96
  const encodedCallback = encodeURIComponent(callbackUrl);
91
97
 
92
- // ★ 追加: sessionStorageに保存(これが無い)
93
98
  sessionStorage.setItem('amber_last_type', type);
94
99
  sessionStorage.setItem('amber_last_id', id);
95
100
  sessionStorage.setItem('amber_last_timestamp', Date.now().toString());
96
101
 
97
102
  // NIP-55準拠: nostrsigner: スキーム
98
103
  let url = `nostrsigner:${encodedContent}`;
99
- url += `?compressionType=none`;
100
- url += `&returnType=signature`;
101
- url += `&type=${type}`;
102
- url += `&callbackUrl=${encodedCallback}`;
103
- if (pubkey) url += `&pubkey=${pubkey}`;
104
- if (this._pubkey) url += `&current_user=${this._pubkey}`; // ★ 追加
105
-
106
- return url;
104
+ const params = new URLSearchParams();
105
+ params.append('compressionType', 'none');
106
+ params.append('returnType', 'signature');
107
+ params.append('type', type);
108
+ params.append('callbackUrl', callbackUrl);
109
+ if (pubkey) params.append('pubkey', pubkey);
110
+ if (this._pubkey) params.append('current_user', this._pubkey);
111
+
112
+ return `${url}?${params.toString()}`;
107
113
  }
108
114
 
109
115
  // AmberDirectSigner.ts の parseResponse を拡張
@@ -587,7 +587,7 @@ class AuthNostrService extends EventEmitter implements Signer {
587
587
  return !!this.readyCallback;
588
588
  }
589
589
 
590
- public async startAuth() {
590
+ public startAuth() {
591
591
  console.log("startAuth");
592
592
  if (this.readyCallback) throw new Error('Already started');
593
593
 
@@ -27,7 +27,7 @@ class ModalManager extends EventEmitter {
27
27
  if (this.launcherPromise) {
28
28
  try {
29
29
  await this.launcherPromise;
30
- } catch {}
30
+ } catch { }
31
31
  this.launcherPromise = undefined;
32
32
  }
33
33
  }
@@ -141,7 +141,7 @@ class ModalManager extends EventEmitter {
141
141
  }
142
142
 
143
143
  try {
144
- if (!options || options.start) await this.authNostrService.startAuth();
144
+ if (!options || options.start) this.authNostrService.startAuth();
145
145
  await body();
146
146
  if (!options || options.end) await done(ok);
147
147
  } catch (e: any) {