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

Menu items which need a window will create / show one if needed #13749

Merged
merged 1 commit into from
Apr 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions app/browser/reducers/tabsReducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const windowActions = require('../../../js/actions/windowActions')

// State
const tabState = require('../../common/state/tabState')
const windowState = require('../../common/state/windowState')
const siteSettings = require('../../../js/state/siteSettings')
const siteSettingsState = require('../../common/state/siteSettingsState')
const {frameOptsFromFrame} = require('../../../js/state/frameStateUtil')
Expand All @@ -23,6 +24,7 @@ const appConstants = require('../../../js/constants/appConstants')
const windowConstants = require('../../../js/constants/windowConstants')
const dragTypes = require('../../../js/constants/dragTypes')
const tabActionConsts = require('../../common/constants/tabAction')
const appActions = require('../../../js/actions/appActions')

// Utils
const tabs = require('../tabs')
Expand Down Expand Up @@ -141,8 +143,16 @@ const tabsReducer = (state, action, immutableAction) => {
const senderWindowId = action.getIn(['senderWindowId'])
if (senderWindowId != null) {
action = action.setIn(['createProperties', 'windowId'], senderWindowId)
} else if (BrowserWindow.getActiveWindow()) {
action = action.setIn(['createProperties', 'windowId'], BrowserWindow.getActiveWindow().id)
} else {
// no specified window, so use active one, or create one
const activeWindowId = windows.getActiveWindowId()
if (activeWindowId === windowState.WINDOW_ID_NONE) {
setImmediate(() => appActions.newWindow(action.get('createProperties')))
// this action will get dispatched again
// once the new window is ready to have tabs
break
}
action = action.setIn(['createProperties', 'windowId'], activeWindowId)
}
}

Expand Down
24 changes: 17 additions & 7 deletions app/browser/windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ const api = {
// that will not get saved to state as the last-closed window which should be restored
// since we won't save state if there are no frames.
if (!platformUtil.isDarwin() && api.getBufferWindow()) {
const remainingWindows = api.getAllRendererWindows().filter(win => win !== api.getBufferWindow())
const remainingWindows = api.getAllRendererWindows()
if (!remainingWindows.length) {
api.closeBufferWindow()
}
Expand Down Expand Up @@ -784,21 +784,31 @@ const api = {
return currentWindows[windowId]
},

getActiveWindowId: () => {
if (BrowserWindow.getFocusedWindow()) {
return BrowserWindow.getFocusedWindow().id
getActiveWindow: () => {
const focusedWindow = BrowserWindow.getFocusedWindow()
if (api.getAllRendererWindows().includes(focusedWindow)) {
return focusedWindow
}
return windowState.WINDOW_ID_NONE
return null
},

getActiveWindowId: () => {
const activeWindow = api.getActiveWindow()
return activeWindow ? activeWindow.id : windowState.WINDOW_ID_NONE
},

/**
* Provides an array of all Browser Windows which are actual
* main windows (not background workers), and are not destroyed
*/
getAllRendererWindows: () => {
getAllRendererWindows: (includingBufferWindow = false) => {
return Object.keys(currentWindows)
.map(key => currentWindows[key])
.filter(win => win && !win.isDestroyed())
.filter(win =>
win &&
!win.isDestroyed() &&
(includingBufferWindow || win !== api.getBufferWindow())
)
},

on: (...args) => publicEvents.on(...args),
Expand Down
23 changes: 5 additions & 18 deletions app/common/commonMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,12 @@ const communityURL = 'https://community.brave.com/'
const isDarwin = process.platform === 'darwin'
const electron = require('electron')

let BrowserWindow
if (process.type === 'browser') {
BrowserWindow = electron.BrowserWindow
} else {
BrowserWindow = electron.remote.BrowserWindow
}

const ensureAtLeastOneWindow = (frameOpts) => {
if (process.type === 'browser') {
if (BrowserWindow.getAllWindows().length === 0) {
appActions.newWindow(frameOpts || {})
return
}
}

if (!frameOpts) {
return
}

// If this action is dispatched from a renderer window (windows)
// it will create the tab in the current window
// If it was dispatched by the browser (mac / linux)
// then it will create the tab in the active window
// or a new window if there is no active window
appActions.createTabRequested(frameOpts)
}

Expand Down