This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Extension installation overlay #4423
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,52 @@ | ||
/* Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
/* This file is part of Parity. | ||
/* | ||
/* Parity is free software: you can redistribute it and/or modify | ||
/* it under the terms of the GNU General Public License as published by | ||
/* the Free Software Foundation, either version 3 of the License, or | ||
/* (at your option) any later version. | ||
/* | ||
/* Parity is distributed in the hope that it will be useful, | ||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
/* GNU General Public License for more details. | ||
/* | ||
/* You should have received a copy of the GNU General Public License | ||
/* along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
.body { | ||
background: #f80; | ||
color: white; | ||
opacity: 1; | ||
max-width: 500px; | ||
padding: 1em 4em 1em 2em; | ||
position: fixed; | ||
right: 1.5em; | ||
top: 1.5em; | ||
z-index: 1000; | ||
|
||
.button { | ||
background: rgba(0, 0, 0, 0.5); | ||
color: white !important; | ||
|
||
svg { | ||
fill: white !important; | ||
} | ||
} | ||
|
||
.buttonrow { | ||
text-align: right; | ||
} | ||
|
||
p { | ||
color: white; | ||
} | ||
|
||
.close { | ||
cursor: pointer; | ||
position: absolute; | ||
right: 1em; | ||
top: 1em; | ||
} | ||
} |
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,74 @@ | ||
// Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import { observer } from 'mobx-react'; | ||
import React, { Component } from 'react'; | ||
import { FormattedMessage } from 'react-intl'; | ||
|
||
import { Button } from '~/ui'; | ||
import { CloseIcon, CheckIcon } from '~/ui/Icons'; | ||
|
||
import Store from './store'; | ||
import styles from './extension.css'; | ||
|
||
@observer | ||
export default class Extension extends Component { | ||
store = new Store(); | ||
|
||
render () { | ||
const { showWarning } = this.store; | ||
|
||
if (!showWarning) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<div className={ styles.body }> | ||
<CloseIcon | ||
className={ styles.close } | ||
onClick={ this.onClose } | ||
/> | ||
<p> | ||
<FormattedMessage | ||
id='extension.intro' | ||
defaultMessage='Parity now has an extension available for Chrome that allows for the safe browsing of Ethereum-enabled distributed applications. It is hightly recommended that you install this extension to further enhance your Parity experience.' | ||
/> | ||
</p> | ||
<p className={ styles.buttonrow }> | ||
<Button | ||
className={ styles.button } | ||
icon={ <CheckIcon /> } | ||
label={ | ||
<FormattedMessage | ||
id='extension.install' | ||
defaultMessage='Install the extension now' | ||
/> | ||
} | ||
onClick={ this.onInstallClick } | ||
/> | ||
</p> | ||
</div> | ||
); | ||
} | ||
|
||
onClose = () => { | ||
this.store.snoozeWarning(); | ||
} | ||
|
||
onInstallClick = () => { | ||
this.store.installExtension(); | ||
} | ||
} |
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,17 @@ | ||
// Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
export default from './extension'; |
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,89 @@ | ||
// Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/* global chrome */ | ||
|
||
import { action, computed, observable } from 'mobx'; | ||
|
||
import store from 'store'; | ||
import browser from 'useragent.js/lib/browser'; | ||
|
||
const A_DAY = 24 * 60 * 60 * 1000; | ||
const NEXT_DISPLAY = '_parity::extensionWarning::nextDisplay'; | ||
|
||
// 'https://chrome.google.com/webstore/detail/fgodinogimdopkigkcoelpfkbnpngalc'; | ||
const EXTENSION_PAGE = 'https://chrome.google.com/webstore/detail/parity-ethereum-integrati/fgodinogimdopkigkcoelpfkbnpngalc'; | ||
|
||
export default class Store { | ||
@observable isInstalling = false; | ||
@observable nextDisplay = 0; | ||
@observable shouldInstall = false; | ||
|
||
constructor () { | ||
this.nextDisplay = store.get(NEXT_DISPLAY) || 0; | ||
this.testInstall(); | ||
} | ||
|
||
@computed get showWarning () { | ||
return !this.isInstalling && this.shouldInstall && (Date.now() > this.nextDisplay); | ||
} | ||
|
||
@action setInstalling = (isInstalling) => { | ||
this.isInstalling = isInstalling; | ||
} | ||
|
||
@action snoozeWarning = (sleep = A_DAY) => { | ||
this.nextDisplay = Date.now() + sleep; | ||
store.set(NEXT_DISPLAY, this.nextDisplay); | ||
} | ||
|
||
@action testInstall = () => { | ||
this.shouldInstall = this.readStatus(); | ||
} | ||
|
||
readStatus = () => { | ||
const hasExtension = Symbol.for('parity.extension') in window; | ||
const ua = browser.analyze(navigator.userAgent || ''); | ||
|
||
if (hasExtension) { | ||
return false; | ||
} | ||
|
||
return (ua || {}).name.toLowerCase() === 'chrome'; | ||
} | ||
|
||
installExtension = () => { | ||
this.setInstalling(true); | ||
|
||
return new Promise((resolve, reject) => { | ||
const link = document.createElement('link'); | ||
|
||
link.setAttribute('rel', 'chrome-webstore-item'); | ||
link.setAttribute('href', EXTENSION_PAGE); | ||
document.querySelector('head').appendChild(link); | ||
|
||
if (chrome && chrome.webstore && chrome.webstore.install) { | ||
chrome.webstore.install(EXTENSION_PAGE, resolve, reject); | ||
} else { | ||
reject(new Error('Direct installation failed.')); | ||
} | ||
}) | ||
.catch((error) => { | ||
console.warn('Unable to perform direct install', error); | ||
window.open(EXTENSION_PAGE, '_blank'); | ||
}); | ||
} | ||
} |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Erk. Damnit.