Add option to hide on-screen buttons, add cards & prefs to menu

This commit is contained in:
futpib 2018-11-21 18:22:28 +03:00
parent 95af630439
commit 08a561bcfd
6 changed files with 43 additions and 15 deletions

View File

@ -51,15 +51,15 @@ class Cards extends React.Component {
open, open,
}, },
}, open ? [ }, open ? [
r.div([ !this.props.preferences.hideOnScreenButtons && r(React.Fragment, [
r(Button, { r(Button, {
style: { width: '100%' }, style: { width: '100%' },
autoFocus: true, autoFocus: true,
onClick: toggle, onClick: toggle,
}, 'Close'), }, 'Close'),
]),
r.hr(), r.hr(),
]),
...map(card => r(Label, { ...map(card => r(Label, {
title: card.name, title: card.name,
@ -92,7 +92,7 @@ class Cards extends React.Component {
JSON.stringify(this.props, null, 2), JSON.stringify(this.props, null, 2),
]), ]),
] : [ ] : [
r(Button, { !this.props.preferences.hideOnScreenButtons && r(Button, {
autoFocus: true, autoFocus: true,
onClick: toggle, onClick: toggle,
}, 'Cards'), }, 'Cards'),

View File

@ -85,13 +85,20 @@ class MyHotKeys extends React.Component {
} }
render() { render() {
const handlers = map(f => bind(f, this), pick(keys(keyMap), this));
return r(HotKeys, { return r(HotKeys, {
keyMap, keyMap,
handlers: map(f => bind(f, this), pick(keys(keyMap), this)), handlers,
}, this.props.children({ }, this.props.children({
graphRef: this.graphRef, graphRef: this.graphRef,
cardsRef: this.cardsRef, cardsRef: this.cardsRef,
preferencesRef: this.preferencesRef, preferencesRef: this.preferencesRef,
actions: {
focusGraph: handlers.hotKeyFocusGraph,
focusCards: handlers.hotKeyFocusCards,
focusPreferences: handlers.hotKeyFocusPreferences,
},
})); }));
} }
} }

View File

@ -16,14 +16,14 @@ const MenuProvider = ({ children, ...props }) => r(Provider, { electron }, r(Rea
...[].concat(children), ...[].concat(children),
])); ]));
const WindowMenu = ({ openConnectToServerModal }) => r(WindowMenuBase, [ const WindowMenu = props => r(WindowMenuBase, [
r(MenuItem, { r(MenuItem, {
label: 'File', label: 'File',
}, [ }, [
r(MenuItem, { r(MenuItem, {
label: 'Connect to server...', label: 'Connect to server...',
accelerator: 'CommandOrControl+N', accelerator: 'CommandOrControl+N',
onClick: openConnectToServerModal, onClick: props.openConnectToServerModal,
}), }),
r(MenuItem.Separator), r(MenuItem.Separator),
@ -37,6 +37,17 @@ const WindowMenu = ({ openConnectToServerModal }) => r(WindowMenuBase, [
r(MenuItem, { r(MenuItem, {
label: 'View', label: 'View',
}, [ }, [
r(MenuItem, {
label: 'Cards',
onClick: props.focusCards,
}),
r(MenuItem, {
label: 'Preferences',
onClick: props.focusPreferences,
}),
r(MenuItem.Separator),
r(MenuItem, { r(MenuItem, {
label: 'Reload', label: 'Reload',
role: 'reload', role: 'reload',

View File

@ -58,15 +58,15 @@ class Preferences extends React.Component {
open, open,
}, },
}, open ? [ }, open ? [
r.div([ !this.props.preferences.hideOnScreenButtons && r(React.Fragment, [
r(Button, { r(Button, {
style: { width: '100%' }, style: { width: '100%' },
autoFocus: true, autoFocus: true,
onClick: toggle, onClick: toggle,
}, 'Close'), }, 'Close'),
]),
r.hr(), r.hr(),
]),
r.div([ r.div([
r(Checkbox, { r(Checkbox, {
@ -153,6 +153,13 @@ class Preferences extends React.Component {
r.hr(), r.hr(),
r.div([
r(Checkbox, {
checked: this.props.preferences.hideOnScreenButtons,
onChange: () => this.props.actions.toggle('hideOnScreenButtons'),
}, 'Hide on-screen buttons'),
]),
r.div([ r.div([
r(Checkbox, { r(Checkbox, {
checked: this.props.preferences.doNotAskForConfirmations, checked: this.props.preferences.doNotAskForConfirmations,
@ -176,7 +183,7 @@ class Preferences extends React.Component {
}, 'Reset to defaults'), }, 'Reset to defaults'),
]), ]),
] : [ ] : [
r(Button, { !this.props.preferences.hideOnScreenButtons && r(Button, {
autoFocus: true, autoFocus: true,
onClick: toggle, onClick: toggle,
}, 'Preferences'), }, 'Preferences'),

View File

@ -8,6 +8,8 @@ const { handleActions } = require('redux-actions');
const { preferences } = require('../actions'); const { preferences } = require('../actions');
const initialState = { const initialState = {
hideOnScreenButtons: false,
hideDisconnectedClients: true, hideDisconnectedClients: true,
hideDisconnectedModules: true, hideDisconnectedModules: true,
hideDisconnectedSources: false, hideDisconnectedSources: false,

View File

@ -22,11 +22,12 @@ const theme = require('./utils/theme');
const Root = () => r(ReduxProvider, { const Root = () => r(ReduxProvider, {
store: createStore(), store: createStore(),
}, r(HotKeys, { }, r(HotKeys, {
}, ({ graphRef, cardsRef, preferencesRef }) => r(Modals, { }, ({ graphRef, cardsRef, preferencesRef, actions: hotKeysActions }) => r(Modals, {
}, ({ actions }) => r(MenuProvider, { }, ({ actions: modalsActions }) => r(MenuProvider, {
...actions, ...modalsActions,
...hotKeysActions,
}, [ }, [
r(Graph, { ref: graphRef, ...actions }), r(Graph, { ref: graphRef, ...modalsActions }),
r(Cards, { ref: cardsRef }), r(Cards, { ref: cardsRef }),
r(Preferences, { ref: preferencesRef }), r(Preferences, { ref: preferencesRef }),
r(ServerInfo), r(ServerInfo),