mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 21:53:36 +01:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import type {HttpRequest} from '@yaakapp-internal/models';
|
|
import {atom, useAtomValue} from 'jotai';
|
|
import {jotaiStore} from "../lib/jotai";
|
|
|
|
export const httpRequestsAtom = atom<HttpRequest[]>([]);
|
|
|
|
export function useHttpRequests() {
|
|
return useAtomValue(httpRequestsAtom);
|
|
}
|
|
|
|
export function getHttpRequest(id: string) {
|
|
return jotaiStore.get(httpRequestsAtom).find(r => r.id === id) ?? null;
|
|
}
|