Moka-Controllers.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. define("amber_core/Moka-Controllers", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_core/Moka-Core"], function(smalltalk,nil,_st){
  2. smalltalk.addPackage('Moka-Controllers');
  3. smalltalk.packages["Moka-Controllers"].transport = {"type":"amd","amdNamespace":"amber_core"};
  4. smalltalk.addClass('MKAnyKeyInputController', smalltalk.MKAspectController, ['lastValue'], 'Moka-Controllers');
  5. smalltalk.addMethod(
  6. smalltalk.method({
  7. selector: "inputText",
  8. category: 'accessing',
  9. fn: function (){
  10. var self=this;
  11. return smalltalk.withContext(function($ctx1) {
  12. var $1;
  13. $1=_st(self._view())._value();
  14. return $1;
  15. }, function($ctx1) {$ctx1.fill(self,"inputText",{},smalltalk.MKAnyKeyInputController)})},
  16. args: [],
  17. source: "inputText\x0a\x09^ self view value",
  18. messageSends: ["value", "view"],
  19. referencedClasses: []
  20. }),
  21. smalltalk.MKAnyKeyInputController);
  22. smalltalk.addMethod(
  23. smalltalk.method({
  24. selector: "onKeyPressed:",
  25. category: 'actions',
  26. fn: function (anEvent){
  27. var self=this;
  28. var newValue;
  29. return smalltalk.withContext(function($ctx1) {
  30. var $1;
  31. newValue=self._inputText();
  32. $1=_st(newValue).__eq(self["@lastValue"]);
  33. if(smalltalk.assert($1)){
  34. return self;
  35. };
  36. self["@lastValue"]=newValue;
  37. self._performActionWith_(newValue);
  38. return self}, function($ctx1) {$ctx1.fill(self,"onKeyPressed:",{anEvent:anEvent,newValue:newValue},smalltalk.MKAnyKeyInputController)})},
  39. args: ["anEvent"],
  40. source: "onKeyPressed: anEvent\x0a\x09| newValue |\x0a\x09\x0a\x09newValue := self inputText.\x0a\x09newValue = lastValue ifTrue: [ ^ self ].\x0a\x09\x0a\x09lastValue := newValue.\x0a\x09self performActionWith: newValue",
  41. messageSends: ["inputText", "ifTrue:", "=", "performActionWith:"],
  42. referencedClasses: []
  43. }),
  44. smalltalk.MKAnyKeyInputController);
  45. smalltalk.addClass('MKEnterInputController', smalltalk.MKAnyKeyInputController, [], 'Moka-Controllers');
  46. smalltalk.MKEnterInputController.comment="I am the default controller for `MKInputView`. \x0aActions are performed on 'enter' key press.";
  47. smalltalk.addMethod(
  48. smalltalk.method({
  49. selector: "onKeyPressed:",
  50. category: 'actions',
  51. fn: function (anEvent){
  52. var self=this;
  53. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  54. return smalltalk.withContext(function($ctx1) {
  55. var $1;
  56. $1=_st(_st(anEvent)._keyCode()).__eq(_st(_st($String())._cr())._asciiValue());
  57. if(smalltalk.assert($1)){
  58. smalltalk.MKEnterInputController.superclass.fn.prototype._onKeyPressed_.apply(_st(self), [anEvent]);
  59. };
  60. return self}, function($ctx1) {$ctx1.fill(self,"onKeyPressed:",{anEvent:anEvent},smalltalk.MKEnterInputController)})},
  61. args: ["anEvent"],
  62. source: "onKeyPressed: anEvent\x0a\x09anEvent keyCode = String cr asciiValue ifTrue: [\x0a\x09\x09super onKeyPressed: anEvent ]",
  63. messageSends: ["ifTrue:", "=", "keyCode", "asciiValue", "cr", "onKeyPressed:"],
  64. referencedClasses: ["String"]
  65. }),
  66. smalltalk.MKEnterInputController);
  67. smalltalk.addClass('MKButtonController', smalltalk.MKAspectController, [], 'Moka-Controllers');
  68. smalltalk.MKButtonController.comment="I am the default controller for `MKButtonView`.";
  69. smalltalk.addMethod(
  70. smalltalk.method({
  71. selector: "onPressed",
  72. category: 'actions',
  73. fn: function (){
  74. var self=this;
  75. return smalltalk.withContext(function($ctx1) {
  76. self._performAction();
  77. return self}, function($ctx1) {$ctx1.fill(self,"onPressed",{},smalltalk.MKButtonController)})},
  78. args: [],
  79. source: "onPressed\x0a\x09self performAction",
  80. messageSends: ["performAction"],
  81. referencedClasses: []
  82. }),
  83. smalltalk.MKButtonController);
  84. smalltalk.addClass('MKCheckboxController', smalltalk.MKAspectController, [], 'Moka-Controllers');
  85. smalltalk.MKCheckboxController.comment="I am the default controller for `MKCheckboxView`.";
  86. smalltalk.addMethod(
  87. smalltalk.method({
  88. selector: "onToggled:",
  89. category: 'actions',
  90. fn: function (aBoolean){
  91. var self=this;
  92. return smalltalk.withContext(function($ctx1) {
  93. self._performActionWith_(aBoolean);
  94. return self}, function($ctx1) {$ctx1.fill(self,"onToggled:",{aBoolean:aBoolean},smalltalk.MKCheckboxController)})},
  95. args: ["aBoolean"],
  96. source: "onToggled: aBoolean\x0a\x09self performActionWith: aBoolean",
  97. messageSends: ["performActionWith:"],
  98. referencedClasses: []
  99. }),
  100. smalltalk.MKCheckboxController);
  101. });