added connect with nsec
This commit is contained in:
parent
6b13cfee0a
commit
d4b0aeef96
@ -7,11 +7,14 @@ import { nip19 } from "nostr-tools";
|
|||||||
// import { useKeys } from "@/app/_providers/keysProvider";
|
// import { useKeys } from "@/app/_providers/keysProvider";
|
||||||
import { useNDK } from "@/app/_providers/ndk";
|
import { useNDK } from "@/app/_providers/ndk";
|
||||||
import useCurrentUser from "@/lib/hooks/useCurrentUser";
|
import useCurrentUser from "@/lib/hooks/useCurrentUser";
|
||||||
|
import { Input } from "@/components/ui/input";
|
||||||
|
import { Label } from "@/components/ui/label";
|
||||||
|
|
||||||
export default function LoginModal() {
|
export default function LoginModal() {
|
||||||
const { loginWithNip07 } = useNDK();
|
const { loginWithNip07, loginWithSecret } = useNDK();
|
||||||
const { loginWithPubkey, currentUser } = useCurrentUser();
|
const { loginWithPubkey, currentUser } = useCurrentUser();
|
||||||
const [isLoading, setIsLoading] = useState(false);
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
const [nsec, setNsec] = useState("");
|
||||||
const modal = useModal();
|
const modal = useModal();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -79,6 +82,26 @@ export default function LoginModal() {
|
|||||||
setIsLoading(false);
|
setIsLoading(false);
|
||||||
modal?.hide();
|
modal?.hide();
|
||||||
}
|
}
|
||||||
|
async function handleLoginNsec() {
|
||||||
|
setIsLoading(true);
|
||||||
|
console.log("loging in ");
|
||||||
|
if (typeof window.nostr !== "undefined") {
|
||||||
|
const user = await loginWithSecret(nsec);
|
||||||
|
if (!user) {
|
||||||
|
throw new Error("NO auth");
|
||||||
|
}
|
||||||
|
console.log("LOGIN", user);
|
||||||
|
await loginWithPubkey(nip19.decode(user.npub).data.toString());
|
||||||
|
localStorage.setItem("shouldReconnect", "true");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof window.webln !== "undefined") {
|
||||||
|
await window.webln.enable();
|
||||||
|
}
|
||||||
|
console.log("connected ");
|
||||||
|
setIsLoading(false);
|
||||||
|
modal?.hide();
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Template title="Login" className="md:max-w-[400px]">
|
<Template title="Login" className="md:max-w-[400px]">
|
||||||
@ -86,6 +109,22 @@ export default function LoginModal() {
|
|||||||
<Button onClick={() => void handleLogin()} loading={isLoading}>
|
<Button onClick={() => void handleLogin()} loading={isLoading}>
|
||||||
Connect with extension
|
Connect with extension
|
||||||
</Button>
|
</Button>
|
||||||
|
<div className="space-y-3">
|
||||||
|
<Label>nsec</Label>
|
||||||
|
<Input
|
||||||
|
value={nsec}
|
||||||
|
onChange={(e) => setNsec(e.target.value)}
|
||||||
|
placeholder="nsec..."
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
variant={"outline"}
|
||||||
|
onClick={() => void handleLoginNsec()}
|
||||||
|
loading={isLoading}
|
||||||
|
className="w-fill"
|
||||||
|
>
|
||||||
|
Connect with Nsec
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Template>
|
</Template>
|
||||||
);
|
);
|
||||||
|
@ -8,7 +8,9 @@ import { nip19 } from "nostr-tools";
|
|||||||
import useLists from "./useLists";
|
import useLists from "./useLists";
|
||||||
import useSubscriptions from "./useSubscriptions";
|
import useSubscriptions from "./useSubscriptions";
|
||||||
import { db } from "@nostr-dev-kit/ndk-cache-dexie";
|
import { db } from "@nostr-dev-kit/ndk-cache-dexie";
|
||||||
import { unixTimeNowInSeconds } from "../nostr/dates";
|
import { webln } from "@getalby/sdk";
|
||||||
|
const loadNWCUrl = "";
|
||||||
|
const nwc = new webln.NWC({ nostrWalletConnectUrl: loadNWCUrl });
|
||||||
|
|
||||||
export default function useCurrentUser() {
|
export default function useCurrentUser() {
|
||||||
const {
|
const {
|
||||||
@ -19,7 +21,8 @@ export default function useCurrentUser() {
|
|||||||
setFollows,
|
setFollows,
|
||||||
addFollow,
|
addFollow,
|
||||||
} = currentUserStore();
|
} = currentUserStore();
|
||||||
const { loginWithNip07, getProfile, ndk, fetchEvents } = useNDK();
|
const { loginWithNip07, loginWithNip46, getProfile, ndk, fetchEvents } =
|
||||||
|
useNDK();
|
||||||
const { init } = useLists();
|
const { init } = useLists();
|
||||||
const { init: initSubscriptions, mySubscription } = useSubscriptions();
|
const { init: initSubscriptions, mySubscription } = useSubscriptions();
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@blocknote/core": "^0.9.5",
|
"@blocknote/core": "^0.9.5",
|
||||||
"@blocknote/react": "^0.9.5",
|
"@blocknote/react": "^0.9.5",
|
||||||
|
"@getalby/sdk": "^2.5.0",
|
||||||
"@hookform/resolvers": "^3.3.2",
|
"@hookform/resolvers": "^3.3.2",
|
||||||
"@noble/hashes": "^1.3.2",
|
"@noble/hashes": "^1.3.2",
|
||||||
"@nostr-dev-kit/ndk": "^2.0.0",
|
"@nostr-dev-kit/ndk": "^2.0.0",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user