{"version":3,"file":"jotai-optics-FVq2OTZ3.js","sources":["../../node_modules/jotai-optics/dist/focusAtom.js"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\nimport { atom } from 'jotai/vanilla';\nimport * as O from 'optics-ts';\nconst getCached = (c, m, k) => (m.has(k) ? m : m.set(k, c())).get(k);\nconst cache1 = new WeakMap();\nconst memo2 = (create, dep1, dep2) => {\n const cache2 = getCached(() => new WeakMap(), cache1, dep1);\n return getCached(create, cache2, dep2);\n};\nconst isFunction = (x) => typeof x === 'function';\n// Implementation\nexport function focusAtom(baseAtom, callback) {\n return memo2(() => {\n const focus = callback(O.optic());\n const derivedAtom = atom((get) => {\n const base = get(baseAtom);\n return base instanceof Promise\n ? base.then((v) => getValueUsingOptic(focus, v))\n : getValueUsingOptic(focus, base);\n }, (get, set, update) => {\n const newValueProducer = isFunction(update)\n ? O.modify(focus)(update)\n : O.set(focus)(update);\n const base = get(baseAtom);\n return set(baseAtom, (base instanceof Promise\n ? base.then(newValueProducer)\n : newValueProducer(base)));\n });\n return derivedAtom;\n }, baseAtom, callback);\n}\nconst getValueUsingOptic = (focus, bigValue) => {\n if (focus._tag === 'Traversal') {\n const values = O.collect(focus)(bigValue);\n return values;\n }\n if (focus._tag === 'Prism') {\n const value = O.preview(focus)(bigValue);\n return value;\n }\n const value = O.get(focus)(bigValue);\n return value;\n};\n"],"names":["getCached","c","m","k","has","set","get","cache1","WeakMap","focusAtom","baseAtom","callback","create","dep1","dep2","cache2","memo2","focus","O.optic","atom","base","Promise","then","v","getValueUsingOptic","update","newValueProducer","O.modify","O.set","bigValue","_tag","O.collect","value","O.preview","O.get"],"mappings":"uHAGA,MAAMA,EAAY,CAACC,EAAGC,EAAGC,KAAOD,EAAEE,IAAID,GAAKD,EAAIA,EAAEG,IAAIF,EAAGF,MAAMK,IAAIH,GAC5DI,MAAaC,QAOZ,SAASC,EAAUC,EAAUC,GAChC,MAPU,EAACC,EAAQC,EAAMC,KACzB,MAAMC,EAASf,GAAU,QAAUQ,SAAWD,EAAQM,GAC/C,OAAAb,EAAUY,EAAQG,EAAQD,EAAI,EAK9BE,EAAM,KACH,MAAAC,EAAQN,EAASO,KAehB,OAdaC,GAAMb,IAChB,MAAAc,EAAOd,EAAII,GACjB,OAAOU,aAAgBC,QACjBD,EAAKE,MAAMC,GAAMC,EAAmBP,EAAOM,KAC3CC,EAAmBP,EAAOG,EAAI,IACrC,CAACd,EAAKD,EAAKoB,KACV,MAAMC,EAXqB,mBAWSD,EAC9BE,EAASV,EAATU,CAAgBF,GAChBG,EAAMX,EAANW,CAAaH,GACb,MAAAL,EAAOd,EAAII,GACVL,OAAAA,EAAIK,EAAWU,aAAgBC,QAChCD,EAAKE,KAAKI,GACVA,EAAiBN,MAEpB,GACRV,EAAUC,EACjB,CACA,MAAMa,EAAqB,CAACP,EAAOY,KAC3B,GAAe,cAAfZ,EAAMa,KAAsB,CAErB,OADQC,EAAUd,EAAVc,CAAiBF,EAEnC,CACG,GAAe,UAAfZ,EAAMa,KAAkB,CAEjBE,OADOC,EAAUhB,EAAVgB,CAAiBJ,EAElC,CAEM,OADOK,EAAMjB,EAANiB,CAAaL,EACpB","x_google_ignoreList":[0]}