123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- smalltalk.addPackage('Canvas-Snippet', {});
- smalltalk.addClass('HtmlSnippet', smalltalk.Object, ['snippets'], 'Canvas-Snippet');
- smalltalk.addMethod(
- "_addSnippet_",
- smalltalk.method({
- selector: "addSnippet:",
- fn: function (anAssociation){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$1;
- $2=self["@snippets"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@snippets"]=smalltalk.HashedCollection._fromPairs_([]);
- $1=self["@snippets"];
- } else {
- $1=$2;
- };
- _st($1)._add_(anAssociation);
- return self}, function($ctx1) {$ctx1.fill(self,"addSnippet:",{anAssociation:anAssociation}, smalltalk.HtmlSnippet)})}
- }),
- smalltalk.HtmlSnippet);
- smalltalk.addMethod(
- "_addSnippets_",
- smalltalk.method({
- selector: "addSnippets:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(aCollection)._associationsDo_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._addSnippet_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"addSnippets:",{aCollection:aCollection}, smalltalk.HtmlSnippet)})}
- }),
- smalltalk.HtmlSnippet);
- smalltalk.addMethod(
- "_at_",
- smalltalk.method({
- selector: "at:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self["@snippets"])._at_(aString);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"at:",{aString:aString}, smalltalk.HtmlSnippet)})}
- }),
- smalltalk.HtmlSnippet);
- smalltalk.addMethod(
- "_at_ifAbsent_",
- smalltalk.method({
- selector: "at:ifAbsent:",
- fn: function (aString,aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self["@snippets"])._at_ifAbsent_(aString,aBlock);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"at:ifAbsent:",{aString:aString,aBlock:aBlock}, smalltalk.HtmlSnippet)})}
- }),
- smalltalk.HtmlSnippet);
- smalltalk.HtmlSnippet.klass.iVarNames = ['current'];
- smalltalk.addMethod(
- "_current",
- smalltalk.method({
- selector: "current",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$4,$1;
- $2=self["@current"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $3=_st(self)._new();
- _st($3)._addSnippets_(_st(self)._digFromJQuery_(_st(document)._asJQuery()));
- $4=_st($3)._yourself();
- self["@current"]=$4;
- $1=self["@current"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"current",{}, smalltalk.HtmlSnippet.klass)})}
- }),
- smalltalk.HtmlSnippet.klass);
- smalltalk.addMethod(
- "_digFromJQuery_",
- smalltalk.method({
- selector: "digFromJQuery:",
- fn: function (aJQuery){
- var self=this;
- var result;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3;
- result=smalltalk.HashedCollection._fromPairs_([]);
- _st(_st(_st("[data-snippet]")._asJQuery())._toArray())._do_((function(each){
- var jq,name;
- return smalltalk.withContext(function($ctx2) {
- jq=_st(each)._asJQuery();
- jq;
- name=_st(jq)._attr_("data-snippet");
- name;
- $1=_st(name).__eq("*");
- if(! smalltalk.assert($1)){
- $2=_st(_st("^\x5c*")._asRegexp())._test_(name);
- if(smalltalk.assert($2)){
- name=_st(name)._allButFirst();
- name;
- _st(jq)._attr_put_("data-snippet","*");
- } else {
- _st(jq)._removeAttr_("data-snippet");
- };
- return _st(result)._at_put_(name,_st(_st(jq)._detach())._get_((0)));
- };
- }, function($ctx2) {$ctx2.fillBlock({each:each,jq:jq,name:name},$ctx1)})}));
- $3=result;
- return $3;
- }, function($ctx1) {$ctx1.fill(self,"digFromJQuery:",{aJQuery:aJQuery,result:result}, smalltalk.HtmlSnippet.klass)})}
- }),
- smalltalk.HtmlSnippet.klass);
- smalltalk.addMethod(
- "_asSnippet",
- smalltalk.method({
- selector: "asSnippet",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st((smalltalk.HtmlSnippet || HtmlSnippet))._current())._at_(_st(self)._asString());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"asSnippet",{}, smalltalk.CharacterArray)})}
- }),
- smalltalk.CharacterArray);
- smalltalk.addMethod(
- "_doesNotUnderstand_",
- smalltalk.method({
- selector: "doesNotUnderstand:",
- fn: function (aMessage){
- var self=this;
- var snippet;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4;
- var $early={};
- try {
- $1=_st(_st(aMessage)._arguments())._isEmpty();
- if(! smalltalk.assert($1)){
- $2=smalltalk.Object.fn.prototype._doesNotUnderstand_.apply(_st(self), [aMessage]);
- return $2;
- };
- snippet=_st(_st((smalltalk.HtmlSnippet || HtmlSnippet))._current())._at_ifAbsent_(_st(aMessage)._selector(),(function(){
- return smalltalk.withContext(function($ctx2) {
- $3=smalltalk.Object.fn.prototype._doesNotUnderstand_.apply(_st(self), [aMessage]);
- throw $early=[$3];
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- $4=_st(self)._snip_(snippet);
- return $4;
- }
- catch(e) {if(e===$early)return e[0]; throw e}
- }, function($ctx1) {$ctx1.fill(self,"doesNotUnderstand:",{aMessage:aMessage,snippet:snippet}, smalltalk.HTMLCanvas)})}
- }),
- smalltalk.HTMLCanvas);
- smalltalk.addMethod(
- "_snip_",
- smalltalk.method({
- selector: "snip:",
- fn: function (anElement){
- var self=this;
- var clone,caret;
- return smalltalk.withContext(function($ctx1) {
var $1,$2;
- clone=_st(_st(anElement)._asJQuery())._clone();
- _st(self)._with_(_st((smalltalk.TagBrush || TagBrush))._fromJQuery_canvas_(clone,self));
- caret=_st(clone)._find_("[data-snippet=\x22*\x22]");
- $1=_st(_st(caret)._toArray())._isEmpty();
- if(smalltalk.assert($1)){
- caret=clone;
- caret;
- };
- $2=_st((smalltalk.TagBrush || TagBrush))._fromJQuery_canvas_(_st(caret)._removeAttr_("data-snippet"),self);
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"snip:",{anElement:anElement,clone:clone,caret:caret}, smalltalk.HTMLCanvas)})}
- }),
- smalltalk.HTMLCanvas);
|