Spaces:
Runtime error
Runtime error
File size: 7,228 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
const OPEN_MENU = 'scratch-gui/menus/OPEN_MENU';
const CLOSE_MENU = 'scratch-gui/menus/CLOSE_MENU';
const MENU_ABOUT = 'aboutMenu';
const MENU_ACCOUNT = 'accountMenu';
const MENU_EDIT = 'editMenu';
const MENU_FILE = 'fileMenu';
const MENU_LANGUAGE = 'languageMenu';
const MENU_LOGIN = 'loginMenu';
const MENU_MODE = 'modeMenu';
const MENU_SETTINGS = 'settingsMenu';
const MENU_ACCENT = 'accentMenu';
const MENU_BLOCKS_THEME = 'blocksThemeMenu';
const MENU_GUI = 'guiMenu';
const MENU_MENUBAR_ALIGN = 'menubarAlignMenu';
const MENU_WALLPAPER = 'wallpaperMenu';
const MENU_FONTS = 'fontsMenu';
const MENU_ERRORS = 'errorsMenu';
class Menu {
constructor (id) {
this.id = id;
this.children = [];
this.parent = null;
}
addChild (menu) {
this.children.push(menu);
menu.parent = this;
return this;
}
descendants () {
return this.children.flatMap(child => [child, ...child.descendants()]);
}
siblings () {
if (!this.parent) return [];
return this.parent.children.filter(child => child.id !== this.id);
}
findById (id) {
if (this.id === id) return this;
for (const child of this.children) {
const found = child.findById(id);
if (found) return found;
}
return null;
}
}
// Structure of nested menus, used for collapsing submenus logic.
const rootMenu = new Menu('root')
.addChild(new Menu(MENU_ERRORS))
.addChild(
new Menu(MENU_SETTINGS)
.addChild(new Menu(MENU_LANGUAGE))
.addChild(new Menu(MENU_ACCENT))
.addChild(new Menu(MENU_GUI))
.addChild(new Menu(MENU_MENUBAR_ALIGN))
.addChild(new Menu(MENU_WALLPAPER))
.addChild(new Menu(MENU_FONTS))
.addChild(new Menu(MENU_BLOCKS_THEME))
)
.addChild(new Menu(MENU_FILE))
.addChild(new Menu(MENU_EDIT))
.addChild(new Menu(MENU_MODE))
.addChild(new Menu(MENU_SETTINGS))
.addChild(new Menu(MENU_LOGIN))
.addChild(new Menu(MENU_ACCOUNT))
.addChild(new Menu(MENU_ABOUT));
const initialState = {
[MENU_ABOUT]: false,
[MENU_ACCOUNT]: false,
[MENU_EDIT]: false,
[MENU_FILE]: false,
[MENU_LANGUAGE]: false,
[MENU_LOGIN]: false,
[MENU_MODE]: false,
[MENU_SETTINGS]: false,
[MENU_ACCENT]: false,
[MENU_GUI]: false,
[MENU_MENUBAR_ALIGN]: false,
[MENU_WALLPAPER]: false,
[MENU_FONTS]: false,
[MENU_BLOCKS_THEME]: false,
[MENU_ERRORS]: false
};
const reducer = function (state, action) {
if (typeof state === 'undefined') state = initialState;
switch (action.type) {
case OPEN_MENU: {
const menu = rootMenu.findById(action.menu);
// Close siblings when opening a menu
const toClose = menu.siblings().flatMap(sibling => [sibling, ...sibling.descendants()]);
return {
...state,
[action.menu]: true,
...Object.fromEntries(toClose.map(({id}) => [id, false]))
};
}
case CLOSE_MENU: {
const menu = rootMenu.findById(action.menu);
// Close this menu and any submenus
const toClose = [menu, ...menu.descendants()];
return {
...state,
...Object.fromEntries(toClose.map(({id}) => [id, false]))
};
}
default:
return state;
}
};
const openMenu = menu => ({
type: OPEN_MENU,
menu: menu
});
const closeMenu = menu => ({
type: CLOSE_MENU,
menu: menu
});
const openAboutMenu = () => openMenu(MENU_ABOUT);
const closeAboutMenu = () => closeMenu(MENU_ABOUT);
const aboutMenuOpen = state => state.scratchGui.menus[MENU_ABOUT];
const openAccountMenu = () => openMenu(MENU_ACCOUNT);
const closeAccountMenu = () => closeMenu(MENU_ACCOUNT);
const accountMenuOpen = state => state.scratchGui.menus[MENU_ACCOUNT];
const openEditMenu = () => openMenu(MENU_EDIT);
const closeEditMenu = () => closeMenu(MENU_EDIT);
const editMenuOpen = state => state.scratchGui.menus[MENU_EDIT];
const openFileMenu = () => openMenu(MENU_FILE);
const closeFileMenu = () => closeMenu(MENU_FILE);
const fileMenuOpen = state => state.scratchGui.menus[MENU_FILE];
const openLanguageMenu = () => openMenu(MENU_LANGUAGE);
const closeLanguageMenu = () => closeMenu(MENU_LANGUAGE);
const languageMenuOpen = state => state.scratchGui.menus[MENU_LANGUAGE];
const openLoginMenu = () => openMenu(MENU_LOGIN);
const closeLoginMenu = () => closeMenu(MENU_LOGIN);
const loginMenuOpen = state => state.scratchGui.menus[MENU_LOGIN];
const openModeMenu = () => openMenu(MENU_MODE);
const closeModeMenu = () => closeMenu(MENU_MODE);
const modeMenuOpen = state => state.scratchGui.menus[MENU_MODE];
const openSettingsMenu = () => openMenu(MENU_SETTINGS);
const closeSettingsMenu = () => closeMenu(MENU_SETTINGS);
const settingsMenuOpen = state => state.scratchGui.menus[MENU_SETTINGS];
const openAccentMenu = () => openMenu(MENU_ACCENT);
const closeAccentMenu = () => closeMenu(MENU_ACCENT);
const accentMenuOpen = state => state.scratchGui.menus[MENU_ACCENT];
const openGuiMenu = () => openMenu(MENU_GUI);
const closeGuiMenu = () => closeMenu(MENU_GUI);
const guiMenuOpen = state => state.scratchGui.menus[MENU_GUI];
const openMenubarAlignMenu = () => openMenu(MENU_MENUBAR_ALIGN);
const closeMenubarAlignMenu = () => closeMenu(MENU_MENUBAR_ALIGN);
const menubarAlignMenuOpen = state => state.scratchGui.menus[MENU_MENUBAR_ALIGN];
const openBlocksThemeMenu = () => openMenu(MENU_BLOCKS_THEME);
const closeBlocksThemeMenu = () => closeMenu(MENU_BLOCKS_THEME);
const blocksThemeMenuOpen = state => state.scratchGui.menus[MENU_BLOCKS_THEME];
const openWallpaperMenu = () => openMenu(MENU_WALLPAPER);
const closeWallpaperMenu = () => closeMenu(MENU_WALLPAPER);
const wallpaperMenuOpen = state => state.scratchGui.menus[MENU_WALLPAPER];
const openFontsMenu = () => openMenu(MENU_FONTS);
const closeFontsMenu = () => closeMenu(MENU_FONTS);
const fontsMenuOpen = state => state.scratchGui.menus[MENU_FONTS];
const openErrorsMenu = () => openMenu(MENU_ERRORS);
const closeErrorsMenu = () => closeMenu(MENU_ERRORS);
const errorsMenuOpen = state => state.scratchGui.menus[MENU_ERRORS];
export {
reducer as default,
initialState as menuInitialState,
openAboutMenu,
closeAboutMenu,
aboutMenuOpen,
openAccountMenu,
closeAccountMenu,
accountMenuOpen,
openEditMenu,
closeEditMenu,
editMenuOpen,
openFileMenu,
closeFileMenu,
fileMenuOpen,
openLanguageMenu,
closeLanguageMenu,
languageMenuOpen,
openLoginMenu,
closeLoginMenu,
loginMenuOpen,
openModeMenu,
closeModeMenu,
modeMenuOpen,
openSettingsMenu,
closeSettingsMenu,
settingsMenuOpen,
openAccentMenu,
closeAccentMenu,
accentMenuOpen,
openGuiMenu,
closeGuiMenu,
guiMenuOpen,
openMenubarAlignMenu,
closeMenubarAlignMenu,
menubarAlignMenuOpen,
openBlocksThemeMenu,
closeBlocksThemeMenu,
blocksThemeMenuOpen,
openWallpaperMenu,
closeWallpaperMenu,
wallpaperMenuOpen,
openFontsMenu,
closeFontsMenu,
fontsMenuOpen,
openErrorsMenu,
closeErrorsMenu,
errorsMenuOpen
};
|