forked from brave/browser-laptop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves brave#10194 Auditors: @bsclifton Test Plan:
- Loading branch information
Showing
2 changed files
with
46 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
const React = require('react') | ||
const Immutable = require('immutable') | ||
|
||
// Components | ||
const ReduxComponent = require('../reduxComponent') | ||
|
||
// Utils | ||
const frameStateUtil = require('../../../../js/state/frameStateUtil') | ||
const cx = require('../../../../js/lib/classSet') | ||
|
||
class HrefPreview extends React.Component { | ||
mergeProps (state, ownProps) { | ||
const currentWindow = state.get('currentWindow') | ||
const frame = frameStateUtil.getFrameByKey(currentWindow, ownProps.frameKey) || Immutable.Map() | ||
|
||
const props = {} | ||
// used in renderer | ||
props.hrefPreview = frame.get('hrefPreview') | ||
props.showOnRight = frame.get('showOnRight') | ||
|
||
return props | ||
} | ||
|
||
render () { | ||
if (!this.props.hrefPreview) { | ||
return null | ||
} | ||
|
||
return <div | ||
className={cx({ | ||
hrefPreview: true, | ||
right: this.props.showOnRight | ||
})} | ||
> | ||
{this.props.hrefPreview} | ||
</div> | ||
} | ||
} | ||
|
||
module.exports = ReduxComponent.connect(HrefPreview) |