@@ -21,6 +21,7 @@ import { observer } from 'mobx-react-lite'
21
21
import {
22
22
EPIC_LOGIN_URL ,
23
23
EPIC_STORE_URL ,
24
+ G7_PORTAL ,
24
25
GOG_LOGIN_URL ,
25
26
GOG_STORE_URL ,
26
27
HYPERPLAY_STORE_URL ,
@@ -29,6 +30,7 @@ import {
29
30
import { METAMASK_SNAPS_URL } from 'common/constants'
30
31
import storeAuthState from 'frontend/state/storeAuthState'
31
32
import { getGameInfo } from 'frontend/helpers'
33
+ import cn from 'classnames'
32
34
33
35
function urlIsHpUrl ( url : string ) {
34
36
const urlToTest = new URL ( url )
@@ -42,7 +44,11 @@ function shouldInjectProvider(url: string) {
42
44
return url === METAMASK_SNAPS_URL
43
45
}
44
46
45
- function WebView ( ) {
47
+ function WebView ( {
48
+ classNames
49
+ } : {
50
+ classNames ?: { root ?: string ; webview ?: string ; webviewControls ?: string }
51
+ } ) {
46
52
const { i18n } = useTranslation ( )
47
53
const { pathname, search } = useLocation ( )
48
54
const { t } = useTranslation ( )
@@ -81,7 +87,8 @@ function WebView() {
81
87
'/loginGOG' : GOG_LOGIN_URL ,
82
88
'/loginweb/legendary' : EPIC_LOGIN_URL ,
83
89
'/loginweb/gog' : GOG_LOGIN_URL ,
84
- '/metamaskSnaps' : METAMASK_SNAPS_URL
90
+ '/metamaskSnaps' : METAMASK_SNAPS_URL ,
91
+ '/game7Portal' : G7_PORTAL
85
92
}
86
93
87
94
let startUrl = Object . prototype . hasOwnProperty . call ( urls , pathname )
@@ -129,7 +136,7 @@ function WebView() {
129
136
} , [ startUrl , runner ] )
130
137
131
138
useEffect ( ( ) => {
132
- if ( ! urlIsHpUrl ( startUrl ) ) {
139
+ if ( ! urlIsHpUrl ( startUrl ) && pathname !== '/game7Portal' ) {
133
140
return
134
141
}
135
142
@@ -264,23 +271,25 @@ function WebView() {
264
271
265
272
let partitionForWebview = 'persist:epicstore'
266
273
274
+ if ( pathname === '/game7Portal' ) partitionForWebview = 'persist:g7portal'
267
275
if ( urlIsHpUrl ( startUrl ) ) partitionForWebview = 'persist:hyperplaystore'
268
276
else if ( shouldInjectProvider ( startUrl ) )
269
277
partitionForWebview = 'persist:InPageWindowEthereumExternalWallet'
270
278
271
279
return (
272
- < div className = " WebView" >
280
+ < div className = { cn ( ' WebView' , classNames ?. root ) } >
273
281
{ webviewRef . current && (
274
282
< WebviewControls
275
283
webview = { webviewRef . current }
276
284
initURL = { startUrl }
277
285
openInBrowser = { ! startUrl . startsWith ( 'login' ) }
286
+ classNames = { { root : classNames ?. webviewControls } }
278
287
/>
279
288
) }
280
289
{ loading . refresh && < UpdateComponent message = { loading . message } /> }
281
290
< webview
282
291
ref = { webviewRef }
283
- className = " WebView__webview"
292
+ className = { cn ( ' WebView__webview' , classNames ?. webview ) }
284
293
partition = { partitionForWebview }
285
294
src = { startUrl }
286
295
allowpopups = { trueAsStr }
0 commit comments