// Compiled by ClojureScript 1.9.229 {} goog.provide('reagent.ratom'); goog.require('cljs.core'); goog.require('reagent.impl.util'); goog.require('reagent.debug'); goog.require('reagent.impl.batching'); goog.require('clojure.set'); if(typeof reagent.ratom.debug !== 'undefined'){ } else { reagent.ratom.debug = false; } if(typeof reagent.ratom.generation !== 'undefined'){ } else { reagent.ratom.generation = (0); } if(typeof reagent.ratom._running !== 'undefined'){ } else { reagent.ratom._running = cljs.core.atom.call(null,(0)); } reagent.ratom.reactive_QMARK_ = (function reagent$ratom$reactive_QMARK_(){ return cljs.core.some_QMARK_.call(null,reagent.ratom._STAR_ratom_context_STAR_); }); reagent.ratom.running = (function reagent$ratom$running(){ return cljs.core.deref.call(null,reagent.ratom._running); }); reagent.ratom.arr_len = (function reagent$ratom$arr_len(x){ if((x == null)){ return (0); } else { return x.length; } }); reagent.ratom.arr_eq = (function reagent$ratom$arr_eq(x,y){ var len = reagent.ratom.arr_len.call(null,x); var and__25118__auto__ = (len === reagent.ratom.arr_len.call(null,y)); if(and__25118__auto__){ var i = (0); while(true){ var or__25130__auto__ = (i === len); if(or__25130__auto__){ return or__25130__auto__; } else { if(((x[i]) === (y[i]))){ var G__26557 = (i + (1)); i = G__26557; continue; } else { return false; } } break; } } else { return and__25118__auto__; } }); reagent.ratom.in_context = (function reagent$ratom$in_context(obj,f){ var _STAR_ratom_context_STAR_26559 = reagent.ratom._STAR_ratom_context_STAR_; reagent.ratom._STAR_ratom_context_STAR_ = obj; try{return f.call(null); }finally {reagent.ratom._STAR_ratom_context_STAR_ = _STAR_ratom_context_STAR_26559; }}); reagent.ratom.deref_capture = (function reagent$ratom$deref_capture(f,r){ r.captured = null; r.ratomGeneration = reagent.ratom.generation = (reagent.ratom.generation + (1)); var res = reagent.ratom.in_context.call(null,r,f); var c = r.captured; r.dirty_QMARK_ = false; if(reagent.ratom.arr_eq.call(null,c,r.watching)){ } else { r._update_watching(c); } return res; }); reagent.ratom.notify_deref_watcher_BANG_ = (function reagent$ratom$notify_deref_watcher_BANG_(derefed){ var temp__4661__auto__ = reagent.ratom._STAR_ratom_context_STAR_; if((temp__4661__auto__ == null)){ return null; } else { var r = temp__4661__auto__; var c = r.captured; if((c == null)){ return r.captured = [derefed]; } else { return c.push(derefed); } } }); reagent.ratom.check_watches = (function reagent$ratom$check_watches(old,new$){ if(reagent.ratom.debug){ cljs.core.swap_BANG_.call(null,reagent.ratom._running,cljs.core._PLUS_,(cljs.core.count.call(null,new$) - cljs.core.count.call(null,old))); } else { } return new$; }); reagent.ratom.add_w = (function reagent$ratom$add_w(this$,key,f){ var w = this$.watches; this$.watches = reagent.ratom.check_watches.call(null,w,cljs.core.assoc.call(null,w,key,f)); return this$.watchesArr = null; }); reagent.ratom.remove_w = (function reagent$ratom$remove_w(this$,key){ var w = this$.watches; this$.watches = reagent.ratom.check_watches.call(null,w,cljs.core.dissoc.call(null,w,key)); return this$.watchesArr = null; }); reagent.ratom.notify_w = (function reagent$ratom$notify_w(this$,old,new$){ var w = this$.watchesArr; var a = (((w == null))?this$.watchesArr = cljs.core.reduce_kv.call(null,((function (w){ return (function (p1__26560_SHARP_,p2__26561_SHARP_,p3__26562_SHARP_){ var G__26564 = p1__26560_SHARP_; G__26564.push(p2__26561_SHARP_); G__26564.push(p3__26562_SHARP_); return G__26564; });})(w)) ,[],this$.watches):w); var len = a.length; var i = (0); while(true){ if((i < len)){ var k_26565 = (a[i]); var f_26566 = (a[(i + (1))]); f_26566.call(null,k_26565,this$,old,new$); var G__26567 = ((2) + i); i = G__26567; continue; } else { return null; } break; } }); reagent.ratom.pr_atom = (function reagent$ratom$pr_atom(a,writer,opts,s){ cljs.core._write.call(null,writer,[cljs.core.str("#<"),cljs.core.str(s),cljs.core.str(" ")].join('')); cljs.core.pr_writer.call(null,(function (){var _STAR_ratom_context_STAR_26569 = reagent.ratom._STAR_ratom_context_STAR_; reagent.ratom._STAR_ratom_context_STAR_ = null; try{return cljs.core._deref.call(null,a); }finally {reagent.ratom._STAR_ratom_context_STAR_ = _STAR_ratom_context_STAR_26569; }})(),writer,opts); return cljs.core._write.call(null,writer,">"); }); if(typeof reagent.ratom.rea_queue !== 'undefined'){ } else { reagent.ratom.rea_queue = null; } reagent.ratom.rea_enqueue = (function reagent$ratom$rea_enqueue(r){ if((reagent.ratom.rea_queue == null)){ reagent.ratom.rea_queue = []; reagent.impl.batching.schedule.call(null); } else { } return reagent.ratom.rea_queue.push(r); }); reagent.ratom.flush_BANG_ = (function reagent$ratom$flush_BANG_(){ while(true){ var q = reagent.ratom.rea_queue; if((q == null)){ return null; } else { reagent.ratom.rea_queue = null; var n__26045__auto___26570 = q.length; var i_26571 = (0); while(true){ if((i_26571 < n__26045__auto___26570)){ (q[i_26571])._queued_run(); var G__26572 = (i_26571 + (1)); i_26571 = G__26572; continue; } else { } break; } continue; } break; } }); reagent.impl.batching.ratom_flush = reagent.ratom.flush_BANG_; /** * @interface */ reagent.ratom.IReactiveAtom = function(){}; /** * @constructor * @implements {cljs.core.IWatchable} * @implements {cljs.core.IAtom} * @implements {cljs.core.IEquiv} * @implements {cljs.core.IHash} * @implements {cljs.core.IReset} * @implements {cljs.core.ISwap} * @implements {reagent.ratom.IReactiveAtom} * @implements {cljs.core.IMeta} * @implements {cljs.core.IDeref} * @implements {cljs.core.IPrintWithWriter} */ reagent.ratom.RAtom = (function (state,meta,validator,watches){ this.state = state; this.meta = meta; this.validator = validator; this.watches = watches; this.cljs$lang$protocol_mask$partition0$ = 2153938944; this.cljs$lang$protocol_mask$partition1$ = 114690; }) reagent.ratom.RAtom.prototype.reagent$ratom$IReactiveAtom$ = true; reagent.ratom.RAtom.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = (function (a,w,opts){ var self__ = this; var a__$1 = this; return reagent.ratom.pr_atom.call(null,a__$1,w,opts,"Atom:"); }); reagent.ratom.RAtom.prototype.cljs$core$IMeta$_meta$arity$1 = (function (_){ var self__ = this; var ___$1 = this; return self__.meta; }); reagent.ratom.RAtom.prototype.cljs$core$IHash$_hash$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; return goog.getUid(this$__$1); }); reagent.ratom.RAtom.prototype.cljs$core$IEquiv$_equiv$arity$2 = (function (o,other){ var self__ = this; var o__$1 = this; return (o__$1 === other); }); reagent.ratom.RAtom.prototype.cljs$core$IReset$_reset_BANG_$arity$2 = (function (a,new_value){ var self__ = this; var a__$1 = this; if((self__.validator == null)){ } else { if(cljs.core.truth_(self__.validator.call(null,new_value))){ } else { throw (new Error([cljs.core.str("Assert failed: "),cljs.core.str("Validator rejected reference state"),cljs.core.str("\n"),cljs.core.str("(validator new-value)")].join(''))); } } var old_value = self__.state; self__.state = new_value; if((self__.watches == null)){ } else { reagent.ratom.notify_w.call(null,a__$1,old_value,new_value); } return new_value; }); reagent.ratom.RAtom.prototype.cljs$core$ISwap$_swap_BANG_$arity$2 = (function (a,f){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,self__.state)); }); reagent.ratom.RAtom.prototype.cljs$core$ISwap$_swap_BANG_$arity$3 = (function (a,f,x){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,self__.state,x)); }); reagent.ratom.RAtom.prototype.cljs$core$ISwap$_swap_BANG_$arity$4 = (function (a,f,x,y){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,self__.state,x,y)); }); reagent.ratom.RAtom.prototype.cljs$core$ISwap$_swap_BANG_$arity$5 = (function (a,f,x,y,more){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,cljs.core.apply.call(null,f,self__.state,x,y,more)); }); reagent.ratom.RAtom.prototype.cljs$core$IWatchable$_notify_watches$arity$3 = (function (this$,old,new$){ var self__ = this; var this$__$1 = this; return reagent.ratom.notify_w.call(null,this$__$1,old,new$); }); reagent.ratom.RAtom.prototype.cljs$core$IWatchable$_add_watch$arity$3 = (function (this$,key,f){ var self__ = this; var this$__$1 = this; return reagent.ratom.add_w.call(null,this$__$1,key,f); }); reagent.ratom.RAtom.prototype.cljs$core$IWatchable$_remove_watch$arity$2 = (function (this$,key){ var self__ = this; var this$__$1 = this; return reagent.ratom.remove_w.call(null,this$__$1,key); }); reagent.ratom.RAtom.prototype.cljs$core$IDeref$_deref$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; reagent.ratom.notify_deref_watcher_BANG_.call(null,this$__$1); return self__.state; }); reagent.ratom.RAtom.getBasis = (function (){ return new cljs.core.PersistentVector(null, 4, 5, cljs.core.PersistentVector.EMPTY_NODE, [cljs.core.with_meta(new cljs.core.Symbol(null,"state","state",-348086572,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),new cljs.core.Symbol(null,"meta","meta",-1154898805,null),new cljs.core.Symbol(null,"validator","validator",-325659154,null),cljs.core.with_meta(new cljs.core.Symbol(null,"watches","watches",1367433992,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null))], null); }); reagent.ratom.RAtom.cljs$lang$type = true; reagent.ratom.RAtom.cljs$lang$ctorStr = "reagent.ratom/RAtom"; reagent.ratom.RAtom.cljs$lang$ctorPrWriter = (function (this__25736__auto__,writer__25737__auto__,opt__25738__auto__){ return cljs.core._write.call(null,writer__25737__auto__,"reagent.ratom/RAtom"); }); reagent.ratom.__GT_RAtom = (function reagent$ratom$__GT_RAtom(state,meta,validator,watches){ return (new reagent.ratom.RAtom(state,meta,validator,watches)); }); /** * Like clojure.core/atom, except that it keeps track of derefs. */ reagent.ratom.atom = (function reagent$ratom$atom(var_args){ var args26573 = []; var len__26205__auto___26581 = arguments.length; var i__26206__auto___26582 = (0); while(true){ if((i__26206__auto___26582 < len__26205__auto___26581)){ args26573.push((arguments[i__26206__auto___26582])); var G__26583 = (i__26206__auto___26582 + (1)); i__26206__auto___26582 = G__26583; continue; } else { } break; } var G__26577 = args26573.length; switch (G__26577) { case 1: return reagent.ratom.atom.cljs$core$IFn$_invoke$arity$1((arguments[(0)])); break; default: var argseq__26224__auto__ = (new cljs.core.IndexedSeq(args26573.slice((1)),(0),null)); return reagent.ratom.atom.cljs$core$IFn$_invoke$arity$variadic((arguments[(0)]),argseq__26224__auto__); } }); reagent.ratom.atom.cljs$core$IFn$_invoke$arity$1 = (function (x){ return (new reagent.ratom.RAtom(x,null,null,null)); }); reagent.ratom.atom.cljs$core$IFn$_invoke$arity$variadic = (function (x,p__26578){ var map__26579 = p__26578; var map__26579__$1 = ((((!((map__26579 == null)))?((((map__26579.cljs$lang$protocol_mask$partition0$ & (64))) || (map__26579.cljs$core$ISeq$))?true:false):false))?cljs.core.apply.call(null,cljs.core.hash_map,map__26579):map__26579); var meta = cljs.core.get.call(null,map__26579__$1,new cljs.core.Keyword(null,"meta","meta",1499536964)); var validator = cljs.core.get.call(null,map__26579__$1,new cljs.core.Keyword(null,"validator","validator",-1966190681)); return (new reagent.ratom.RAtom(x,meta,validator,null)); }); reagent.ratom.atom.cljs$lang$applyTo = (function (seq26574){ var G__26575 = cljs.core.first.call(null,seq26574); var seq26574__$1 = cljs.core.next.call(null,seq26574); return reagent.ratom.atom.cljs$core$IFn$_invoke$arity$variadic(G__26575,seq26574__$1); }); reagent.ratom.atom.cljs$lang$maxFixedArity = (1); reagent.ratom.cache_key = "reagReactionCache"; reagent.ratom.cached_reaction = (function reagent$ratom$cached_reaction(f,o,k,obj,destroy){ var m = (o[reagent.ratom.cache_key]); var m__$1 = (((m == null))?cljs.core.PersistentArrayMap.EMPTY:m); var r = m__$1.call(null,k,null); if(cljs.core.some_QMARK_.call(null,r)){ return cljs.core._deref.call(null,r); } else { if((reagent.ratom._STAR_ratom_context_STAR_ == null)){ return f.call(null); } else { var r__$1 = reagent.ratom.make_reaction.call(null,f,new cljs.core.Keyword(null,"on-dispose","on-dispose",2105306360),((function (m,m__$1,r){ return (function (x){ if(reagent.ratom.debug){ cljs.core.swap_BANG_.call(null,reagent.ratom._running,cljs.core.dec); } else { } var __26585 = (o[reagent.ratom.cache_key]); var __26586__$1 = cljs.core.dissoc.call(null,__26585,k); (o[reagent.ratom.cache_key] = __26586__$1); if(cljs.core.some_QMARK_.call(null,obj)){ obj.reaction = null; } else { } if(cljs.core.some_QMARK_.call(null,destroy)){ return destroy.call(null,x); } else { return null; } });})(m,m__$1,r)) ); var v = cljs.core._deref.call(null,r__$1); (o[reagent.ratom.cache_key] = cljs.core.assoc.call(null,m__$1,k,r__$1)); if(reagent.ratom.debug){ cljs.core.swap_BANG_.call(null,reagent.ratom._running,cljs.core.inc); } else { } if(cljs.core.some_QMARK_.call(null,obj)){ obj.reaction = r__$1; } else { } return v; } } }); /** * @constructor * @implements {cljs.core.IEquiv} * @implements {cljs.core.IHash} * @implements {reagent.ratom.IReactiveAtom} * @implements {cljs.core.IDeref} * @implements {cljs.core.IPrintWithWriter} */ reagent.ratom.Track = (function (f,args,reaction){ this.f = f; this.args = args; this.reaction = reaction; this.cljs$lang$protocol_mask$partition0$ = 2153807872; this.cljs$lang$protocol_mask$partition1$ = 0; }) reagent.ratom.Track.prototype.reagent$ratom$IReactiveAtom$ = true; reagent.ratom.Track.prototype.cljs$core$IDeref$_deref$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; var temp__4659__auto__ = self__.reaction; if((temp__4659__auto__ == null)){ return reagent.ratom.cached_reaction.call(null,((function (temp__4659__auto__,this$__$1){ return (function (){ return cljs.core.apply.call(null,self__.f,self__.args); });})(temp__4659__auto__,this$__$1)) ,self__.f,self__.args,this$__$1,null); } else { var r = temp__4659__auto__; return cljs.core._deref.call(null,r); } }); reagent.ratom.Track.prototype.cljs$core$IEquiv$_equiv$arity$2 = (function (_,other){ var self__ = this; var ___$1 = this; return ((other instanceof reagent.ratom.Track)) && (cljs.core._EQ_.call(null,self__.f,other.f)) && (cljs.core._EQ_.call(null,self__.args,other.args)); }); reagent.ratom.Track.prototype.cljs$core$IHash$_hash$arity$1 = (function (_){ var self__ = this; var ___$1 = this; return cljs.core.hash.call(null,new cljs.core.PersistentVector(null, 2, 5, cljs.core.PersistentVector.EMPTY_NODE, [self__.f,self__.args], null)); }); reagent.ratom.Track.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = (function (a,w,opts){ var self__ = this; var a__$1 = this; return reagent.ratom.pr_atom.call(null,a__$1,w,opts,"Track:"); }); reagent.ratom.Track.getBasis = (function (){ return new cljs.core.PersistentVector(null, 3, 5, cljs.core.PersistentVector.EMPTY_NODE, [new cljs.core.Symbol(null,"f","f",43394975,null),new cljs.core.Symbol(null,"args","args",-1338879193,null),cljs.core.with_meta(new cljs.core.Symbol(null,"reaction","reaction",2131401315,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null))], null); }); reagent.ratom.Track.cljs$lang$type = true; reagent.ratom.Track.cljs$lang$ctorStr = "reagent.ratom/Track"; reagent.ratom.Track.cljs$lang$ctorPrWriter = (function (this__25736__auto__,writer__25737__auto__,opt__25738__auto__){ return cljs.core._write.call(null,writer__25737__auto__,"reagent.ratom/Track"); }); reagent.ratom.__GT_Track = (function reagent$ratom$__GT_Track(f,args,reaction){ return (new reagent.ratom.Track(f,args,reaction)); }); reagent.ratom.make_track = (function reagent$ratom$make_track(f,args){ return (new reagent.ratom.Track(f,args,null)); }); reagent.ratom.make_track_BANG_ = (function reagent$ratom$make_track_BANG_(f,args){ var t = reagent.ratom.make_track.call(null,f,args); var r = reagent.ratom.make_reaction.call(null,((function (t){ return (function (){ return cljs.core._deref.call(null,t); });})(t)) ,new cljs.core.Keyword(null,"auto-run","auto-run",1958400437),true); cljs.core.deref.call(null,r); return r; }); reagent.ratom.track = (function reagent$ratom$track(var_args){ var args__26212__auto__ = []; var len__26205__auto___26589 = arguments.length; var i__26206__auto___26590 = (0); while(true){ if((i__26206__auto___26590 < len__26205__auto___26589)){ args__26212__auto__.push((arguments[i__26206__auto___26590])); var G__26591 = (i__26206__auto___26590 + (1)); i__26206__auto___26590 = G__26591; continue; } else { } break; } var argseq__26213__auto__ = ((((1) < args__26212__auto__.length))?(new cljs.core.IndexedSeq(args__26212__auto__.slice((1)),(0),null)):null); return reagent.ratom.track.cljs$core$IFn$_invoke$arity$variadic((arguments[(0)]),argseq__26213__auto__); }); reagent.ratom.track.cljs$core$IFn$_invoke$arity$variadic = (function (f,args){ if(cljs.core.ifn_QMARK_.call(null,f)){ } else { throw (new Error("Assert failed: (ifn? f)")); } return reagent.ratom.make_track.call(null,f,args); }); reagent.ratom.track.cljs$lang$maxFixedArity = (1); reagent.ratom.track.cljs$lang$applyTo = (function (seq26587){ var G__26588 = cljs.core.first.call(null,seq26587); var seq26587__$1 = cljs.core.next.call(null,seq26587); return reagent.ratom.track.cljs$core$IFn$_invoke$arity$variadic(G__26588,seq26587__$1); }); reagent.ratom.track_BANG_ = (function reagent$ratom$track_BANG_(var_args){ var args__26212__auto__ = []; var len__26205__auto___26594 = arguments.length; var i__26206__auto___26595 = (0); while(true){ if((i__26206__auto___26595 < len__26205__auto___26594)){ args__26212__auto__.push((arguments[i__26206__auto___26595])); var G__26596 = (i__26206__auto___26595 + (1)); i__26206__auto___26595 = G__26596; continue; } else { } break; } var argseq__26213__auto__ = ((((1) < args__26212__auto__.length))?(new cljs.core.IndexedSeq(args__26212__auto__.slice((1)),(0),null)):null); return reagent.ratom.track_BANG_.cljs$core$IFn$_invoke$arity$variadic((arguments[(0)]),argseq__26213__auto__); }); reagent.ratom.track_BANG_.cljs$core$IFn$_invoke$arity$variadic = (function (f,args){ if(cljs.core.ifn_QMARK_.call(null,f)){ } else { throw (new Error("Assert failed: (ifn? f)")); } return reagent.ratom.make_track_BANG_.call(null,f,args); }); reagent.ratom.track_BANG_.cljs$lang$maxFixedArity = (1); reagent.ratom.track_BANG_.cljs$lang$applyTo = (function (seq26592){ var G__26593 = cljs.core.first.call(null,seq26592); var seq26592__$1 = cljs.core.next.call(null,seq26592); return reagent.ratom.track_BANG_.cljs$core$IFn$_invoke$arity$variadic(G__26593,seq26592__$1); }); /** * @constructor * @implements {cljs.core.IWatchable} * @implements {cljs.core.IAtom} * @implements {cljs.core.IEquiv} * @implements {cljs.core.IHash} * @implements {cljs.core.IReset} * @implements {cljs.core.ISwap} * @implements {reagent.ratom.IReactiveAtom} * @implements {cljs.core.IDeref} * @implements {cljs.core.IPrintWithWriter} * @implements {reagent.ratom.Object} */ reagent.ratom.RCursor = (function (ratom,path,reaction,state,watches){ this.ratom = ratom; this.path = path; this.reaction = reaction; this.state = state; this.watches = watches; this.cljs$lang$protocol_mask$partition0$ = 2153807872; this.cljs$lang$protocol_mask$partition1$ = 114690; }) reagent.ratom.RCursor.prototype._peek = (function (){ var self__ = this; var this$ = this; var _STAR_ratom_context_STAR_26597 = reagent.ratom._STAR_ratom_context_STAR_; reagent.ratom._STAR_ratom_context_STAR_ = null; try{return cljs.core._deref.call(null,this$); }finally {reagent.ratom._STAR_ratom_context_STAR_ = _STAR_ratom_context_STAR_26597; }}); reagent.ratom.RCursor.prototype._set_state = (function (oldstate,newstate){ var self__ = this; var this$ = this; if((oldstate === newstate)){ return null; } else { self__.state = newstate; if(cljs.core.some_QMARK_.call(null,self__.watches)){ return reagent.ratom.notify_w.call(null,this$,oldstate,newstate); } else { return null; } } }); reagent.ratom.RCursor.prototype.reagent$ratom$IReactiveAtom$ = true; reagent.ratom.RCursor.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = (function (a,w,opts){ var self__ = this; var a__$1 = this; return reagent.ratom.pr_atom.call(null,a__$1,w,opts,[cljs.core.str("Cursor: "),cljs.core.str(self__.path)].join('')); }); reagent.ratom.RCursor.prototype.cljs$core$IHash$_hash$arity$1 = (function (_){ var self__ = this; var ___$1 = this; return cljs.core.hash.call(null,new cljs.core.PersistentVector(null, 2, 5, cljs.core.PersistentVector.EMPTY_NODE, [self__.ratom,self__.path], null)); }); reagent.ratom.RCursor.prototype.cljs$core$IEquiv$_equiv$arity$2 = (function (_,other){ var self__ = this; var ___$1 = this; return ((other instanceof reagent.ratom.RCursor)) && (cljs.core._EQ_.call(null,self__.path,other.path)) && (cljs.core._EQ_.call(null,self__.ratom,other.ratom)); }); reagent.ratom.RCursor.prototype.cljs$core$IReset$_reset_BANG_$arity$2 = (function (this$,new_value){ var self__ = this; var this$__$1 = this; var oldstate = self__.state; this$__$1._set_state(oldstate,new_value); if(((!((self__.ratom == null)))?((((self__.ratom.cljs$lang$protocol_mask$partition0$ & (32768))) || (self__.ratom.cljs$core$IDeref$))?true:(((!self__.ratom.cljs$lang$protocol_mask$partition0$))?cljs.core.native_satisfies_QMARK_.call(null,cljs.core.IDeref,self__.ratom):false)):cljs.core.native_satisfies_QMARK_.call(null,cljs.core.IDeref,self__.ratom))){ if(cljs.core._EQ_.call(null,self__.path,cljs.core.PersistentVector.EMPTY)){ cljs.core.reset_BANG_.call(null,self__.ratom,new_value); } else { cljs.core.swap_BANG_.call(null,self__.ratom,cljs.core.assoc_in,self__.path,new_value); } } else { self__.ratom.call(null,self__.path,new_value); } return new_value; }); reagent.ratom.RCursor.prototype.cljs$core$ISwap$_swap_BANG_$arity$2 = (function (a,f){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,a__$1._peek())); }); reagent.ratom.RCursor.prototype.cljs$core$ISwap$_swap_BANG_$arity$3 = (function (a,f,x){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,a__$1._peek(),x)); }); reagent.ratom.RCursor.prototype.cljs$core$ISwap$_swap_BANG_$arity$4 = (function (a,f,x,y){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,a__$1._peek(),x,y)); }); reagent.ratom.RCursor.prototype.cljs$core$ISwap$_swap_BANG_$arity$5 = (function (a,f,x,y,more){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,cljs.core.apply.call(null,f,a__$1._peek(),x,y,more)); }); reagent.ratom.RCursor.prototype.cljs$core$IWatchable$_notify_watches$arity$3 = (function (this$,old,new$){ var self__ = this; var this$__$1 = this; return reagent.ratom.notify_w.call(null,this$__$1,old,new$); }); reagent.ratom.RCursor.prototype.cljs$core$IWatchable$_add_watch$arity$3 = (function (this$,key,f){ var self__ = this; var this$__$1 = this; return reagent.ratom.add_w.call(null,this$__$1,key,f); }); reagent.ratom.RCursor.prototype.cljs$core$IWatchable$_remove_watch$arity$2 = (function (this$,key){ var self__ = this; var this$__$1 = this; return reagent.ratom.remove_w.call(null,this$__$1,key); }); reagent.ratom.RCursor.prototype.cljs$core$IDeref$_deref$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; var oldstate = self__.state; var newstate = (function (){var temp__4659__auto__ = self__.reaction; if((temp__4659__auto__ == null)){ var f = ((((!((self__.ratom == null)))?((((self__.ratom.cljs$lang$protocol_mask$partition0$ & (32768))) || (self__.ratom.cljs$core$IDeref$))?true:(((!self__.ratom.cljs$lang$protocol_mask$partition0$))?cljs.core.native_satisfies_QMARK_.call(null,cljs.core.IDeref,self__.ratom):false)):cljs.core.native_satisfies_QMARK_.call(null,cljs.core.IDeref,self__.ratom)))?((function (temp__4659__auto__,oldstate,this$__$1){ return (function (){ return cljs.core.get_in.call(null,cljs.core.deref.call(null,self__.ratom),self__.path); });})(temp__4659__auto__,oldstate,this$__$1)) :((function (temp__4659__auto__,oldstate,this$__$1){ return (function (){ return self__.ratom.call(null,self__.path); });})(temp__4659__auto__,oldstate,this$__$1)) ); return reagent.ratom.cached_reaction.call(null,f,self__.ratom,self__.path,this$__$1,null); } else { var r = temp__4659__auto__; return cljs.core._deref.call(null,r); } })(); this$__$1._set_state(oldstate,newstate); return newstate; }); reagent.ratom.RCursor.getBasis = (function (){ return new cljs.core.PersistentVector(null, 5, 5, cljs.core.PersistentVector.EMPTY_NODE, [new cljs.core.Symbol(null,"ratom","ratom",1514010260,null),new cljs.core.Symbol(null,"path","path",1452340359,null),cljs.core.with_meta(new cljs.core.Symbol(null,"reaction","reaction",2131401315,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"state","state",-348086572,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"watches","watches",1367433992,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null))], null); }); reagent.ratom.RCursor.cljs$lang$type = true; reagent.ratom.RCursor.cljs$lang$ctorStr = "reagent.ratom/RCursor"; reagent.ratom.RCursor.cljs$lang$ctorPrWriter = (function (this__25736__auto__,writer__25737__auto__,opt__25738__auto__){ return cljs.core._write.call(null,writer__25737__auto__,"reagent.ratom/RCursor"); }); reagent.ratom.__GT_RCursor = (function reagent$ratom$__GT_RCursor(ratom,path,reaction,state,watches){ return (new reagent.ratom.RCursor(ratom,path,reaction,state,watches)); }); reagent.ratom.cursor = (function reagent$ratom$cursor(src,path){ if((function (){var or__25130__auto__ = ((!((src == null)))?(((false) || (src.reagent$ratom$IReactiveAtom$))?true:(((!src.cljs$lang$protocol_mask$partition$))?cljs.core.native_satisfies_QMARK_.call(null,reagent.ratom.IReactiveAtom,src):false)):cljs.core.native_satisfies_QMARK_.call(null,reagent.ratom.IReactiveAtom,src)); if(or__25130__auto__){ return or__25130__auto__; } else { return (cljs.core.ifn_QMARK_.call(null,src)) && (!(cljs.core.vector_QMARK_.call(null,src))); } })()){ } else { throw (new Error([cljs.core.str("Assert failed: "),cljs.core.str([cljs.core.str("src must be a reactive atom or a function, not "),cljs.core.str(cljs.core.pr_str.call(null,src))].join('')),cljs.core.str("\n"),cljs.core.str("(or (satisfies? IReactiveAtom src) (and (ifn? src) (not (vector? src))))")].join(''))); } return (new reagent.ratom.RCursor(src,path,null,null,null)); }); reagent.ratom.with_let_destroy = (function reagent$ratom$with_let_destroy(v){ var temp__4661__auto__ = v.destroy; if((temp__4661__auto__ == null)){ return null; } else { var f = temp__4661__auto__; return f.call(null); } }); reagent.ratom.with_let_values = (function reagent$ratom$with_let_values(key){ var temp__4659__auto__ = reagent.ratom._STAR_ratom_context_STAR_; if((temp__4659__auto__ == null)){ return []; } else { var c = temp__4659__auto__; return reagent.ratom.cached_reaction.call(null,cljs.core.array,c,key,null,reagent.ratom.with_let_destroy); } }); /** * @interface */ reagent.ratom.IDisposable = function(){}; reagent.ratom.dispose_BANG_ = (function reagent$ratom$dispose_BANG_(this$){ if((!((this$ == null))) && (!((this$.reagent$ratom$IDisposable$dispose_BANG_$arity$1 == null)))){ return this$.reagent$ratom$IDisposable$dispose_BANG_$arity$1(this$); } else { var x__25793__auto__ = (((this$ == null))?null:this$); var m__25794__auto__ = (reagent.ratom.dispose_BANG_[goog.typeOf(x__25793__auto__)]); if(!((m__25794__auto__ == null))){ return m__25794__auto__.call(null,this$); } else { var m__25794__auto____$1 = (reagent.ratom.dispose_BANG_["_"]); if(!((m__25794__auto____$1 == null))){ return m__25794__auto____$1.call(null,this$); } else { throw cljs.core.missing_protocol.call(null,"IDisposable.dispose!",this$); } } } }); reagent.ratom.add_on_dispose_BANG_ = (function reagent$ratom$add_on_dispose_BANG_(this$,f){ if((!((this$ == null))) && (!((this$.reagent$ratom$IDisposable$add_on_dispose_BANG_$arity$2 == null)))){ return this$.reagent$ratom$IDisposable$add_on_dispose_BANG_$arity$2(this$,f); } else { var x__25793__auto__ = (((this$ == null))?null:this$); var m__25794__auto__ = (reagent.ratom.add_on_dispose_BANG_[goog.typeOf(x__25793__auto__)]); if(!((m__25794__auto__ == null))){ return m__25794__auto__.call(null,this$,f); } else { var m__25794__auto____$1 = (reagent.ratom.add_on_dispose_BANG_["_"]); if(!((m__25794__auto____$1 == null))){ return m__25794__auto____$1.call(null,this$,f); } else { throw cljs.core.missing_protocol.call(null,"IDisposable.add-on-dispose!",this$); } } } }); /** * @interface */ reagent.ratom.IRunnable = function(){}; reagent.ratom.run = (function reagent$ratom$run(this$){ if((!((this$ == null))) && (!((this$.reagent$ratom$IRunnable$run$arity$1 == null)))){ return this$.reagent$ratom$IRunnable$run$arity$1(this$); } else { var x__25793__auto__ = (((this$ == null))?null:this$); var m__25794__auto__ = (reagent.ratom.run[goog.typeOf(x__25793__auto__)]); if(!((m__25794__auto__ == null))){ return m__25794__auto__.call(null,this$); } else { var m__25794__auto____$1 = (reagent.ratom.run["_"]); if(!((m__25794__auto____$1 == null))){ return m__25794__auto____$1.call(null,this$); } else { throw cljs.core.missing_protocol.call(null,"IRunnable.run",this$); } } } }); reagent.ratom.handle_reaction_change = (function reagent$ratom$handle_reaction_change(this$,sender,old,new$){ return this$._handle_change(sender,old,new$); }); /** * @constructor * @implements {cljs.core.IWatchable} * @implements {cljs.core.IAtom} * @implements {cljs.core.IEquiv} * @implements {cljs.core.IHash} * @implements {cljs.core.IReset} * @implements {cljs.core.ISwap} * @implements {reagent.ratom.IReactiveAtom} * @implements {reagent.ratom.IRunnable} * @implements {reagent.ratom.IDisposable} * @implements {cljs.core.IDeref} * @implements {cljs.core.IPrintWithWriter} * @implements {reagent.ratom.Object} */ reagent.ratom.Reaction = (function (f,state,dirty_QMARK_,nocache_QMARK_,watching,watches,auto_run,caught){ this.f = f; this.state = state; this.dirty_QMARK_ = dirty_QMARK_; this.nocache_QMARK_ = nocache_QMARK_; this.watching = watching; this.watches = watches; this.auto_run = auto_run; this.caught = caught; this.cljs$lang$protocol_mask$partition0$ = 2153807872; this.cljs$lang$protocol_mask$partition1$ = 114690; }) reagent.ratom.Reaction.prototype._peek_at = (function (){ var self__ = this; var this$ = this; var _STAR_ratom_context_STAR_26604 = reagent.ratom._STAR_ratom_context_STAR_; reagent.ratom._STAR_ratom_context_STAR_ = null; try{return cljs.core._deref.call(null,this$); }finally {reagent.ratom._STAR_ratom_context_STAR_ = _STAR_ratom_context_STAR_26604; }}); reagent.ratom.Reaction.prototype._handle_change = (function (sender,oldval,newval){ var self__ = this; var this$ = this; if(((oldval === newval)) || (self__.dirty_QMARK_)){ return null; } else { if((self__.auto_run == null)){ self__.dirty_QMARK_ = true; return reagent.ratom.rea_enqueue.call(null,this$); } else { if(self__.auto_run === true){ return this$._run(false); } else { return self__.auto_run.call(null,this$); } } } }); reagent.ratom.Reaction.prototype._update_watching = (function (derefed){ var self__ = this; var this$ = this; var new$ = cljs.core.set.call(null,derefed); var old = cljs.core.set.call(null,self__.watching); self__.watching = derefed; var seq__26605_26621 = cljs.core.seq.call(null,clojure.set.difference.call(null,new$,old)); var chunk__26606_26622 = null; var count__26607_26623 = (0); var i__26608_26624 = (0); while(true){ if((i__26608_26624 < count__26607_26623)){ var w_26625 = cljs.core._nth.call(null,chunk__26606_26622,i__26608_26624); cljs.core._add_watch.call(null,w_26625,this$,reagent.ratom.handle_reaction_change); var G__26626 = seq__26605_26621; var G__26627 = chunk__26606_26622; var G__26628 = count__26607_26623; var G__26629 = (i__26608_26624 + (1)); seq__26605_26621 = G__26626; chunk__26606_26622 = G__26627; count__26607_26623 = G__26628; i__26608_26624 = G__26629; continue; } else { var temp__4657__auto___26630 = cljs.core.seq.call(null,seq__26605_26621); if(temp__4657__auto___26630){ var seq__26605_26631__$1 = temp__4657__auto___26630; if(cljs.core.chunked_seq_QMARK_.call(null,seq__26605_26631__$1)){ var c__25941__auto___26632 = cljs.core.chunk_first.call(null,seq__26605_26631__$1); var G__26633 = cljs.core.chunk_rest.call(null,seq__26605_26631__$1); var G__26634 = c__25941__auto___26632; var G__26635 = cljs.core.count.call(null,c__25941__auto___26632); var G__26636 = (0); seq__26605_26621 = G__26633; chunk__26606_26622 = G__26634; count__26607_26623 = G__26635; i__26608_26624 = G__26636; continue; } else { var w_26637 = cljs.core.first.call(null,seq__26605_26631__$1); cljs.core._add_watch.call(null,w_26637,this$,reagent.ratom.handle_reaction_change); var G__26638 = cljs.core.next.call(null,seq__26605_26631__$1); var G__26639 = null; var G__26640 = (0); var G__26641 = (0); seq__26605_26621 = G__26638; chunk__26606_26622 = G__26639; count__26607_26623 = G__26640; i__26608_26624 = G__26641; continue; } } else { } } break; } var seq__26609 = cljs.core.seq.call(null,clojure.set.difference.call(null,old,new$)); var chunk__26610 = null; var count__26611 = (0); var i__26612 = (0); while(true){ if((i__26612 < count__26611)){ var w = cljs.core._nth.call(null,chunk__26610,i__26612); cljs.core._remove_watch.call(null,w,this$); var G__26642 = seq__26609; var G__26643 = chunk__26610; var G__26644 = count__26611; var G__26645 = (i__26612 + (1)); seq__26609 = G__26642; chunk__26610 = G__26643; count__26611 = G__26644; i__26612 = G__26645; continue; } else { var temp__4657__auto__ = cljs.core.seq.call(null,seq__26609); if(temp__4657__auto__){ var seq__26609__$1 = temp__4657__auto__; if(cljs.core.chunked_seq_QMARK_.call(null,seq__26609__$1)){ var c__25941__auto__ = cljs.core.chunk_first.call(null,seq__26609__$1); var G__26646 = cljs.core.chunk_rest.call(null,seq__26609__$1); var G__26647 = c__25941__auto__; var G__26648 = cljs.core.count.call(null,c__25941__auto__); var G__26649 = (0); seq__26609 = G__26646; chunk__26610 = G__26647; count__26611 = G__26648; i__26612 = G__26649; continue; } else { var w = cljs.core.first.call(null,seq__26609__$1); cljs.core._remove_watch.call(null,w,this$); var G__26650 = cljs.core.next.call(null,seq__26609__$1); var G__26651 = null; var G__26652 = (0); var G__26653 = (0); seq__26609 = G__26650; chunk__26610 = G__26651; count__26611 = G__26652; i__26612 = G__26653; continue; } } else { return null; } } break; } }); reagent.ratom.Reaction.prototype._queued_run = (function (){ var self__ = this; var this$ = this; if((self__.dirty_QMARK_) && (cljs.core.some_QMARK_.call(null,self__.watching))){ return this$._run(true); } else { return null; } }); reagent.ratom.Reaction.prototype._try_capture = (function (f__$1){ var self__ = this; var this$ = this; try{self__.caught = null; return reagent.ratom.deref_capture.call(null,f__$1,this$); }catch (e26613){var e = e26613; self__.state = e; self__.caught = e; return self__.dirty_QMARK_ = false; }}); reagent.ratom.Reaction.prototype._run = (function (check){ var self__ = this; var this$ = this; var oldstate = self__.state; var res = (cljs.core.truth_(check)?this$._try_capture(self__.f):reagent.ratom.deref_capture.call(null,self__.f,this$)); if(self__.nocache_QMARK_){ } else { self__.state = res; if(((self__.watches == null)) || (cljs.core._EQ_.call(null,oldstate,res))){ } else { reagent.ratom.notify_w.call(null,this$,oldstate,res); } } return res; }); reagent.ratom.Reaction.prototype._set_opts = (function (p__26614){ var self__ = this; var map__26615 = p__26614; var map__26615__$1 = ((((!((map__26615 == null)))?((((map__26615.cljs$lang$protocol_mask$partition0$ & (64))) || (map__26615.cljs$core$ISeq$))?true:false):false))?cljs.core.apply.call(null,cljs.core.hash_map,map__26615):map__26615); var auto_run__$1 = cljs.core.get.call(null,map__26615__$1,new cljs.core.Keyword(null,"auto-run","auto-run",1958400437)); var on_set = cljs.core.get.call(null,map__26615__$1,new cljs.core.Keyword(null,"on-set","on-set",-140953470)); var on_dispose = cljs.core.get.call(null,map__26615__$1,new cljs.core.Keyword(null,"on-dispose","on-dispose",2105306360)); var no_cache = cljs.core.get.call(null,map__26615__$1,new cljs.core.Keyword(null,"no-cache","no-cache",1588056370)); var this$ = this; if(cljs.core.some_QMARK_.call(null,auto_run__$1)){ this$.auto_run = auto_run__$1; } else { } if(cljs.core.some_QMARK_.call(null,on_set)){ this$.on_set = on_set; } else { } if(cljs.core.some_QMARK_.call(null,on_dispose)){ this$.on_dispose = on_dispose; } else { } if(cljs.core.some_QMARK_.call(null,no_cache)){ return this$.nocache_QMARK_ = no_cache; } else { return null; } }); reagent.ratom.Reaction.prototype.reagent$ratom$IReactiveAtom$ = true; reagent.ratom.Reaction.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = (function (a,w,opts){ var self__ = this; var a__$1 = this; return reagent.ratom.pr_atom.call(null,a__$1,w,opts,[cljs.core.str("Reaction "),cljs.core.str(cljs.core.hash.call(null,a__$1)),cljs.core.str(":")].join('')); }); reagent.ratom.Reaction.prototype.cljs$core$IHash$_hash$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; return goog.getUid(this$__$1); }); reagent.ratom.Reaction.prototype.cljs$core$IEquiv$_equiv$arity$2 = (function (o,other){ var self__ = this; var o__$1 = this; return (o__$1 === other); }); reagent.ratom.Reaction.prototype.reagent$ratom$IDisposable$ = true; reagent.ratom.Reaction.prototype.reagent$ratom$IDisposable$dispose_BANG_$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; var s = self__.state; var wg = self__.watching; self__.watching = null; self__.state = null; self__.auto_run = null; self__.dirty_QMARK_ = true; var seq__26617_26654 = cljs.core.seq.call(null,cljs.core.set.call(null,wg)); var chunk__26618_26655 = null; var count__26619_26656 = (0); var i__26620_26657 = (0); while(true){ if((i__26620_26657 < count__26619_26656)){ var w_26658 = cljs.core._nth.call(null,chunk__26618_26655,i__26620_26657); cljs.core._remove_watch.call(null,w_26658,this$__$1); var G__26659 = seq__26617_26654; var G__26660 = chunk__26618_26655; var G__26661 = count__26619_26656; var G__26662 = (i__26620_26657 + (1)); seq__26617_26654 = G__26659; chunk__26618_26655 = G__26660; count__26619_26656 = G__26661; i__26620_26657 = G__26662; continue; } else { var temp__4657__auto___26663 = cljs.core.seq.call(null,seq__26617_26654); if(temp__4657__auto___26663){ var seq__26617_26664__$1 = temp__4657__auto___26663; if(cljs.core.chunked_seq_QMARK_.call(null,seq__26617_26664__$1)){ var c__25941__auto___26665 = cljs.core.chunk_first.call(null,seq__26617_26664__$1); var G__26666 = cljs.core.chunk_rest.call(null,seq__26617_26664__$1); var G__26667 = c__25941__auto___26665; var G__26668 = cljs.core.count.call(null,c__25941__auto___26665); var G__26669 = (0); seq__26617_26654 = G__26666; chunk__26618_26655 = G__26667; count__26619_26656 = G__26668; i__26620_26657 = G__26669; continue; } else { var w_26670 = cljs.core.first.call(null,seq__26617_26664__$1); cljs.core._remove_watch.call(null,w_26670,this$__$1); var G__26671 = cljs.core.next.call(null,seq__26617_26664__$1); var G__26672 = null; var G__26673 = (0); var G__26674 = (0); seq__26617_26654 = G__26671; chunk__26618_26655 = G__26672; count__26619_26656 = G__26673; i__26620_26657 = G__26674; continue; } } else { } } break; } if(cljs.core.some_QMARK_.call(null,this$__$1.on_dispose)){ this$__$1.on_dispose(s); } else { } var temp__4661__auto__ = this$__$1.on_dispose_arr; if((temp__4661__auto__ == null)){ return null; } else { var a = temp__4661__auto__; var n__26045__auto__ = a.length; var i = (0); while(true){ if((i < n__26045__auto__)){ (a[i]).call(null,this$__$1); var G__26675 = (i + (1)); i = G__26675; continue; } else { return null; } break; } } }); reagent.ratom.Reaction.prototype.reagent$ratom$IDisposable$add_on_dispose_BANG_$arity$2 = (function (this$,f__$1){ var self__ = this; var this$__$1 = this; var temp__4659__auto__ = this$__$1.on_dispose_arr; if((temp__4659__auto__ == null)){ return this$__$1.on_dispose_arr = [f__$1]; } else { var a = temp__4659__auto__; return a.push(f__$1); } }); reagent.ratom.Reaction.prototype.cljs$core$IReset$_reset_BANG_$arity$2 = (function (a,newval){ var self__ = this; var a__$1 = this; if(cljs.core.fn_QMARK_.call(null,a__$1.on_set)){ } else { throw (new Error([cljs.core.str("Assert failed: "),cljs.core.str("Reaction is read only."),cljs.core.str("\n"),cljs.core.str("(fn? (.-on-set a))")].join(''))); } var oldval = self__.state; self__.state = newval; a__$1.on_set(oldval,newval); reagent.ratom.notify_w.call(null,a__$1,oldval,newval); return newval; }); reagent.ratom.Reaction.prototype.cljs$core$ISwap$_swap_BANG_$arity$2 = (function (a,f__$1){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f__$1.call(null,a__$1._peek_at())); }); reagent.ratom.Reaction.prototype.cljs$core$ISwap$_swap_BANG_$arity$3 = (function (a,f__$1,x){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f__$1.call(null,a__$1._peek_at(),x)); }); reagent.ratom.Reaction.prototype.cljs$core$ISwap$_swap_BANG_$arity$4 = (function (a,f__$1,x,y){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f__$1.call(null,a__$1._peek_at(),x,y)); }); reagent.ratom.Reaction.prototype.cljs$core$ISwap$_swap_BANG_$arity$5 = (function (a,f__$1,x,y,more){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,cljs.core.apply.call(null,f__$1,a__$1._peek_at(),x,y,more)); }); reagent.ratom.Reaction.prototype.reagent$ratom$IRunnable$ = true; reagent.ratom.Reaction.prototype.reagent$ratom$IRunnable$run$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; reagent.ratom.flush_BANG_.call(null); return this$__$1._run(false); }); reagent.ratom.Reaction.prototype.cljs$core$IWatchable$_notify_watches$arity$3 = (function (this$,old,new$){ var self__ = this; var this$__$1 = this; return reagent.ratom.notify_w.call(null,this$__$1,old,new$); }); reagent.ratom.Reaction.prototype.cljs$core$IWatchable$_add_watch$arity$3 = (function (this$,key,f__$1){ var self__ = this; var this$__$1 = this; return reagent.ratom.add_w.call(null,this$__$1,key,f__$1); }); reagent.ratom.Reaction.prototype.cljs$core$IWatchable$_remove_watch$arity$2 = (function (this$,key){ var self__ = this; var this$__$1 = this; var was_empty = cljs.core.empty_QMARK_.call(null,self__.watches); reagent.ratom.remove_w.call(null,this$__$1,key); if((!(was_empty)) && (cljs.core.empty_QMARK_.call(null,self__.watches)) && ((self__.auto_run == null))){ return reagent.ratom.dispose_BANG_.call(null,this$__$1); } else { return null; } }); reagent.ratom.Reaction.prototype.cljs$core$IDeref$_deref$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; var temp__4661__auto___26676 = self__.caught; if((temp__4661__auto___26676 == null)){ } else { var e_26677 = temp__4661__auto___26676; throw e_26677; } var non_reactive_26678 = (reagent.ratom._STAR_ratom_context_STAR_ == null); if(non_reactive_26678){ reagent.ratom.flush_BANG_.call(null); } else { } if((non_reactive_26678) && ((self__.auto_run == null))){ if(self__.dirty_QMARK_){ var oldstate_26679 = self__.state; self__.state = self__.f.call(null); if(((self__.watches == null)) || (cljs.core._EQ_.call(null,oldstate_26679,self__.state))){ } else { reagent.ratom.notify_w.call(null,this$__$1,oldstate_26679,self__.state); } } else { } } else { reagent.ratom.notify_deref_watcher_BANG_.call(null,this$__$1); if(self__.dirty_QMARK_){ this$__$1._run(false); } else { } } return self__.state; }); reagent.ratom.Reaction.getBasis = (function (){ return new cljs.core.PersistentVector(null, 8, 5, cljs.core.PersistentVector.EMPTY_NODE, [new cljs.core.Symbol(null,"f","f",43394975,null),cljs.core.with_meta(new cljs.core.Symbol(null,"state","state",-348086572,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"dirty?","dirty?",-419314319,null),new cljs.core.PersistentArrayMap(null, 2, [new cljs.core.Keyword(null,"tag","tag",-1290361223),new cljs.core.Symbol(null,"boolean","boolean",-278886877,null),new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"nocache?","nocache?",-1065670978,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"tag","tag",-1290361223),new cljs.core.Symbol(null,"boolean","boolean",-278886877,null)], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"watching","watching",1947648227,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"watches","watches",1367433992,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"auto-run","auto-run",-696035332,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"caught","caught",2084008322,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null))], null); }); reagent.ratom.Reaction.cljs$lang$type = true; reagent.ratom.Reaction.cljs$lang$ctorStr = "reagent.ratom/Reaction"; reagent.ratom.Reaction.cljs$lang$ctorPrWriter = (function (this__25736__auto__,writer__25737__auto__,opt__25738__auto__){ return cljs.core._write.call(null,writer__25737__auto__,"reagent.ratom/Reaction"); }); reagent.ratom.__GT_Reaction = (function reagent$ratom$__GT_Reaction(f,state,dirty_QMARK_,nocache_QMARK_,watching,watches,auto_run,caught){ return (new reagent.ratom.Reaction(f,state,dirty_QMARK_,nocache_QMARK_,watching,watches,auto_run,caught)); }); reagent.ratom.make_reaction = (function reagent$ratom$make_reaction(var_args){ var args__26212__auto__ = []; var len__26205__auto___26685 = arguments.length; var i__26206__auto___26686 = (0); while(true){ if((i__26206__auto___26686 < len__26205__auto___26685)){ args__26212__auto__.push((arguments[i__26206__auto___26686])); var G__26687 = (i__26206__auto___26686 + (1)); i__26206__auto___26686 = G__26687; continue; } else { } break; } var argseq__26213__auto__ = ((((1) < args__26212__auto__.length))?(new cljs.core.IndexedSeq(args__26212__auto__.slice((1)),(0),null)):null); return reagent.ratom.make_reaction.cljs$core$IFn$_invoke$arity$variadic((arguments[(0)]),argseq__26213__auto__); }); reagent.ratom.make_reaction.cljs$core$IFn$_invoke$arity$variadic = (function (f,p__26682){ var map__26683 = p__26682; var map__26683__$1 = ((((!((map__26683 == null)))?((((map__26683.cljs$lang$protocol_mask$partition0$ & (64))) || (map__26683.cljs$core$ISeq$))?true:false):false))?cljs.core.apply.call(null,cljs.core.hash_map,map__26683):map__26683); var auto_run = cljs.core.get.call(null,map__26683__$1,new cljs.core.Keyword(null,"auto-run","auto-run",1958400437)); var on_set = cljs.core.get.call(null,map__26683__$1,new cljs.core.Keyword(null,"on-set","on-set",-140953470)); var on_dispose = cljs.core.get.call(null,map__26683__$1,new cljs.core.Keyword(null,"on-dispose","on-dispose",2105306360)); var reaction = (new reagent.ratom.Reaction(f,null,true,false,null,null,null,null)); reaction._set_opts(new cljs.core.PersistentArrayMap(null, 3, [new cljs.core.Keyword(null,"auto-run","auto-run",1958400437),auto_run,new cljs.core.Keyword(null,"on-set","on-set",-140953470),on_set,new cljs.core.Keyword(null,"on-dispose","on-dispose",2105306360),on_dispose], null)); return reaction; }); reagent.ratom.make_reaction.cljs$lang$maxFixedArity = (1); reagent.ratom.make_reaction.cljs$lang$applyTo = (function (seq26680){ var G__26681 = cljs.core.first.call(null,seq26680); var seq26680__$1 = cljs.core.next.call(null,seq26680); return reagent.ratom.make_reaction.cljs$core$IFn$_invoke$arity$variadic(G__26681,seq26680__$1); }); reagent.ratom.temp_reaction = reagent.ratom.make_reaction.call(null,null); reagent.ratom.run_in_reaction = (function reagent$ratom$run_in_reaction(f,obj,key,run,opts){ var r = reagent.ratom.temp_reaction; var res = reagent.ratom.deref_capture.call(null,f,r); if((r.watching == null)){ } else { reagent.ratom.temp_reaction = reagent.ratom.make_reaction.call(null,null); r._set_opts(opts); r.f = f; r.auto_run = ((function (r,res){ return (function (){ return run.call(null,obj); });})(r,res)) ; (obj[key] = r); } return res; }); reagent.ratom.check_derefs = (function reagent$ratom$check_derefs(f){ var ctx = {}; var res = reagent.ratom.in_context.call(null,ctx,f); return new cljs.core.PersistentVector(null, 2, 5, cljs.core.PersistentVector.EMPTY_NODE, [res,cljs.core.some_QMARK_.call(null,ctx.captured)], null); }); /** * @constructor * @implements {cljs.core.IWatchable} * @implements {cljs.core.IAtom} * @implements {cljs.core.IEquiv} * @implements {cljs.core.IReset} * @implements {cljs.core.ISwap} * @implements {cljs.core.IDeref} * @implements {cljs.core.IPrintWithWriter} */ reagent.ratom.Wrapper = (function (state,callback,changed,watches){ this.state = state; this.callback = callback; this.changed = changed; this.watches = watches; this.cljs$lang$protocol_mask$partition1$ = 114690; this.cljs$lang$protocol_mask$partition0$ = 2149613568; }) reagent.ratom.Wrapper.prototype.cljs$core$IDeref$_deref$arity$1 = (function (this$){ var self__ = this; var this$__$1 = this; if((self__.changed) && (cljs.core.some_QMARK_.call(null,reagent.ratom._STAR_ratom_context_STAR_))){ if(cljs.core.truth_(reagent.debug.has_console)){ (cljs.core.truth_(reagent.debug.tracking)?reagent.debug.track_console:console).warn([cljs.core.str("Warning: "),cljs.core.str("derefing stale wrap: "),cljs.core.str(cljs.core.pr_str.call(null,this$__$1))].join('')); } else { } } else { } return self__.state; }); reagent.ratom.Wrapper.prototype.cljs$core$IReset$_reset_BANG_$arity$2 = (function (this$,newval){ var self__ = this; var this$__$1 = this; var oldval = self__.state; self__.changed = true; self__.state = newval; if(cljs.core.some_QMARK_.call(null,self__.watches)){ reagent.ratom.notify_w.call(null,this$__$1,oldval,newval); } else { } self__.callback.call(null,newval); return newval; }); reagent.ratom.Wrapper.prototype.cljs$core$ISwap$_swap_BANG_$arity$2 = (function (a,f){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,self__.state)); }); reagent.ratom.Wrapper.prototype.cljs$core$ISwap$_swap_BANG_$arity$3 = (function (a,f,x){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,self__.state,x)); }); reagent.ratom.Wrapper.prototype.cljs$core$ISwap$_swap_BANG_$arity$4 = (function (a,f,x,y){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,f.call(null,self__.state,x,y)); }); reagent.ratom.Wrapper.prototype.cljs$core$ISwap$_swap_BANG_$arity$5 = (function (a,f,x,y,more){ var self__ = this; var a__$1 = this; return cljs.core._reset_BANG_.call(null,a__$1,cljs.core.apply.call(null,f,self__.state,x,y,more)); }); reagent.ratom.Wrapper.prototype.cljs$core$IEquiv$_equiv$arity$2 = (function (_,other){ var self__ = this; var ___$1 = this; return ((other instanceof reagent.ratom.Wrapper)) && (!(self__.changed)) && (cljs.core.not.call(null,other.changed)) && (cljs.core._EQ_.call(null,self__.state,other.state)) && (cljs.core._EQ_.call(null,self__.callback,other.callback)); }); reagent.ratom.Wrapper.prototype.cljs$core$IWatchable$_notify_watches$arity$3 = (function (this$,old,new$){ var self__ = this; var this$__$1 = this; return reagent.ratom.notify_w.call(null,this$__$1,old,new$); }); reagent.ratom.Wrapper.prototype.cljs$core$IWatchable$_add_watch$arity$3 = (function (this$,key,f){ var self__ = this; var this$__$1 = this; return reagent.ratom.add_w.call(null,this$__$1,key,f); }); reagent.ratom.Wrapper.prototype.cljs$core$IWatchable$_remove_watch$arity$2 = (function (this$,key){ var self__ = this; var this$__$1 = this; return reagent.ratom.remove_w.call(null,this$__$1,key); }); reagent.ratom.Wrapper.prototype.cljs$core$IPrintWithWriter$_pr_writer$arity$3 = (function (a,w,opts){ var self__ = this; var a__$1 = this; return reagent.ratom.pr_atom.call(null,a__$1,w,opts,"Wrap:"); }); reagent.ratom.Wrapper.getBasis = (function (){ return new cljs.core.PersistentVector(null, 4, 5, cljs.core.PersistentVector.EMPTY_NODE, [cljs.core.with_meta(new cljs.core.Symbol(null,"state","state",-348086572,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),new cljs.core.Symbol(null,"callback","callback",935395299,null),cljs.core.with_meta(new cljs.core.Symbol(null,"changed","changed",-2083710852,null),new cljs.core.PersistentArrayMap(null, 2, [new cljs.core.Keyword(null,"tag","tag",-1290361223),new cljs.core.Symbol(null,"boolean","boolean",-278886877,null),new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null)),cljs.core.with_meta(new cljs.core.Symbol(null,"watches","watches",1367433992,null),new cljs.core.PersistentArrayMap(null, 1, [new cljs.core.Keyword(null,"mutable","mutable",875778266),true], null))], null); }); reagent.ratom.Wrapper.cljs$lang$type = true; reagent.ratom.Wrapper.cljs$lang$ctorStr = "reagent.ratom/Wrapper"; reagent.ratom.Wrapper.cljs$lang$ctorPrWriter = (function (this__25736__auto__,writer__25737__auto__,opt__25738__auto__){ return cljs.core._write.call(null,writer__25737__auto__,"reagent.ratom/Wrapper"); }); reagent.ratom.__GT_Wrapper = (function reagent$ratom$__GT_Wrapper(state,callback,changed,watches){ return (new reagent.ratom.Wrapper(state,callback,changed,watches)); }); reagent.ratom.make_wrapper = (function reagent$ratom$make_wrapper(value,callback_fn,args){ return (new reagent.ratom.Wrapper(value,(new reagent.impl.util.partial_ifn(callback_fn,args,null)),false,null)); }); //# sourceMappingURL=ratom.js.map?rel=1603199188062