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

Commit

Permalink
Load tab loading icon when navigating from about:* content to http co…
Browse files Browse the repository at this point in the history
…ntent

Fix #14207
  • Loading branch information
petemill committed Jun 12, 2018
1 parent 2bfca7d commit 28dad15
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 21 deletions.
16 changes: 8 additions & 8 deletions app/common/state/tabContentState/faviconState.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. */

// Utils
const {isSourceAboutUrl} = require('../../../../js/lib/appUrlUtil')
const {isTargetAboutUrl} = require('../../../../js/lib/appUrlUtil')
const frameStateUtil = require('../../../../js/state/frameStateUtil')
const {isEntryIntersected} = require('../../../../app/renderer/lib/observerUtil')

Expand Down Expand Up @@ -35,7 +35,8 @@ module.exports.showFavicon = (state, frameKey) => {
}

// new tab page is the only tab we do not show favicon
return !isNewTabPage
// unless we are loading the next page
return !isNewTabPage || module.exports.showLoadingIcon(state, frameKey)
}

module.exports.getFavicon = (state, frameKey) => {
Expand All @@ -55,15 +56,14 @@ module.exports.showLoadingIcon = (state, frameKey) => {
if (frame == null) {
return false
}

if (frame.get('loading') == null) {
const isLoading = frame.get('loading')
// handle false or falsy value
if (!isLoading) {
return false
}

return (
!isSourceAboutUrl(frame.get('location')) &&
frame.get('loading')
)
const isLoadingAboutUrl = isTargetAboutUrl(frame.get('provisionalLocation'))
return !isLoadingAboutUrl
}

module.exports.showIconWithLessMargin = (state, frameKey) => {
Expand Down
6 changes: 5 additions & 1 deletion app/common/state/tabUIState.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const settings = require('../../../js/constants/settings')
// State helpers
const closeState = require('../../common/state/tabContentState/closeState')
const frameStateUtil = require('../../../js/state/frameStateUtil')
const faviconState = require('../../common/state/tabContentState/faviconState')

// Utils
const {isEntryIntersected} = require('../../../app/renderer/lib/observerUtil')
Expand Down Expand Up @@ -84,7 +85,10 @@ module.exports.addExtraGutterToTitle = (state, frameKey) => {
return false
}

return frameStateUtil.frameLocationMatch(frame, 'about:newtab')
return (
frameStateUtil.frameLocationMatch(frame, 'about:newtab') &&
!faviconState.showLoadingIcon(state, frameKey)
)
}

module.exports.centralizeTabIcons = (state, frameKey, isPinned) => {
Expand Down
49 changes: 37 additions & 12 deletions test/unit/app/common/state/tabContentStateTest/faviconStateTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const Immutable = require('immutable')
const mockery = require('mockery')
const fakeElectron = require('../../../../lib/fakeElectron')
const {intersection} = require('../../../../../../app/renderer/components/styles/global')
const appUrlUtil = require('../../../../../../js/lib/appUrlUtil')

const frameKey = 1
const index = 0
Expand Down Expand Up @@ -101,36 +102,60 @@ describe('faviconState unit tests', function () {
assert.equal(faviconState.showLoadingIcon(), false)
})

it('returns false if source is about page', function * () {
it('returns false if destination is about page and page is not loading', function * () {
const state = defaultState
.setIn(['frames', index, 'location'], 'about:blank')
.mergeIn(['frames', index], {
loading: false,
location: 'http://www.example.com',
provisionalLocation: appUrlUtil.aboutUrls.get('about:newtab')
})
const result = faviconState.showLoadingIcon(state, frameKey)
assert.equal(result, false)
})

it('returns true if source is not about page', function * () {
const state = defaultState.setIn(['frames', index, 'loading'], true)
it('returns false if loading an about page', function * () {
const state = defaultState
.mergeIn(['frames', index], {
loading: true,
location: 'http://www.example.com',
provisionalLocation: appUrlUtil.aboutUrls.get('about:newtab')
})
const result = faviconState.showLoadingIcon(state, frameKey)
assert.equal(result, false)
})

it('returns true if destination is not about page', function * () {
const state = defaultState
.mergeIn(['frames', index], {
loading: true,
location: 'http://www.example.com',
provisionalLocation: 'https://www.brave.com/'
})
const result = faviconState.showLoadingIcon(state, frameKey)
assert.equal(result, true)
})

it('returns false if page is not loading', function * () {
const state = defaultState.setIn(['frames', index, 'loading'], false)
const state = defaultState
.mergeIn(['frames', index], {
loading: false,
location: 'http://www.example.com',
provisionalLocation: 'https://www.brave.com/'
})
const result = faviconState.showLoadingIcon(state, frameKey)
assert.equal(result, false)
})

it('returns false if loading is undefined', function * () {
const state = defaultState.setIn(['frames', index, 'loading'], undefined)
const state = defaultState
.mergeIn(['frames', index], {
loading: undefined,
location: 'http://www.example.com',
provisionalLocation: 'https://www.brave.com/'
})
const result = faviconState.showLoadingIcon(state, frameKey)
assert.equal(result, false)
})

it('returns true if page is loading', function * () {
const state = defaultState.setIn(['frames', index, 'loading'], true)
const result = faviconState.showLoadingIcon(state, frameKey)
assert.equal(result, true)
})
})

describe('showIconWithLessMargin', function () {
Expand Down

0 comments on commit 28dad15

Please sign in to comment.