| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- smalltalk.addPackage('Trapped-Frontend', {});
- smalltalk.addClass('TrappedBinder', smalltalk.Object, ['brush'], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_brush_",
- smalltalk.method({
- selector: "brush:",
- category: 'accessing',
- fn: function (aTagBrush){
- var self=this;
- self["@brush"]=aTagBrush;
- return self},
- args: ["aTagBrush"],
- source: "brush: aTagBrush\x0a\x09brush := aTagBrush",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedBinder);
- smalltalk.addMethod(
- "_installFor_",
- smalltalk.method({
- selector: "installFor:",
- category: 'action',
- fn: function (path){
- var self=this;
- smalltalk.send(self["@brush"],"_trap_read_",[path,smalltalk.send(self,"_showBlock",[])]);
- return self},
- args: ["path"],
- source: "installFor: path\x0a\x09brush trap: path read: self showBlock",
- messageSends: ["trap:read:", "showBlock"],
- referencedClasses: []
- }),
- smalltalk.TrappedBinder);
- smalltalk.addMethod(
- "_prim_",
- smalltalk.method({
- selector: "prim:",
- category: 'converting',
- fn: function (anObject){
- var self=this;
- return anObject.valueOf();
- ;
- return self},
- args: ["anObject"],
- source: "prim: anObject\x0a\x09<return anObject.valueOf()>",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedBinder);
- smalltalk.addMethod(
- "_showBlock",
- smalltalk.method({
- selector: "showBlock",
- category: 'action',
- fn: function (){
- var self=this;
- var $3,$2,$1;
- $1=(function(model){
- smalltalk.send(self["@brush"],"_empty",[]);
- if(($receiver = model) == nil || $receiver == undefined){
- $3=(function(){
- });
- } else {
- $3=model;
- };
- $2=smalltalk.send(self["@brush"],"_with_",[$3]);
- return $2;
- });
- return $1;
- },
- args: [],
- source: "showBlock\x0a\x09^[ :model | brush empty; with: (model ifNil: [[]]) ]",
- messageSends: ["empty", "with:", "ifNil:"],
- referencedClasses: []
- }),
- smalltalk.TrappedBinder);
- smalltalk.addClass('TrappedAttrBinder', smalltalk.TrappedBinder, ['attr'], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_attr_",
- smalltalk.method({
- selector: "attr:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- self["@attr"]=aString;
- return self},
- args: ["aString"],
- source: "attr: aString\x0a\x09attr := aString",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedAttrBinder);
- smalltalk.addMethod(
- "_installFor_",
- smalltalk.method({
- selector: "installFor:",
- category: 'action',
- fn: function (path){
- var self=this;
- smalltalk.send(self,"_installFor_",[path],smalltalk.TrappedBinder);
- smalltalk.send(path,"_trapDescend_",[(function(){
- var snap;
- snap=smalltalk.send(smalltalk.send((smalltalk.Trapped || Trapped),"_current",[]),"_snapshot",[]);
- snap;
- return smalltalk.send(self["@brush"],"_onChange_",[(function(){
- return smalltalk.send(smalltalk.send(snap,"_model",[]),"_modify_do_",[smalltalk.send(smalltalk.send(snap,"_path",[]),"_allButFirst",[]),(function(){
- return smalltalk.send(smalltalk.send(smalltalk.send(self["@brush"],"_asJQuery",[]),"_attr_",["checked"]),"_notNil",[]);
- })]);
- })]);
- })]);
- return self},
- args: ["path"],
- source: "installFor: path\x0a\x09super installFor: path.\x0a path trapDescend: [ | snap |\x0a snap := Trapped current snapshot.\x0a\x09 brush onChange: [ snap model modify: snap path allButFirst do: [\x0a (brush asJQuery attr: 'checked') notNil\x0a ]]\x0a ]",
- messageSends: ["installFor:", "trapDescend:", "snapshot", "current", "onChange:", "modify:do:", "allButFirst", "path", "notNil", "attr:", "asJQuery", "model"],
- referencedClasses: ["Trapped"]
- }),
- smalltalk.TrappedAttrBinder);
- smalltalk.addMethod(
- "_showBlock",
- smalltalk.method({
- selector: "showBlock",
- category: 'action',
- fn: function (){
- var self=this;
- var $1;
- $1=(function(model){
- return smalltalk.send(smalltalk.send(self["@brush"],"_asJQuery",[]),"_attr_put_",[self["@attr"],smalltalk.send(self,"_prim_",[model])]);
- });
- return $1;
- },
- args: [],
- source: "showBlock\x0a\x09^[ :model | brush asJQuery attr: attr put: (self prim: model) ]",
- messageSends: ["attr:put:", "prim:", "asJQuery"],
- referencedClasses: []
- }),
- smalltalk.TrappedAttrBinder);
- smalltalk.addClass('TrappedDispatcher', smalltalk.KeyedPubSubBase, [], 'Trapped-Frontend');
- smalltalk.TrappedDispatcher.comment="I am base class for change event dispatchers.\x0aI manage changed path - action block subscriptions.\x0aThese subscription are instances of TrappedSubscription\x0a\x0aMy subclasses need to provide implementation for:\x0a\x09add:\x0a do:\x0a clean\x0a (optionally) run\x0a"
- smalltalk.addMethod(
- "_subscriptionKey_block_",
- smalltalk.method({
- selector: "subscriptionKey:block:",
- category: 'action',
- fn: function (key,aBlock){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send((smalltalk.TrappedSubscription || TrappedSubscription),"_new",[]);
- smalltalk.send($2,"_key_block_",[key,aBlock]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- },
- args: ["key", "aBlock"],
- source: "subscriptionKey: key block: aBlock\x0a\x09^TrappedSubscription new key: key block: aBlock; yourself\x0a",
- messageSends: ["key:block:", "new", "yourself"],
- referencedClasses: ["TrappedSubscription"]
- }),
- smalltalk.TrappedDispatcher);
- smalltalk.addClass('TrappedDumbView', smalltalk.Widget, [], 'Trapped-Frontend');
- smalltalk.TrappedDumbView.comment="I just read and show an actual path."
- smalltalk.addMethod(
- "_renderOn_",
- smalltalk.method({
- selector: "renderOn:",
- category: 'rendering',
- fn: function (html){
- var self=this;
- smalltalk.send(smalltalk.send(html,"_root",[]),"_trap_",[[]]);
- return self},
- args: ["html"],
- source: "renderOn: html\x0a\x09html root trap: #()",
- messageSends: ["trap:", "root"],
- referencedClasses: []
- }),
- smalltalk.TrappedDumbView);
- smalltalk.addClass('TrappedModelWrapper', smalltalk.Object, ['dispatcher', 'payload'], 'Trapped-Frontend');
- smalltalk.TrappedModelWrapper.comment="I am base class for model wrappers.\x0aI wrap a model which can be any object.\x0a\x0aMy subclasses need to provide implementation for:\x0a\x09read:do:\x0a modify:do:\x0a\x09(optionally) name\x0a\x0aand must issue these call when initializing:\x0a\x09model:\x0a\x09dispatcher: (with a subclass of TrappedDispatcher)\x0a"
- smalltalk.addMethod(
- "_dispatcher",
- smalltalk.method({
- selector: "dispatcher",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@dispatcher"];
- },
- args: [],
- source: "dispatcher\x0a\x09^dispatcher",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedModelWrapper);
- smalltalk.addMethod(
- "_dispatcher_",
- smalltalk.method({
- selector: "dispatcher:",
- category: 'accessing',
- fn: function (aDispatcher){
- var self=this;
- self["@dispatcher"]=aDispatcher;
- return self},
- args: ["aDispatcher"],
- source: "dispatcher: aDispatcher\x0a\x09dispatcher := aDispatcher",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedModelWrapper);
- smalltalk.addMethod(
- "_model_",
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (anObject){
- var self=this;
- self["@payload"]=anObject;
- smalltalk.send(smalltalk.send(self,"_dispatcher",[]),"_changed_",[[]]);
- return self},
- args: ["anObject"],
- source: "model: anObject\x0a\x09payload := anObject.\x0a self dispatcher changed: #()",
- messageSends: ["changed:", "dispatcher"],
- referencedClasses: []
- }),
- smalltalk.TrappedModelWrapper);
- smalltalk.addMethod(
- "_name",
- smalltalk.method({
- selector: "name",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(self,"_class",[]),"_name",[]);
- return $1;
- },
- args: [],
- source: "name\x0a\x09^ self class name",
- messageSends: ["name", "class"],
- referencedClasses: []
- }),
- smalltalk.TrappedModelWrapper);
- smalltalk.addMethod(
- "_start",
- smalltalk.method({
- selector: "start",
- category: 'action',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.Trapped || Trapped),"_current",[]),"_register_name_",[self,smalltalk.send(self,"_name",[])]);
- return self},
- args: [],
- source: "start\x0a\x09Trapped current register: self name: self name",
- messageSends: ["register:name:", "name", "current"],
- referencedClasses: ["Trapped"]
- }),
- smalltalk.TrappedModelWrapper);
- smalltalk.addMethod(
- "_watch_do_",
- smalltalk.method({
- selector: "watch:do:",
- category: 'action',
- fn: function (path,aBlock){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_dispatcher",[]),"_on_hook_",[path,(function(){
- return smalltalk.send(self,"_read_do_",[path,aBlock]);
- })]);
- return self},
- args: ["path", "aBlock"],
- source: "watch: path do: aBlock\x0a\x09self dispatcher on: path hook: [ self read: path do: aBlock ]\x0a",
- messageSends: ["on:hook:", "read:do:", "dispatcher"],
- referencedClasses: []
- }),
- smalltalk.TrappedModelWrapper);
- smalltalk.addMethod(
- "_start",
- smalltalk.method({
- selector: "start",
- category: 'action',
- fn: function (){
- var self=this;
- var $2,$3,$1;
- $2=smalltalk.send(self,"_new",[]);
- smalltalk.send($2,"_start",[]);
- $3=smalltalk.send($2,"_yourself",[]);
- $1=$3;
- return $1;
- },
- args: [],
- source: "start\x0a\x09^self new start; yourself",
- messageSends: ["start", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.TrappedModelWrapper.klass);
- smalltalk.addClass('TrappedMWDirect', smalltalk.TrappedModelWrapper, [], 'Trapped-Frontend');
- smalltalk.TrappedMWDirect.comment="I am TrappedModelWrapper that directly manipulate\x0athe object passed to model:"
- smalltalk.addMethod(
- "_modify_do_",
- smalltalk.method({
- selector: "modify:do:",
- category: 'action',
- fn: function (path,aBlock){
- var self=this;
- var newValue;
- var eavModel;
- eavModel=smalltalk.send(path,"_asEavModel",[]);
- newValue=smalltalk.send(aBlock,"_value_",[smalltalk.send(eavModel,"_on_",[self["@payload"]])]);
- smalltalk.send((function(){
- return smalltalk.send(eavModel,"_on_put_",[self["@payload"],newValue]);
- }),"_ensure_",[(function(){
- return smalltalk.send(smalltalk.send(self,"_dispatcher",[]),"_changed_",[path]);
- })]);
- return self},
- args: ["path", "aBlock"],
- source: "modify: path do: aBlock\x0a | newValue eavModel |\x0a eavModel := path asEavModel.\x0a newValue := aBlock value: (eavModel on: payload).\x0a [ eavModel on: payload put: newValue ] ensure: [ self dispatcher changed: path ]\x0a",
- messageSends: ["asEavModel", "value:", "on:", "ensure:", "changed:", "dispatcher", "on:put:"],
- referencedClasses: []
- }),
- smalltalk.TrappedMWDirect);
- smalltalk.addMethod(
- "_read_do_",
- smalltalk.method({
- selector: "read:do:",
- category: 'action',
- fn: function (path,aBlock){
- var self=this;
- var eavModel;
- eavModel=smalltalk.send(path,"_asEavModel",[]);
- smalltalk.send(aBlock,"_value_",[smalltalk.send(eavModel,"_on_",[self["@payload"]])]);
- return self},
- args: ["path", "aBlock"],
- source: "read: path do: aBlock\x0a | eavModel |\x0a eavModel := path asEavModel.\x0a aBlock value: (eavModel on: payload)\x0a",
- messageSends: ["asEavModel", "value:", "on:"],
- referencedClasses: []
- }),
- smalltalk.TrappedMWDirect);
- smalltalk.addClass('TrappedMWIsolated', smalltalk.TrappedModelWrapper, [], 'Trapped-Frontend');
- smalltalk.TrappedMWIsolated.comment="I am TrappedModelWrapper than wrap access\x0ato an object passed to model: via Isolator."
- smalltalk.addMethod(
- "_model_",
- smalltalk.method({
- selector: "model:",
- category: 'accessing',
- fn: function (anObject){
- var self=this;
- smalltalk.send(self,"_model_",[smalltalk.send((smalltalk.Isolator || Isolator),"_on_",[anObject])],smalltalk.TrappedModelWrapper);
- return self},
- args: ["anObject"],
- source: "model: anObject\x0a\x09super model: (Isolator on: anObject)",
- messageSends: ["model:", "on:"],
- referencedClasses: ["Isolator"]
- }),
- smalltalk.TrappedMWIsolated);
- smalltalk.addMethod(
- "_modify_do_",
- smalltalk.method({
- selector: "modify:do:",
- category: 'action',
- fn: function (path,aBlock){
- var self=this;
- var eavModel;
- eavModel=smalltalk.send(smalltalk.send([smalltalk.symbolFor("root")],"__comma",[path]),"_asEavModel",[]);
- smalltalk.send((function(){
- return smalltalk.send(self["@payload"],"_model_modify_",[eavModel,aBlock]);
- }),"_ensure_",[(function(){
- return smalltalk.send(smalltalk.send(self,"_dispatcher",[]),"_changed_",[path]);
- })]);
- return self},
- args: ["path", "aBlock"],
- source: "modify: path do: aBlock\x0a | eavModel |\x0a eavModel := ({#root},path) asEavModel.\x0a [ payload model: eavModel modify: aBlock ] ensure: [ self dispatcher changed: path ]\x0a",
- messageSends: ["asEavModel", ",", "ensure:", "changed:", "dispatcher", "model:modify:"],
- referencedClasses: []
- }),
- smalltalk.TrappedMWIsolated);
- smalltalk.addMethod(
- "_read_do_",
- smalltalk.method({
- selector: "read:do:",
- category: 'action',
- fn: function (path,aBlock){
- var self=this;
- var eavModel;
- eavModel=smalltalk.send(smalltalk.send([smalltalk.symbolFor("root")],"__comma",[path]),"_asEavModel",[]);
- smalltalk.send(self["@payload"],"_model_read_",[eavModel,aBlock]);
- return self},
- args: ["path", "aBlock"],
- source: "read: path do: aBlock\x0a | eavModel |\x0a eavModel := ({#root},path) asEavModel.\x0a payload model: eavModel read: aBlock\x0a",
- messageSends: ["asEavModel", ",", "model:read:"],
- referencedClasses: []
- }),
- smalltalk.TrappedMWIsolated);
- smalltalk.addClass('TrappedSingleton', smalltalk.Object, [], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_start",
- smalltalk.method({
- selector: "start",
- category: 'action',
- fn: function (){
- var self=this;
- var $1;
- $1=smalltalk.send(self,"_subclassResponsibility",[]);
- return $1;
- },
- args: [],
- source: "start\x0a\x09^ self subclassResponsibility",
- messageSends: ["subclassResponsibility"],
- referencedClasses: []
- }),
- smalltalk.TrappedSingleton);
- smalltalk.TrappedSingleton.klass.iVarNames = ['current'];
- smalltalk.addMethod(
- "_current",
- smalltalk.method({
- selector: "current",
- category: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- if(($receiver = self["@current"]) == nil || $receiver == undefined){
- self["@current"]=smalltalk.send(self,"_new",[]);
- $1=self["@current"];
- } else {
- $1=self["@current"];
- };
- return $1;
- },
- args: [],
- source: "current\x0a\x09^ current ifNil: [ current := self new ]",
- messageSends: ["ifNil:", "new"],
- referencedClasses: []
- }),
- smalltalk.TrappedSingleton.klass);
- smalltalk.addMethod(
- "_start",
- smalltalk.method({
- selector: "start",
- category: 'action',
- fn: function (){
- var self=this;
- smalltalk.send(smalltalk.send(self,"_current",[]),"_start",[]);
- return self},
- args: [],
- source: "start\x0a\x09self current start",
- messageSends: ["start", "current"],
- referencedClasses: []
- }),
- smalltalk.TrappedSingleton.klass);
- smalltalk.addClass('Trapped', smalltalk.TrappedSingleton, ['registry'], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_binder_",
- smalltalk.method({
- selector: "binder:",
- category: 'binders',
- fn: function (aTagBrush){
- var self=this;
- var $1,$2,$3,$5,$4;
- var binder;
- var tag;
- tag=smalltalk.send(smalltalk.send(aTagBrush,"_element",[]),"_nodeName",[]);
- $1=smalltalk.send(tag,"__eq",["INPUT"]);
- if(smalltalk.assert($1)){
- $2=smalltalk.send((smalltalk.TrappedAttrBinder || TrappedAttrBinder),"_new",[]);
- smalltalk.send($2,"_attr_",["checked"]);
- $3=smalltalk.send($2,"_yourself",[]);
- binder=$3;
- binder;
- };
- if(($receiver = binder) == nil || $receiver == undefined){
- binder=smalltalk.send((smalltalk.TrappedBinder || TrappedBinder),"_new",[]);
- binder;
- } else {
- binder;
- };
- smalltalk.send(binder,"_brush_",[aTagBrush]);
- $5=smalltalk.send(binder,"_yourself",[]);
- $4=$5;
- return $4;
- },
- args: ["aTagBrush"],
- source: "binder: aTagBrush\x0a \x22Prototype; will select based on tag etc.\x22\x0a | binder tag |\x0a tag := aTagBrush element nodeName.\x0a tag = 'INPUT' ifTrue: [\x0a \x09binder := TrappedAttrBinder new attr: 'checked'; yourself\x0a ].\x0a binder ifNil: [ binder := TrappedBinder new ].\x0a ^ binder brush: aTagBrush; yourself",
- messageSends: ["nodeName", "element", "ifTrue:", "attr:", "new", "yourself", "=", "ifNil:", "brush:"],
- referencedClasses: ["TrappedAttrBinder", "TrappedBinder"]
- }),
- smalltalk.Trapped);
- smalltalk.addMethod(
- "_byName_",
- smalltalk.method({
- selector: "byName:",
- category: 'accessing',
- fn: function (aString){
- var self=this;
- var $1;
- $1=smalltalk.send(self["@registry"],"_at_",[aString]);
- return $1;
- },
- args: ["aString"],
- source: "byName: aString\x0a\x09^ registry at: aString",
- messageSends: ["at:"],
- referencedClasses: []
- }),
- smalltalk.Trapped);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- category: 'initialization',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initialize",[],smalltalk.TrappedSingleton);
- self["@registry"]=smalltalk.HashedCollection._fromPairs_([]);
- return self},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09registry := #{}.",
- messageSends: ["initialize"],
- referencedClasses: []
- }),
- smalltalk.Trapped);
- smalltalk.addMethod(
- "_register_name_",
- smalltalk.method({
- selector: "register:name:",
- category: 'accessing',
- fn: function (aFly,aString){
- var self=this;
- smalltalk.send(self["@registry"],"_at_put_",[aString,aFly]);
- return self},
- args: ["aFly", "aString"],
- source: "register: aFly name: aString\x0a\x09registry at: aString put: aFly",
- messageSends: ["at:put:"],
- referencedClasses: []
- }),
- smalltalk.Trapped);
- smalltalk.addMethod(
- "_snapshot",
- smalltalk.method({
- selector: "snapshot",
- category: 'snapshotting',
- fn: function (){
- var self=this;
- var $1;
- var path;
- var model;
- path=smalltalk.send(smalltalk.send((smalltalk.TrappedPathStack || TrappedPathStack),"_current",[]),"_elements",[]);
- model=smalltalk.send(self,"_byName_",[smalltalk.send(path,"_first",[])]);
- $1=smalltalk.send(smalltalk.send((smalltalk.TrappedSnapshot || TrappedSnapshot),"_new",[]),"_path_model_",[path,model]);
- return $1;
- },
- args: [],
- source: "snapshot\x0a\x09| path model |\x0a path := TrappedPathStack current elements.\x0a \x09model := self byName: path first.\x0a ^TrappedSnapshot new path: path model: model",
- messageSends: ["elements", "current", "byName:", "first", "path:model:", "new"],
- referencedClasses: ["TrappedPathStack", "TrappedSnapshot"]
- }),
- smalltalk.Trapped);
- smalltalk.addMethod(
- "_start",
- smalltalk.method({
- selector: "start",
- category: 'action',
- fn: function (){
- var self=this;
- var $1;
- smalltalk.send(smalltalk.send("[data-trap]","_asJQuery",[]),"_each_",[(function(index,elem){
- var trap;
- var jq;
- var viewName;
- var modelName;
- var tokens;
- var path;
- jq=smalltalk.send(elem,"_asJQuery",[]);
- jq;
- trap=smalltalk.send(jq,"_attr_",["data-trap"]);
- trap;
- tokens=smalltalk.send(trap,"_tokenize_",[":"]);
- tokens;
- $1=smalltalk.send(smalltalk.send(tokens,"_size",[]),"__eq",[(1)]);
- if(smalltalk.assert($1)){
- tokens=smalltalk.send(["TrappedDumbView"],"__comma",[tokens]);
- tokens;
- };
- viewName=smalltalk.send(tokens,"_first",[]);
- viewName;
- tokens=smalltalk.send(smalltalk.send(smalltalk.send(tokens,"_second",[]),"_tokenize_",[" "]),"_select_",[(function(each){
- return smalltalk.send(each,"_notEmpty",[]);
- })]);
- tokens;
- modelName=smalltalk.send(tokens,"_first",[]);
- modelName;
- path=smalltalk.send((smalltalk.Trapped || Trapped),"_parse_",[smalltalk.send(tokens,"_allButFirst",[])]);
- path;
- return smalltalk.send(smalltalk.send([modelName],"__comma",[path]),"_trapDescend_",[(function(){
- return smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk),"_current",[]),"_at_",[viewName]),"_new",[]),"_appendToJQuery_",[jq]);
- })]);
- })]);
- return self},
- args: [],
- source: "start\x0a\x09'[data-trap]' asJQuery each: [ :index :elem |\x0a \x09| trap jq viewName modelName tokens path |\x0a jq := elem asJQuery.\x0a trap := jq attr: 'data-trap'.\x0a tokens := trap tokenize: ':'.\x0a tokens size = 1 ifTrue: [ tokens := { 'TrappedDumbView' }, tokens ].\x0a viewName := tokens first.\x0a tokens := (tokens second tokenize: ' ') select: [ :each | each notEmpty ].\x0a modelName := tokens first.\x0a path := Trapped parse: tokens allButFirst.\x0a { modelName }, path trapDescend: [(Smalltalk current at: viewName) new appendToJQuery: jq].\x0a ]",
- messageSends: ["each:", "asJQuery", "attr:", "tokenize:", "ifTrue:", ",", "=", "size", "first", "select:", "notEmpty", "second", "parse:", "allButFirst", "trapDescend:", "appendToJQuery:", "new", "at:", "current"],
- referencedClasses: ["Trapped", "Smalltalk"]
- }),
- smalltalk.Trapped);
- smalltalk.addMethod(
- "_parse_",
- smalltalk.method({
- selector: "parse:",
- category: 'accessing',
- fn: function (anArray){
- var self=this;
- var $2,$3,$1;
- $1=smalltalk.send(anArray,"_collect_",[(function(each){
- var asNum;
- asNum = parseInt(each);
- ;
- $2=smalltalk.send(asNum,"__eq",[asNum]);
- if(smalltalk.assert($2)){
- return asNum;
- } else {
- $3=smalltalk.send(smalltalk.send(each,"_first",[]),"__eq",["#"]);
- if(smalltalk.assert($3)){
- return smalltalk.send(smalltalk.send(each,"_allButFirst",[]),"_asSymbol",[]);
- } else {
- return each;
- };
- };
- })]);
- return $1;
- },
- args: ["anArray"],
- source: "parse: anArray\x0a\x09^anArray collect: [ :each |\x0a \x09| asNum |\x0a \x09<asNum = parseInt(each)>.\x0a asNum = asNum ifTrue: [ asNum ] ifFalse: [\x0a\x09\x09\x09each first = '#' ifTrue: [ each allButFirst asSymbol ] ifFalse: [ each ]]]",
- messageSends: ["collect:", "ifTrue:ifFalse:", "asSymbol", "allButFirst", "=", "first"],
- referencedClasses: []
- }),
- smalltalk.Trapped.klass);
- smalltalk.addClass('TrappedPathStack', smalltalk.TrappedSingleton, ['elements'], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_append_do_",
- smalltalk.method({
- selector: "append:do:",
- category: 'descending',
- fn: function (anArray,aBlock){
- var self=this;
- smalltalk.send(self,"_with_do_",[smalltalk.send(self["@elements"],"__comma",[anArray]),aBlock]);
- return self},
- args: ["anArray", "aBlock"],
- source: "append: anArray do: aBlock\x0a self with: elements, anArray do: aBlock",
- messageSends: ["with:do:", ","],
- referencedClasses: []
- }),
- smalltalk.TrappedPathStack);
- smalltalk.addMethod(
- "_elements",
- smalltalk.method({
- selector: "elements",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@elements"];
- },
- args: [],
- source: "elements\x0a\x09^elements",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedPathStack);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- category: 'initialization',
- fn: function (){
- var self=this;
- smalltalk.send(self,"_initialize",[],smalltalk.TrappedSingleton);
- self["@elements"]=[];
- return self},
- args: [],
- source: "initialize\x0a super initialize.\x0a\x09elements := #().",
- messageSends: ["initialize"],
- referencedClasses: []
- }),
- smalltalk.TrappedPathStack);
- smalltalk.addMethod(
- "_with_do_",
- smalltalk.method({
- selector: "with:do:",
- category: 'descending',
- fn: function (anArray,aBlock){
- var self=this;
- var old;
- old=self["@elements"];
- smalltalk.send((function(){
- self["@elements"]=anArray;
- self["@elements"];
- return smalltalk.send(aBlock,"_value",[]);
- }),"_ensure_",[(function(){
- self["@elements"]=old;
- return self["@elements"];
- })]);
- return self},
- args: ["anArray", "aBlock"],
- source: "with: anArray do: aBlock\x0a\x09| old |\x0a old := elements.\x0a [ elements := anArray.\x0a\x09aBlock value ] ensure: [ elements := old ]",
- messageSends: ["ensure:", "value"],
- referencedClasses: []
- }),
- smalltalk.TrappedPathStack);
- smalltalk.addClass('TrappedSnapshot', smalltalk.Object, ['path', 'model'], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_do_",
- smalltalk.method({
- selector: "do:",
- category: 'action',
- fn: function (aBlock){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.TrappedPathStack || TrappedPathStack),"_current",[]),"_with_do_",[self["@path"],(function(){
- return smalltalk.send(aBlock,"_value_",[self["@model"]]);
- })]);
- return self},
- args: ["aBlock"],
- source: "do: aBlock\x0a\x09TrappedPathStack current with: path do: [ aBlock value: model ]",
- messageSends: ["with:do:", "value:", "current"],
- referencedClasses: ["TrappedPathStack"]
- }),
- smalltalk.TrappedSnapshot);
- smalltalk.addMethod(
- "_model",
- smalltalk.method({
- selector: "model",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@model"];
- },
- args: [],
- source: "model\x0a\x09^model",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedSnapshot);
- smalltalk.addMethod(
- "_path",
- smalltalk.method({
- selector: "path",
- category: 'accessing',
- fn: function (){
- var self=this;
- return self["@path"];
- },
- args: [],
- source: "path\x0a\x09^path",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedSnapshot);
- smalltalk.addMethod(
- "_path_model_",
- smalltalk.method({
- selector: "path:model:",
- category: 'accessing',
- fn: function (anArray,aTrappedMW){
- var self=this;
- self["@path"]=anArray;
- self["@model"]=aTrappedMW;
- return self},
- args: ["anArray", "aTrappedMW"],
- source: "path: anArray model: aTrappedMW\x0a\x09path := anArray.\x0a model := aTrappedMW",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TrappedSnapshot);
- smalltalk.addClass('TrappedSubscription', smalltalk.KeyedSubscriptionBase, [], 'Trapped-Frontend');
- smalltalk.addMethod(
- "_accepts_",
- smalltalk.method({
- selector: "accepts:",
- category: 'testing',
- fn: function (aKey){
- var self=this;
- var $1;
- $1=smalltalk.send(smalltalk.send(smalltalk.send(aKey,"_size",[]),"__lt_eq",[smalltalk.send(self["@key"],"_size",[])]),"_and_",[(function(){
- return smalltalk.send(aKey,"__eq",[smalltalk.send(self["@key"],"_copyFrom_to_",[(1),smalltalk.send(aKey,"_size",[])])]);
- })]);
- return $1;
- },
- args: ["aKey"],
- source: "accepts: aKey\x0a ^aKey size <= key size and: [aKey = (key copyFrom: 1 to: aKey size)]",
- messageSends: ["and:", "=", "copyFrom:to:", "size", "<="],
- referencedClasses: []
- }),
- smalltalk.TrappedSubscription);
- smalltalk.addMethod(
- "_trapDescend_",
- smalltalk.method({
- selector: "trapDescend:",
- category: '*Trapped-Frontend',
- fn: function (aBlock){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.TrappedPathStack || TrappedPathStack),"_current",[]),"_append_do_",[self,aBlock]);
- return self},
- args: ["aBlock"],
- source: "trapDescend: aBlock\x0a\x09TrappedPathStack current append: self do: aBlock",
- messageSends: ["append:do:", "current"],
- referencedClasses: ["TrappedPathStack"]
- }),
- smalltalk.Array);
- smalltalk.addMethod(
- "_trapDescend_",
- smalltalk.method({
- selector: "trapDescend:",
- category: '*Trapped-Frontend',
- fn: function (aBlock){
- var self=this;
- smalltalk.send(smalltalk.send((smalltalk.TrappedPathStack || TrappedPathStack),"_current",[]),"_append_do_",[self,aBlock]);
- return self},
- args: ["aBlock"],
- source: "trapDescend: aBlock\x0a\x09TrappedPathStack current append: self do: aBlock",
- messageSends: ["append:do:", "current"],
- referencedClasses: ["TrappedPathStack"]
- }),
- smalltalk.Array);
- smalltalk.addMethod(
- "_trap_",
- smalltalk.method({
- selector: "trap:",
- category: '*Trapped-Frontend',
- fn: function (path){
- var self=this;
- smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Trapped || Trapped),"_current",[]),"_binder_",[self]),"_installFor_",[path]);
- return self},
- args: ["path"],
- source: "trap: path\x0a\x09(Trapped current binder: self) installFor: path",
- messageSends: ["installFor:", "binder:", "current"],
- referencedClasses: ["Trapped"]
- }),
- smalltalk.TagBrush);
- smalltalk.addMethod(
- "_trap_read_",
- smalltalk.method({
- selector: "trap:read:",
- category: '*Trapped-Frontend',
- fn: function (path,aBlock){
- var self=this;
- var $1;
- smalltalk.send(path,"_trapDescend_",[(function(){
- var snap;
- snap=smalltalk.send(smalltalk.send((smalltalk.Trapped || Trapped),"_current",[]),"_snapshot",[]);
- snap;
- return smalltalk.send(smalltalk.send(snap,"_model",[]),"_watch_do_",[smalltalk.send(smalltalk.send(snap,"_path",[]),"_allButFirst",[]),(function(data){
- $1=smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_closest_",["html"]),"_toArray",[]),"_isEmpty",[]);
- if(smalltalk.assert($1)){
- smalltalk.send((smalltalk.KeyedPubSubUnsubscribe || KeyedPubSubUnsubscribe),"_signal",[]);
- };
- return smalltalk.send(snap,"_do_",[(function(){
- return smalltalk.send(self,"_with_",[(function(html){
- return smalltalk.send(aBlock,"_value_value_",[data,html]);
- })]);
- })]);
- })]);
- })]);
- return self},
- args: ["path", "aBlock"],
- source: "trap: path read: aBlock\x0a\x09path trapDescend: [ | snap |\x0a snap := Trapped current snapshot.\x0a snap model watch: snap path allButFirst do: [ :data |\x0a (self asJQuery closest: 'html') toArray isEmpty ifTrue: [ KeyedPubSubUnsubscribe signal ].\x0a \x09snap do: [ self with: [ :html | aBlock value: data value: html ] ]\x0a \x09]\x0a ]",
- messageSends: ["trapDescend:", "snapshot", "current", "watch:do:", "allButFirst", "path", "ifTrue:", "signal", "isEmpty", "toArray", "closest:", "asJQuery", "do:", "with:", "value:value:", "model"],
- referencedClasses: ["Trapped", "KeyedPubSubUnsubscribe"]
- }),
- smalltalk.TagBrush);
- smalltalk.addMethod(
- "_trap_toggle_",
- smalltalk.method({
- selector: "trap:toggle:",
- category: '*Trapped-Frontend',
- fn: function (path,aBlock){
- var self=this;
- smalltalk.send(self,"_trap_toggle_ifNotPresent_",[path,aBlock,(function(){
- return smalltalk.send(smalltalk.send(self,"_asJQuery",[]),"_hide",[]);
- })]);
- return self},
- args: ["path", "aBlock"],
- source: "trap: path toggle: aBlock\x0a self trap: path toggle: aBlock ifNotPresent: [ self asJQuery hide ]",
- messageSends: ["trap:toggle:ifNotPresent:", "hide", "asJQuery"],
- referencedClasses: []
- }),
- smalltalk.TagBrush);
- smalltalk.addMethod(
- "_trap_toggle_ifNotPresent_",
- smalltalk.method({
- selector: "trap:toggle:ifNotPresent:",
- category: '*Trapped-Frontend',
- fn: function (path,aBlock,anotherBlock){
- var self=this;
- var $1,$2,$3,$4;
- var shown;
- shown=nil;
- smalltalk.send(self,"_trap_read_",[path,(function(data,html){
- $1=smalltalk.send(shown,"__eq",[smalltalk.send(data,"_notNil",[])]);
- if(! smalltalk.assert($1)){
- shown=smalltalk.send(data,"_notNil",[]);
- shown;
- $2=smalltalk.send(self,"_asJQuery",[]);
- smalltalk.send($2,"_empty",[]);
- $3=smalltalk.send($2,"_show",[]);
- $3;
- if(smalltalk.assert(shown)){
- $4=aBlock;
- } else {
- $4=anotherBlock;
- };
- return smalltalk.send($4,"_value_value_",[data,html]);
- };
- })]);
- return self},
- args: ["path", "aBlock", "anotherBlock"],
- source: "trap: path toggle: aBlock ifNotPresent: anotherBlock\x0a | shown |\x0a shown := nil.\x0a self trap: path read: [ :data : html |\x0a shown = data notNil ifFalse: [\x0a shown := data notNil.\x0a self asJQuery empty; show.\x0a (shown ifTrue: [aBlock] ifFalse: [anotherBlock]) value: data value: html.\x0a ]\x0a ]",
- messageSends: ["trap:read:", "ifFalse:", "notNil", "empty", "asJQuery", "show", "value:value:", "ifTrue:ifFalse:", "="],
- referencedClasses: []
- }),
- smalltalk.TagBrush);
- smalltalk.addMethod(
- "_trapIter_tag_do_",
- smalltalk.method({
- selector: "trapIter:tag:do:",
- category: '*Trapped-Frontend',
- fn: function (path,aSymbol,aBlock){
- var self=this;
- smalltalk.send(self,"_trap_read_",[path,(function(model,html){
- smalltalk.send(smalltalk.send(html,"_root",[]),"_empty",[]);
- if(($receiver = model) == nil || $receiver == undefined){
- return model;
- } else {
- return smalltalk.send(model,"_withIndexDo_",[(function(item,i){
- return smalltalk.send(smalltalk.send(html,"_perform_",[aSymbol]),"_trap_read_",[[i],aBlock]);
- })]);
- };
- })]);
- return self},
- args: ["path", "aSymbol", "aBlock"],
- source: "trapIter: path tag: aSymbol do: aBlock\x0a self trap: path read: [ :model :html |\x0a html root empty.\x0a model ifNotNil: [ model withIndexDo: [ :item :i |\x0a (html perform: aSymbol) trap: {i} read: aBlock\x0a ]]\x0a ]",
- messageSends: ["trap:read:", "empty", "root", "ifNotNil:", "withIndexDo:", "perform:"],
- referencedClasses: []
- }),
- smalltalk.TagBrush);
|