Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Merge pull request #6452 from NejcZdovc/feature/#1302-autofill
Browse files Browse the repository at this point in the history
Added arrow navigation to the autofill
  • Loading branch information
bsclifton authored Jan 11, 2017
2 parents 67c6e65 + 9ce9099 commit 7ce997b
Show file tree
Hide file tree
Showing 8 changed files with 398 additions and 199 deletions.
194 changes: 35 additions & 159 deletions app/renderer/components/menubar.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,19 @@ class MenubarItem extends ImmutableComponent {
}
// If clicking on an already selected item, deselect it
const selected = this.props.menubar.props.selectedIndex
? this.props.menubar.props.selectedIndex[0]
: null
if (selected && selected === this.props.index) {
windowActions.setContextMenuDetail()
windowActions.setSubmenuSelectedIndex()
windowActions.setMenuBarSelectedIndex()
return
}
// Otherwise, mark item as selected and show its context menu
windowActions.setSubmenuSelectedIndex([this.props.index])
windowActions.setMenuBarSelectedIndex(this.props.index)
windowActions.setContextMenuSelectedIndex([0])
const rect = e.target.getBoundingClientRect()
showContextMenu(rect, this.props.submenu, this.props.lastFocusedSelector)
}
onMouseOver (e) {
const selected = this.props.menubar.props.selectedIndex
? this.props.menubar.props.selectedIndex[0]
: null
if (typeof selected === 'number' && selected !== this.props.index) {
this.onClick(e)
}
Expand Down Expand Up @@ -101,196 +98,75 @@ class Menubar extends ImmutableComponent {
document.removeEventListener('keydown', this.onKeyDown)
}

/**
* Used to get the submenu of a top level menu like File, Edit, etc.
* Index will default to the selected menu if not provided / valid.
*/
getTemplate (index) {
if (typeof index !== 'number') index = this.props.selectedIndex[0]
return this.props.template.get(index).get('submenu')
}
/**
* Same as getTemplate but excluding line separators and items that are not visible.
*/
getTemplateItemsOnly (index) {
return this.getTemplate(index).filter((element) => {
if (element.get('type') === separatorMenuItem.type) return false
if (element.has('visible')) return element.get('visible')
return true
})
}
/**
* Get client rect for the MenubarItem controls.
* Used to position the context menu object.
*/
getMenubarItemBounds (index) {
if (typeof index !== 'number') index = this.props.selectedIndex[0]
if (typeof index !== 'number') index = this.props.selectedIndex
const selected = document.querySelectorAll('.menubar .menubarItem[data-index=\'' + index + '\']')
if (selected.length === 1) {
return selected.item(0).getBoundingClientRect()
}
return null
}
/**
* Get client rect for the actively selected ContextMenu.
* Used to position the child menu if parent has children.
*/
getContextMenuItemBounds () {
const selected = document.querySelectorAll('.contextMenuItem.selectedByKeyboard')
if (selected.length > 0) {
return selected.item(selected.length - 1).getBoundingClientRect()
}
return null
}
/**
* Returns index for the active / focused menu.
*/
get currentIndex () {
return this.props.selectedIndex[this.props.selectedIndex.length - 1]
}
/**
* Upper bound for the active / focused menu.
*/
get maxIndex () {
return this.getMenuByIndex().size - 1
}
/**
* Returns true is current state is inside a regular menu.
*/
get hasMenuSelection () {
return this.props.selectedIndex.length > 1
}
/**
* Returns true if current state is inside a submenu.
*/
get hasSubmenuSelection () {
return this.props.selectedIndex.length > 2
}
/**
* Fetch menu based on selected index.
* Will navigate children to find nested menus.
*/
getMenuByIndex (parentItem, currentDepth) {
if (!parentItem) parentItem = this.getTemplateItemsOnly()
if (!currentDepth) currentDepth = 0

const selectedIndices = this.props.selectedIndex.slice(1)
if (selectedIndices.length === 0) return parentItem

const submenuIndex = selectedIndices[currentDepth]
const childItem = parentItem.get(submenuIndex)

if (childItem && childItem.get('submenu') && currentDepth < (selectedIndices.length - 1)) {
return this.getMenuByIndex(childItem.get('submenu'), currentDepth + 1)
}

return parentItem
}

onKeyDown (e) {
const selectedIndex = this.props.selectedIndex
const template = this.props.template
const contextMenuIndex = this.props.contextMenuSelectedIndex

if (!selectedIndex || !this.props.template) return
if (!template) return

switch (e.which) {
case keyCodes.ENTER:
e.preventDefault()
const selectedLabel = this.getMenuByIndex().getIn([this.currentIndex, 'label'])
windowActions.clickMenubarSubmenu(selectedLabel)
windowActions.resetMenuState()
break

case keyCodes.LEFT:
case keyCodes.RIGHT:
e.preventDefault()

// Left arrow inside a submenu
// <= go back one level
if (e.which === keyCodes.LEFT && this.hasSubmenuSelection) {
const newIndices = selectedIndex.slice()
newIndices.pop()
windowActions.setSubmenuSelectedIndex(newIndices)

let openedSubmenuDetails = this.props.contextMenuDetail.get('openedSubmenuDetails')
? this.props.contextMenuDetail.get('openedSubmenuDetails')
: new Immutable.List()
openedSubmenuDetails = openedSubmenuDetails.pop()

windowActions.setContextMenuDetail(this.props.contextMenuDetail.set('openedSubmenuDetails', openedSubmenuDetails))
break
if (contextMenuIndex !== null) {
const currentTemplate = template.get(selectedIndex).get('submenu').filter((element) => {
if (element.get('type') === separatorMenuItem.type) return false
if (element.has('visible')) return element.get('visible')
return true
}).get(contextMenuIndex[0])

if (currentTemplate && currentTemplate.has('submenu')) {
break
}
}

const selectedMenuItem = selectedIndex
? this.getMenuByIndex().get(this.currentIndex)
: null

// Right arrow on a menu item which has a submenu
// => go up one level (default next menu to item 0)
if (e.which === keyCodes.RIGHT && selectedMenuItem && selectedMenuItem.has('submenu')) {
const newIndices = selectedIndex.slice()
newIndices.push(0)
windowActions.setSubmenuSelectedIndex(newIndices)

let openedSubmenuDetails = this.props.contextMenuDetail.get('openedSubmenuDetails')
? this.props.contextMenuDetail.get('openedSubmenuDetails')
: new Immutable.List()

const rect = this.getContextMenuItemBounds()
const itemHeight = (rect.bottom - rect.top)

openedSubmenuDetails = openedSubmenuDetails.push(Immutable.fromJS({
y: (rect.top - itemHeight),
template: selectedMenuItem.get('submenu')
}))

windowActions.setContextMenuDetail(this.props.contextMenuDetail.set('openedSubmenuDetails', openedSubmenuDetails))
break
}
e.preventDefault()
e.stopPropagation()

// Regular old menu item
const nextIndex = selectedIndex === null
? 0
: wrappingClamp(
selectedIndex[0] + (e.which === keyCodes.LEFT ? -1 : 1),
selectedIndex + (e.which === keyCodes.LEFT ? -1 : 1),
0,
this.props.template.size - 1)

// Context menu already being displayed; auto-open the next one
windowActions.setMenuBarSelectedIndex(nextIndex)

if (this.props.contextMenuDetail) {
windowActions.setSubmenuSelectedIndex([nextIndex, 0])
showContextMenu(this.getMenubarItemBounds(nextIndex), this.getTemplate(nextIndex).toJS(), this.props.lastFocusedSelector)
windowActions.setContextMenuSelectedIndex([0])
showContextMenu(this.getMenubarItemBounds(nextIndex), template.get(nextIndex).get('submenu').toJS(), this.props.lastFocusedSelector)
} else {
windowActions.setSubmenuSelectedIndex([nextIndex])
windowActions.setContextMenuSelectedIndex()
}
break

case keyCodes.UP:
case keyCodes.DOWN:
case keyCodes.ENTER:
e.preventDefault()
if (this.getTemplateItemsOnly()) {
if (!this.props.contextMenuDetail) {
// First time hitting up/down; popup the context menu
const newIndices = selectedIndex.slice()
newIndices.push(0)
windowActions.setSubmenuSelectedIndex(newIndices)
showContextMenu(this.getMenubarItemBounds(), this.getTemplate().toJS(), this.props.lastFocusedSelector)
} else {
// Context menu already visible; move selection up or down
const nextIndex = wrappingClamp(
this.currentIndex + (e.which === keyCodes.UP ? -1 : 1),
0,
this.maxIndex)

const newIndices = selectedIndex.slice()
if (this.hasMenuSelection) {
newIndices[selectedIndex.length - 1] = nextIndex
} else {
newIndices.push(0)
}
windowActions.setSubmenuSelectedIndex(newIndices)
}
if (contextMenuIndex === null && template.get(selectedIndex).has('submenu')) {
e.stopPropagation()
windowActions.setContextMenuSelectedIndex([0])
showContextMenu(this.getMenubarItemBounds(selectedIndex), template.get(selectedIndex).get('submenu').toJS(), this.props.lastFocusedSelector)
}
break

case keyCodes.UP:
e.preventDefault()

}
}
shouldComponentUpdate (nextProps, nextState) {
Expand All @@ -309,7 +185,7 @@ class Menubar extends ImmutableComponent {
lastFocusedSelector: this.props.lastFocusedSelector,
menubar: this
}
if (this.props.selectedIndex && props.index === this.props.selectedIndex[0]) {
if (props.index === this.props.selectedIndex) {
props.selected = true
}
return <MenubarItem {...props} />
Expand Down
16 changes: 14 additions & 2 deletions docs/windowActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -849,10 +849,10 @@ Used by `main.js` when click happens on content area (not on a link or react con



### setSubmenuSelectedIndex(index)
### setMenuBarSelectedIndex(index)

(Windows only)
Used to track selected index of a context menu
Used to track selected index of a menu bar
Needed because arrow keys can be used to navigate the custom menu

**Parameters**
Expand All @@ -862,6 +862,18 @@ Needed because arrow keys can be used to navigate the custom menu



### setContextMenuSelectedIndex(index)

Used to track selected index of a context menu
Needed because arrow keys can be used to navigate the context menu

**Parameters**

**index**: `number`, zero based index of the item.
Index excludes menu separators and hidden items.



### setLastFocusedSelector(selector)

(Windows only at the moment)
Expand Down
19 changes: 16 additions & 3 deletions js/actions/windowActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,14 +1089,27 @@ const windowActions = {

/**
* (Windows only)
* Used to track selected index of a context menu
* Used to track selected index of a menu bar
* Needed because arrow keys can be used to navigate the custom menu
* @param {number} index - zero based index of the item.
* Index excludes menu separators and hidden items.
*/
setSubmenuSelectedIndex: function (index) {
setMenuBarSelectedIndex: function (index) {
dispatch({
actionType: windowConstants.WINDOW_SET_MENUBAR_SELECTED_INDEX,
index
})
},

/**
* Used to track selected index of a context menu
* Needed because arrow keys can be used to navigate the context menu
* @param {number} index - zero based index of the item.
* Index excludes menu separators and hidden items.
*/
setContextMenuSelectedIndex: function (index) {
dispatch({
actionType: windowConstants.WINDOW_SET_SUBMENU_SELECTED_INDEX,
actionType: windowConstants.WINDOW_SET_CONTEXT_MENU_SELECTED_INDEX,
index
})
},
Expand Down
Loading

0 comments on commit 7ce997b

Please sign in to comment.