Skip to content

Commit

Permalink
OAuth - Web clients, app download modal
Browse files Browse the repository at this point in the history
  • Loading branch information
1aerostorm committed Aug 1, 2024
1 parent 0bc52a8 commit c5c56f9
Show file tree
Hide file tree
Showing 13 changed files with 193 additions and 1 deletion.
9 changes: 9 additions & 0 deletions config/oauth.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@
"posting": "5K1aJ8JayUA7c2Ptg9Y2DetKxSvXGXa5GCcvYeHtn1Xh3v4egPS",
"active": "5JFZC7AtEe1wF2ce6vPAUxDeevzYkPgmtR14z9ZVgvCCtrFAaLw"
},
"web_clients": {
"Blogs": { "img": "https://i.imgur.com/36zv8We.png",
"ru": "Блоги", "url": "https://golos.id" },
"Wallet": { "img": "https://i.imgur.com/CYfDqIy.png",
"ru": "Кошелек", "url": "https://wallet.golos.id" },
"Messenger": { "img": "https://devimages.golos.today/DQmbzuzhgGnDRbKG8KyqL5HWSu5T2w1ZDP32ygM556TqLSn/Messenger.png",
"ru": "Мессенджер", "url": "https://chat.golos.app" },
"_desktop": { "host": "https://files.golos.app" }
},
"allowed_clients": {
"localfile": {
"origins": ["null"],
Expand Down
Binary file added public/images/android48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/windows.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
@import "./elements/GeneratedPasswordInput";
@import "./elements/Expandable";
@import "./elements/LoadingIndicator";
@import "./elements/WebClients";
@import "./elements/nft/NFTSmallIcon";
@import "./elements/nft/NFTTokens";
@import "./elements/PagedDropdownMenu";
Expand Down
18 changes: 18 additions & 0 deletions src/elements/QrCode.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// modified https://github.com/jprichardson/react-qr/blob/master/index.js
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import qrImage from 'qr-image'

export default class ReactQR extends Component {
static propTypes = {
text: PropTypes.string.isRequired
}

render() {
const pngBuffer = qrImage.imageSync(this.props.text, { type: 'png', size: this.props.size || 2, margin: 1 })
const dataURI = 'data:image/png;base64,' + pngBuffer.toString('base64')
return (
<img className='react-qr' src={dataURI} />
)
}
}
81 changes: 81 additions & 0 deletions src/elements/WebClients.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
import React from 'react'
import tt from 'counterpart'
import CloseButton from 'react-foundation-components/lib/global/close-button'
import Reveal from 'react-foundation-components/lib/global/reveal'

import AppDownload from '@/modules/app/AppDownload'

class WebClients extends React.Component {
static propTypes = {
}

state = {
}

showAppDownload = (e) => {
e.preventDefault()
this.setState({
show_app_download_modal: true
})
}

hideAppDownload = () => {
this.setState({
show_app_download_modal: false
})
}

render() {
const { web_clients } = this.props

const isEng = tt.getLocale() !== 'ru'

let appList = null
const webs = Object.entries(web_clients || {})
if (webs.length) {
appList = []
for (const [en, data] of webs) {
if (en === '_desktop') continue
const { img, ru, url } = data
appList.push(<a key={url} className='web-client' href={url} target='_blank' rel='noopener noreferrer'>
<img src={img} /><br/>
<div className='web-label'>{isEng ? en : ru}</div>
</a>)
}

let desktop
const { _desktop } = web_clients
let desktopHost
if (_desktop) {
desktopHost = _desktop.host
desktop = <div className='desktop'>
{tt('web_clients_jx.or_desktop')}
<a href='#' onClick={this.showAppDownload}>{tt('web_clients_jx.or_desktop_link')}</a>
{tt('web_clients_jx.or_desktop2')}
</div>
}

const modalStyle = {
borderRadius: '8px',
boxShadow: '0 0 19px 3px rgba(0,0,0, 0.2)',
overflow: 'hidden',
}

const { show_app_download_modal } = this.state
appList = <div className='WebClients'>
<h3>{tt('web_clients_jx.title')}</h3>
{appList}
{desktop}
<hr/>
<Reveal revealStyle={{ ...modalStyle, }}
onHide={this.hideAppDownload} show={show_app_download_modal}>
<CloseButton onClick={this.hideAppDownload} />
<AppDownload host={desktopHost} />
</Reveal>
</div>
}
return appList
}
}

export default WebClients
23 changes: 23 additions & 0 deletions src/elements/WebClients.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.WebClients {
.web-client {
display: inline-block;
vertical-align: top;
width: 150px;
height: 80px;
position: relative;

img {
max-width: 100%;
max-height: 100%;
}
.web-label {
position: absolute;
left: 0.25rem;
bottom: 0.25rem;
}
}

.desktop {
margin-top: 0.5rem;
}
}
10 changes: 10 additions & 0 deletions src/locales/en.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"app_download": {
"title": "Download application",
"download_for": "Download for"
},
"chainvalidation_js": {
"account_name_should": "Account name should ",
"not_be_empty": "not be empty.",
Expand Down Expand Up @@ -212,6 +216,12 @@
"memo_is_public": "This memo is public.",
"submit": "Transfer"
},
"web_clients_jx": {
"title": "Web-clients",
"or_desktop": "Or ",
"or_desktop_link": "download desktop app",
"or_desktop2": ", which combines all these applications."
},
"oauth_transfer_nft": {
"no_tokens": "You have not yet any NFT-tokens.",
"token_not_exist": "No such token in your wallet. You can transfer any of these tokens:",
Expand Down
11 changes: 11 additions & 0 deletions src/locales/ru-RU.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"app_download": {
"title": "Скачать приложение",
"download_for": "Скачать для"
},
"chainvalidation_js": {
"account_name_should": "Имя аккаунта должно ",
"not_be_empty": "не может быть пустым.",
Expand Down Expand Up @@ -197,11 +201,18 @@
"unfreeze": "Активировать аккаунт",
"apps_title": "Приложения",
"apps_empty": "Вы пока не авторизованы ни в одном приложении.",
"web_clients": "Веб-клиенты",
"link": "Ссылка: ",
"edit": "Настроить",
"remove_authority": "Отменить доступ OAuth к моему аккаунту",
"remove_authority_confirm": "Вы действительно хотите отменить доступ GolosSigner к вашему аккаунту?"
},
"web_clients_jx": {
"title": "Веб-клиенты",
"or_desktop": "Или ",
"or_desktop_link": "скачайте десктоп-клиент",
"or_desktop2": ", где объединены все эти приложения."
},
"oauth_transfer": {
"from": "От",
"to": "Отправить аккаунту",
Expand Down
35 changes: 35 additions & 0 deletions src/modules/app/AppDownload.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import React from 'react'
import tt from 'counterpart'

import QRCode from '@/elements/QrCode'

class AppDownload extends React.Component {
componentDidMount() {
}

render() {
const updaterHost = this.props.host
if (!updaterHost) return null
const winUrl = new URL('/api/exe/desktop/windows/latest', updaterHost).toString()
const linuxUrl = new URL('/api/exe/desktop/linux/latest', updaterHost).toString()
const androidUrl = new URL('/api/exe/messenger/android/latest', updaterHost).toString()
return <div>
<h4>{tt('app_download.title')}</h4>
<a href={winUrl} target='_blank' rel='nofollow noreferrer' title={tt('app_download.download_for') + ' Windows'}>
<img src={'/images/windows.png'} />
Windows
</a><br />
<a href={linuxUrl} title={tt('app_download.download_for') + ' Linux'}>
<img src={'/images/linux.png'} />
Linux (deb)
</a><br />
<a href={androidUrl} title={tt('app_download.download_for') + ' Android'}>
<img src={'/images/android48x48.png'} />
Android&nbsp;&nbsp;
<QRCode text={androidUrl} size={2} />
</a>
</div>
}
}

export default AppDownload
5 changes: 4 additions & 1 deletion src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import tt from 'counterpart';
import { api } from 'golos-lib-js'

import RemoveAuthority from '@/elements/RemoveAuthority';
import WebClients from '@/elements/WebClients'
import Header from '@/modules/Header';
import { callApi, } from '@/utils/OAuthClient';
import { withRouterHelpers, } from '@/utils/routing';
Expand Down Expand Up @@ -51,7 +52,7 @@ class Index extends React.Component {
render() {
const { session, oauthCfg, } = this.props;
const { account, clients, } = session;
const { service_account, sign_endpoint, } = oauthCfg;
const { service_account, sign_endpoint, web_clients, } = oauthCfg;
let actions = [];
for (let action of [
'transfer', 'donate', 'delegate_vs', 'transfer_nft']) {
Expand Down Expand Up @@ -102,6 +103,7 @@ class Index extends React.Component {
} else {
clientList = <div className='callout'>{tt('oauth_main_jsx.apps_empty')}</div>
}

return (
<div className='Signer_page'>
<Head>
Expand All @@ -122,6 +124,7 @@ class Index extends React.Component {
<h3>{tt('oauth_main_jsx.apps_title')}</h3>
{clientList}
<hr/>
<WebClients web_clients={web_clients} />
<RemoveAuthority
account={account}
service_account={service_account}
Expand Down
1 change: 1 addition & 0 deletions src/server/oauth.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ function getOAuthCfg() {
ws_connection_client: config.get('oauth.ws_connection_client'),
chain_id: config.has('oauth.chain_id') && config.get('oauth.chain_id'),
service_account: config.get('oauth.service_account.name'),
web_clients: config.has('oauth.web_clients') && config.get('oauth.web_clients'),
sign_endpoint: new URL('/api/oauth/sign', config.get('oauth.rest_api')).toString(),
};
}
Expand Down

0 comments on commit c5c56f9

Please sign in to comment.