added connect with nsec

This commit is contained in:
zmeyer44 2023-10-24 12:53:35 -04:00
parent 6b13cfee0a
commit d4b0aeef96
4 changed files with 46 additions and 3 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -7,11 +7,14 @@ import { nip19 } from "nostr-tools";
// import { useKeys } from "@/app/_providers/keysProvider";
import { useNDK } from "@/app/_providers/ndk";
import useCurrentUser from "@/lib/hooks/useCurrentUser";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export default function LoginModal() {
const { loginWithNip07 } = useNDK();
const { loginWithNip07, loginWithSecret } = useNDK();
const { loginWithPubkey, currentUser } = useCurrentUser();
const [isLoading, setIsLoading] = useState(false);
const [nsec, setNsec] = useState("");
const modal = useModal();
useEffect(() => {
@ -79,6 +82,26 @@ export default function LoginModal() {
setIsLoading(false);
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 (
<Template title="Login" className="md:max-w-[400px]">
@ -86,6 +109,22 @@ export default function LoginModal() {
<Button onClick={() => void handleLogin()} loading={isLoading}>
Connect with extension
</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>
</Template>
);

View File

@ -8,7 +8,9 @@ import { nip19 } from "nostr-tools";
import useLists from "./useLists";
import useSubscriptions from "./useSubscriptions";
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() {
const {
@ -19,7 +21,8 @@ export default function useCurrentUser() {
setFollows,
addFollow,
} = currentUserStore();
const { loginWithNip07, getProfile, ndk, fetchEvents } = useNDK();
const { loginWithNip07, loginWithNip46, getProfile, ndk, fetchEvents } =
useNDK();
const { init } = useLists();
const { init: initSubscriptions, mySubscription } = useSubscriptions();

View File

@ -11,6 +11,7 @@
"dependencies": {
"@blocknote/core": "^0.9.5",
"@blocknote/react": "^0.9.5",
"@getalby/sdk": "^2.5.0",
"@hookform/resolvers": "^3.3.2",
"@noble/hashes": "^1.3.2",
"@nostr-dev-kit/ndk": "^2.0.0",