MenuItemCenter.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. SC.loadPackage({ 'MenuItemCenter': {
  2. comment: 'I am the MenuItem for switching the layout either in centered mode or in infinite space.',
  3. traits: ['MenuItem'],
  4. sharedProperties: {
  5. menuContainer: { initValue: '<div class="sg-editing-menu-container"><button id="sg-editing-menu-center" class="sg-editing-menu-button"></button></div>' }
  6. },
  7. methods: {
  8. init: {
  9. comment: 'I init the MenuItem.',
  10. code: function(theDocumentMenu){
  11. this.delegate('MenuItem', 'init', theDocumentMenu);
  12. this.set({ isActionButton: true });
  13. this.get('menuContainer').firstChild.addEventListener('mouseup', function(evt){
  14. var myDocument = SuperGlue.get('document'),
  15. createState = function(myDocument){
  16. var savedLayout = myDocument.get('layout');
  17. return function(){
  18. myDocument.set({ layout: savedLayout });
  19. }
  20. };
  21. SuperGlue.get('history').do('actionHasStarted', createState(myDocument));
  22. myDocument.set({ layout: {
  23. centered: !myDocument.get('layout').centered
  24. }});
  25. SuperGlue.get('history').do('actionHasSucceeded', createState(myDocument));
  26. }, false);
  27. }
  28. }
  29. }
  30. }});