mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
Added FileManager and TopMenuModule
The TopMenuModule binds the buttons so that they open the sub menus: at the moment it also binds those events that don't have a proper place yet. FileManager contains all the functions that have something to do with files, that is loading, opening, saving and exporting.
This commit is contained in:
97
js/TopMenuModule.js
Normal file
97
js/TopMenuModule.js
Normal file
@ -0,0 +1,97 @@
|
||||
const TopMenuModule = (() => {
|
||||
|
||||
const mainMenuItems = document.getElementById('main-menu').children;
|
||||
|
||||
initMenu();
|
||||
|
||||
function initMenu() {
|
||||
//for each button in main menu (starting at 1 to avoid logo)
|
||||
for (let i = 1; i < mainMenuItems.length; i++) {
|
||||
|
||||
//get the button that's in the list item
|
||||
const menuItem = mainMenuItems[i];
|
||||
const menuButton = menuItem.children[0];
|
||||
|
||||
//when you click a main menu items button
|
||||
Input.on('click', menuButton, function (e) {
|
||||
// Select the item
|
||||
Util.select(e.target.parentElement);
|
||||
});
|
||||
|
||||
const subMenu = menuItem.children[1];
|
||||
const subMenuItems = subMenu.children;
|
||||
|
||||
//when you click an item within a menu button
|
||||
for (var j = 0; j < subMenuItems.length; j++) {
|
||||
|
||||
const currSubmenuItem = subMenuItems[j];
|
||||
const currSubmenuButton = currSubmenuItem.children[0];
|
||||
|
||||
switch (currSubmenuButton.textContent) {
|
||||
case 'New':
|
||||
Input.on('click', currSubmenuButton, Dialogue.showDialogue, 'new-pixel');
|
||||
break;
|
||||
case 'Save project':
|
||||
Input.on('click', currSubmenuButton, FileManager.saveProject);
|
||||
break;
|
||||
case 'Open':
|
||||
Input.on('click', currSubmenuButton, FileManager.open);
|
||||
break;
|
||||
case 'Export':
|
||||
Input.on('click', currSubmenuButton, FileManager.exportProject);
|
||||
break;
|
||||
case 'Exit':
|
||||
//if a document exists, make sure they want to delete it
|
||||
if (documentCreated) {
|
||||
//ask user if they want to leave
|
||||
if (confirm('Exiting will discard your current pixel. Are you sure you want to do that?'))
|
||||
//skip onbeforeunload prompt
|
||||
window.onbeforeunload = null;
|
||||
else
|
||||
e.preventDefault();
|
||||
}
|
||||
break;
|
||||
// REFACTOR: move the binding to the Selection IIFE or something like that once it's done
|
||||
case 'Paste':
|
||||
Input.on('click', currSubmenuButton, pasteSelection);
|
||||
break;
|
||||
case 'Copy':
|
||||
Input.on('click', currSubmenuButton, copySelection);
|
||||
break;
|
||||
case 'Cut':
|
||||
Input.on('click', currSubmenuButton, cutSelectionTool);
|
||||
break;
|
||||
case 'Cancel':
|
||||
Input.on('click', currSubmenuButton, tool.pencil.switchTo);
|
||||
break;
|
||||
//Help Menu
|
||||
case 'Settings':
|
||||
//fill form with current settings values
|
||||
//Util.setValue('setting-numberOfHistoryStates', settings.numberOfHistoryStates);
|
||||
Input.on('click', currSubmenuButton, Dialogue.showDialogue, 'settings');
|
||||
break;
|
||||
case 'Help':
|
||||
Input.on('click', currSubmenuButton, Dialogue.showDialogue, 'help');
|
||||
break;
|
||||
case 'About':
|
||||
Input.on('click', currSubmenuButton, Dialogue.showDialogue, 'about');
|
||||
break;
|
||||
case 'Changelog':
|
||||
Input.on('click', currSubmenuButton, Dialogue.showDialogue, 'changelog');
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function closeMenu () {
|
||||
//remove .selected class from all menu buttons
|
||||
for (var i = 0; i < mainMenuItems.length; i++) {
|
||||
Util.deselect(mainMenuItems[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
closeMenu
|
||||
}
|
||||
})();
|
Reference in New Issue
Block a user