mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-18 06:57:11 +01:00
16 lines
534 B
TypeScript
16 lines
534 B
TypeScript
import { useSearch } from '@tanstack/react-router';
|
|
import { atom, useAtomValue } from 'jotai';
|
|
import { useEffect } from 'react';
|
|
import { jotaiStore } from '../lib/jotai';
|
|
|
|
export const activeRequestIdAtom = atom<string | null>(null);
|
|
|
|
export function useActiveRequestId(): string | null {
|
|
return useAtomValue(activeRequestIdAtom);
|
|
}
|
|
|
|
export function useSubscribeActiveRequestId() {
|
|
const { request_id } = useSearch({ strict: false });
|
|
useEffect(() => jotaiStore.set(activeRequestIdAtom, request_id ?? null), [request_id]);
|
|
}
|