Skip to content

Commit 202eb63

Browse files
authored
[Feat] G7 Portal Webview (#1027)
* add test url * add setup without optional * temp fixes for arm64 mac test * fixes * revert yarn lock and package.json changes * fix yarn lock * fix url * update g7 portal url * implement latest designs * rm vite config artifact * fix lint * update url * whitelist app.game7.io wrt webview controls * run yarn i18n
1 parent 197d47b commit 202eb63

File tree

10 files changed

+102
-17
lines changed

10 files changed

+102
-17
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,5 @@ xyz.hyperplay.HyperPlay
5252
/public/extensions/resetExecutables/resetExtension-macos
5353
/public/extensions/resetExecutables/resetExtension.exe
5454
/public/extensions/resetExecutables/resetExtension
55+
56+
electron.vite.config..*

public/locales/en/translation.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,10 @@
787787
"overlay": "You are currently not logged in, play streak progress will not be tracked. Please exit the game and login to HyperPlay via the top-right dropdown to track progress."
788788
}
789789
},
790-
"quests": "Quests"
790+
"quests": "Quests",
791+
"viewAllQuests": {
792+
"title": "View All Quests"
793+
}
791794
},
792795
"queue": {
793796
"label": {

src/backend/main.ts

+5
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,11 @@ if (!gotTheLock) {
475475
epicStoreSession.setPreloads([
476476
path.join(__dirname, '../preload/webview_style_preload.js')
477477
])
478+
const g7PortalSession = session.fromPartition('persist:g7portal')
479+
g7PortalSession.setPreloads([
480+
path.join(__dirname, '../preload/hyperplay_store_preload.js'),
481+
path.join(__dirname, '../preload/providerPreload.js')
482+
])
478483

479484
// keyboards with alt and no option key can be used with mac so register both
480485
const hpOverlay = await getHpOverlay()

src/frontend/App.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import EmailSubscriptionModal from './components/UI/EmailSubscriptionModal'
3939
import { UpdateModalController } from './components/UI/UpdateModalController'
4040
import { QuestsPage } from './screens/Quests'
4141
import { NavigateListener } from './NavigateListener'
42+
import G7Webview from './screens/G7Webview'
4243

4344
function App() {
4445
const { sidebarCollapsed, isSettingsModalOpen, connectivity } =
@@ -101,6 +102,7 @@ function App() {
101102
path="metamaskSnaps"
102103
element={<WebView key="metamaskSnaps" />}
103104
/>
105+
<Route path="game7Portal" element={<G7Webview />} />
104106
<Route path="metamaskPortfolio" element={<MetaMaskPortfolio />}>
105107
<Route path=":page" element={<MetaMaskPortfolio />} />
106108
</Route>

src/frontend/components/UI/G7CreditsModal/index.tsx

+11-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@ import styles from './index.module.scss'
55
import { useTranslation } from 'react-i18next'
66
import { useNavigate } from 'react-router-dom'
77

8-
let isShown = true
9-
108
export function G7CreditsModal() {
11-
const [showModal, setShowModal] = useState(isShown)
9+
const [showModal, setShowModal] = useState(true)
1210
const { t } = useTranslation()
1311
const navigate = useNavigate()
1412

1513
function closeModal() {
16-
isShown = false
1714
setShowModal(false)
1815
}
1916

@@ -38,12 +35,21 @@ export function G7CreditsModal() {
3835
<Button
3936
type="secondary"
4037
onClick={() => {
41-
navigate('/quests?search=Game7')
38+
navigate('/game7Portal')
4239
closeModal()
4340
}}
4441
>
4542
{t('quests.g7CreditsModal.title', 'Earn Game7 Credits')}
4643
</Button>
44+
<Button
45+
type="tertiary"
46+
onClick={() => {
47+
navigate('/quests')
48+
closeModal()
49+
}}
50+
>
51+
{t('quests.viewAllQuests.title', 'View All Quests')}
52+
</Button>
4753
</Modal>
4854
)
4955
}

src/frontend/components/UI/WebviewControls/index.tsx

+9-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ interface WebviewControlsProps {
1717
initURL: string
1818
openInBrowser: boolean
1919
disableUrl?: boolean
20+
classNames?: {
21+
root?: string
22+
}
2023
}
2124

2225
function removeSelection(event: SyntheticEvent<unknown>) {
@@ -34,7 +37,8 @@ export default function WebviewControls({
3437
webview,
3538
initURL,
3639
openInBrowser,
37-
disableUrl
40+
disableUrl,
41+
classNames
3842
}: WebviewControlsProps) {
3943
const [url, setUrl] = React.useState(initURL)
4044
const { t } = useTranslation()
@@ -87,14 +91,15 @@ export default function WebviewControls({
8791

8892
const _url = url !== '' ? new URL(url) : null
8993
const allowList = [
90-
'hyperplay-store-git-feat-gamepageactions-hyperplay.vercel.app',
91-
'docs.hyperplay.xyz'
94+
'store.hyperplay.xyz',
95+
'docs.hyperplay.xyz',
96+
'app.game7.io'
9297
]
9398

9499
if (_url && allowList.includes(_url.host)) return null
95100

96101
return (
97-
<div className="WebviewControls">
102+
<div className={cx('WebviewControls', classNames?.root)}>
98103
<div className="WebviewControls__icons">
99104
<SvgButton
100105
className="WebviewControls__icon"

src/frontend/constants.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const EPIC_LOGIN_URL = 'https://legendary.gl/epiclogin'
2-
export const HYPERPLAY_STORE_URL =
3-
'https://hyperplay-store-git-feat-gamepageactions-hyperplay.vercel.app?isLauncher=true'
2+
export const HYPERPLAY_STORE_URL = 'https://store.hyperplay.xyz?isLauncher=true'
3+
export const G7_PORTAL = 'https://app.game7.io/quests/hyperplay?layout=navless'
44
export const EPIC_STORE_URL = 'https://www.epicgames.com/store'
55
export const GOG_STORE_URL = `https://gog.com`
66
export const WIKI_URL = 'https://docs.hyperplay.xyz/'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.topBar {
2+
margin-bottom: var(--space-md-fixed);
3+
margin-top: var(--space-xl-fixed);
4+
flex: 0;
5+
}
6+
7+
.root {
8+
height: 100%;
9+
display: flex;
10+
flex-direction: column;
11+
}
12+
13+
.webviewRoot {
14+
flex: 1;
15+
display: flex;
16+
flex-direction: column;
17+
}
18+
19+
.webviewElement {
20+
max-height: calc(100% - 30px);
21+
flex: 1;
22+
}
23+
24+
.webviewControls {
25+
flex: 0;
26+
}
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from 'react'
2+
import WebView from '../WebView'
3+
import { CircularButton, Images } from '@hyperplay/ui'
4+
import styles from './index.module.scss'
5+
import { useNavigate } from 'react-router-dom'
6+
7+
export default function G7Webview() {
8+
const navigate = useNavigate()
9+
10+
return (
11+
<div className={styles.root}>
12+
<div className={styles.topBar}>
13+
<CircularButton onClick={() => navigate('/quests')}>
14+
<Images.ArrowLeft />
15+
</CircularButton>
16+
</div>
17+
<WebView
18+
key="game7Portal"
19+
classNames={{
20+
root: styles.webviewRoot,
21+
webview: styles.webviewElement,
22+
webviewControls: styles.webviewControls
23+
}}
24+
/>
25+
</div>
26+
)
27+
}

src/frontend/screens/WebView/index.tsx

+14-5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { observer } from 'mobx-react-lite'
2121
import {
2222
EPIC_LOGIN_URL,
2323
EPIC_STORE_URL,
24+
G7_PORTAL,
2425
GOG_LOGIN_URL,
2526
GOG_STORE_URL,
2627
HYPERPLAY_STORE_URL,
@@ -29,6 +30,7 @@ import {
2930
import { METAMASK_SNAPS_URL } from 'common/constants'
3031
import storeAuthState from 'frontend/state/storeAuthState'
3132
import { getGameInfo } from 'frontend/helpers'
33+
import cn from 'classnames'
3234

3335
function urlIsHpUrl(url: string) {
3436
const urlToTest = new URL(url)
@@ -42,7 +44,11 @@ function shouldInjectProvider(url: string) {
4244
return url === METAMASK_SNAPS_URL
4345
}
4446

45-
function WebView() {
47+
function WebView({
48+
classNames
49+
}: {
50+
classNames?: { root?: string; webview?: string; webviewControls?: string }
51+
}) {
4652
const { i18n } = useTranslation()
4753
const { pathname, search } = useLocation()
4854
const { t } = useTranslation()
@@ -81,7 +87,8 @@ function WebView() {
8187
'/loginGOG': GOG_LOGIN_URL,
8288
'/loginweb/legendary': EPIC_LOGIN_URL,
8389
'/loginweb/gog': GOG_LOGIN_URL,
84-
'/metamaskSnaps': METAMASK_SNAPS_URL
90+
'/metamaskSnaps': METAMASK_SNAPS_URL,
91+
'/game7Portal': G7_PORTAL
8592
}
8693

8794
let startUrl = Object.prototype.hasOwnProperty.call(urls, pathname)
@@ -129,7 +136,7 @@ function WebView() {
129136
}, [startUrl, runner])
130137

131138
useEffect(() => {
132-
if (!urlIsHpUrl(startUrl)) {
139+
if (!urlIsHpUrl(startUrl) && pathname !== '/game7Portal') {
133140
return
134141
}
135142

@@ -264,23 +271,25 @@ function WebView() {
264271

265272
let partitionForWebview = 'persist:epicstore'
266273

274+
if (pathname === '/game7Portal') partitionForWebview = 'persist:g7portal'
267275
if (urlIsHpUrl(startUrl)) partitionForWebview = 'persist:hyperplaystore'
268276
else if (shouldInjectProvider(startUrl))
269277
partitionForWebview = 'persist:InPageWindowEthereumExternalWallet'
270278

271279
return (
272-
<div className="WebView">
280+
<div className={cn('WebView', classNames?.root)}>
273281
{webviewRef.current && (
274282
<WebviewControls
275283
webview={webviewRef.current}
276284
initURL={startUrl}
277285
openInBrowser={!startUrl.startsWith('login')}
286+
classNames={{ root: classNames?.webviewControls }}
278287
/>
279288
)}
280289
{loading.refresh && <UpdateComponent message={loading.message} />}
281290
<webview
282291
ref={webviewRef}
283-
className="WebView__webview"
292+
className={cn('WebView__webview', classNames?.webview)}
284293
partition={partitionForWebview}
285294
src={startUrl}
286295
allowpopups={trueAsStr}

0 commit comments

Comments
 (0)