Procházet zdrojové kódy

first try at drag and drop decorators

Nicolas Petton před 11 roky
rodič
revize
c08b357d49
2 změnil soubory, kde provedl 111 přidání a 0 odebrání
  1. 80 0
      js/Moka-Decorators.js
  2. 31 0
      st/Moka-Decorators.st

+ 80 - 0
js/Moka-Decorators.js

@@ -2,6 +2,86 @@ define("amber_core/Moka-Decorators", ["amber_vm/smalltalk", "amber_vm/nil", "amb
 smalltalk.addPackage('Moka-Decorators');
 smalltalk.packages["Moka-Decorators"].transport = {"type":"amd","amdNamespace":"amber_core"};
 
+smalltalk.addClass('MKDraggableDecorator', smalltalk.MKDecorator, [], 'Moka-Decorators');
+
+
+smalltalk.addClass('MKDroppableDecorator', smalltalk.MKDecorator, ['droppableOptions'], 'Moka-Decorators');
+smalltalk.addMethod(
+smalltalk.method({
+selector: "defaultDroppableOptions",
+category: 'defaults',
+fn: function (){
+var self=this;
+return smalltalk.withContext(function($ctx1) { 
+var $1;
+$1=["helper".__minus_gt("clone")];
+return $1;
+}, function($ctx1) {$ctx1.fill(self,"defaultDroppableOptions",{},smalltalk.MKDroppableDecorator)})},
+args: [],
+source: "defaultDroppableOptions\x0a\x09^ { 'helper' -> 'clone' }",
+messageSends: ["->"],
+referencedClasses: []
+}),
+smalltalk.MKDroppableDecorator);
+
+smalltalk.addMethod(
+smalltalk.method({
+selector: "droppableOptions",
+category: 'accessing',
+fn: function (){
+var self=this;
+return smalltalk.withContext(function($ctx1) { 
+var $2,$1;
+$2=self["@droppableOptions"];
+if(($receiver = $2) == nil || $receiver == null){
+$1=self._defaultDroppableOptions();
+} else {
+$1=$2;
+};
+return $1;
+}, function($ctx1) {$ctx1.fill(self,"droppableOptions",{},smalltalk.MKDroppableDecorator)})},
+args: [],
+source: "droppableOptions\x0a\x09^ droppableOptions ifNil: [ self defaultDroppableOptions ]",
+messageSends: ["ifNil:", "defaultDroppableOptions"],
+referencedClasses: []
+}),
+smalltalk.MKDroppableDecorator);
+
+smalltalk.addMethod(
+smalltalk.method({
+selector: "droppableOptions:",
+category: 'accessing',
+fn: function (aHashedCollection){
+var self=this;
+return smalltalk.withContext(function($ctx1) { 
+self["@droppableOptions"]=aHashedCollection;
+return self}, function($ctx1) {$ctx1.fill(self,"droppableOptions:",{aHashedCollection:aHashedCollection},smalltalk.MKDroppableDecorator)})},
+args: ["aHashedCollection"],
+source: "droppableOptions: aHashedCollection\x0a\x09droppableOptions := aHashedCollection",
+messageSends: [],
+referencedClasses: []
+}),
+smalltalk.MKDroppableDecorator);
+
+smalltalk.addMethod(
+smalltalk.method({
+selector: "renderContentOn:",
+category: 'rendering',
+fn: function (html){
+var self=this;
+return smalltalk.withContext(function($ctx1) { 
+smalltalk.MKDroppableDecorator.superclass.fn.prototype._renderContentOn_.apply(_st(self), [html]);
+_st(_st(self._decorated())._asJQuery())._droppable_(self._droppableOptions());
+return self}, function($ctx1) {$ctx1.fill(self,"renderContentOn:",{html:html},smalltalk.MKDroppableDecorator)})},
+args: ["html"],
+source: "renderContentOn: html\x0a\x09super renderContentOn: html.\x0a\x09self decorated asJQuery droppable: self droppableOptions",
+messageSends: ["renderContentOn:", "droppable:", "asJQuery", "decorated", "droppableOptions"],
+referencedClasses: []
+}),
+smalltalk.MKDroppableDecorator);
+
+
+
 smalltalk.addClass('MKModalDecorator', smalltalk.MKDecorator, ['overlay', 'closeOnEnter', 'closeOnClick'], 'Moka-Decorators');
 smalltalk.MKModalDecorator.comment="I render my `decorated` view as a modal pane.";
 smalltalk.addMethod(

+ 31 - 0
st/Moka-Decorators.st

@@ -1,4 +1,35 @@
 Smalltalk current createPackage: 'Moka-Decorators'!
+MKDecorator subclass: #MKDraggableDecorator
+	instanceVariableNames: ''
+	package: 'Moka-Decorators'!
+
+MKDecorator subclass: #MKDroppableDecorator
+	instanceVariableNames: 'droppableOptions'
+	package: 'Moka-Decorators'!
+
+!MKDroppableDecorator methodsFor: 'accessing'!
+
+droppableOptions
+	^ droppableOptions ifNil: [ self defaultDroppableOptions ]
+!
+
+droppableOptions: aHashedCollection
+	droppableOptions := aHashedCollection
+! !
+
+!MKDroppableDecorator methodsFor: 'defaults'!
+
+defaultDroppableOptions
+	^ { 'helper' -> 'clone' }
+! !
+
+!MKDroppableDecorator methodsFor: 'rendering'!
+
+renderContentOn: html
+	super renderContentOn: html.
+	self decorated asJQuery droppable: self droppableOptions
+! !
+
 MKDecorator subclass: #MKModalDecorator
 	instanceVariableNames: 'overlay closeOnEnter closeOnClick'
 	package: 'Moka-Decorators'!