File tree 5 files changed +36
-25
lines changed
Library/components/LibraryTopBar
5 files changed +36
-25
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import DownloadToastManager from './components/UI/DownloadToastManager'
29
29
import TopNavBar from './components/UI/TopNavBar'
30
30
import StoreNavHandler from './StoreNavHandler'
31
31
import QaAuthHandler from './QaAuthHandler'
32
+ import { ENABLE_AMAZON_STORE } from './constants'
32
33
33
34
function App ( ) {
34
35
const { sidebarCollapsed, isSettingsModalOpen } = useContext ( ContextProvider )
@@ -65,7 +66,9 @@ function App() {
65
66
/>
66
67
< Route path = "epicstore" element = { < WebView key = "epicstore" /> } />
67
68
< Route path = "gogstore" element = { < WebView key = "gogstore" /> } />
68
- < Route path = "amazonstore" element = { < WebView /> } />
69
+ { ENABLE_AMAZON_STORE ? (
70
+ < Route path = "amazonstore" element = { < WebView /> } />
71
+ ) : null }
69
72
< Route path = "wiki" element = { < WebView key = "wiki" /> } />
70
73
< Route path = "metamaskHome" element = { < MetaMaskHome /> } />
71
74
< Route
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ import {
13
13
EPIC_STORE_URL ,
14
14
GOG_STORE_URL ,
15
15
AMAZON_STORE ,
16
- HYPERPLAY_STORE_URL
16
+ HYPERPLAY_STORE_URL ,
17
+ ENABLE_AMAZON_STORE
17
18
} from 'frontend/constants'
18
19
import webviewNavigationStore from 'frontend/store/WebviewNavigationStore'
19
20
import { extractMainDomain } from '../../../helpers/extract-main-domain'
@@ -103,15 +104,17 @@ const TopNavBar = observer(() => {
103
104
{ t ( 'GOG' , 'GOG' ) }
104
105
</ Button >
105
106
</ NavLink >
106
- < NavLink to = "/amazonstore" >
107
- < Button
108
- type = "link"
109
- size = "small"
110
- style = { getStoreTextStyle ( AMAZON_STORE ) }
111
- >
112
- { t ( 'Amazon' , 'Amazon' ) }
113
- </ Button >
114
- </ NavLink >
107
+ { ENABLE_AMAZON_STORE ? (
108
+ < NavLink to = "/amazonstore" >
109
+ < Button
110
+ type = "link"
111
+ size = "small"
112
+ style = { getStoreTextStyle ( AMAZON_STORE ) }
113
+ >
114
+ { t ( 'Amazon' , 'Amazon' ) }
115
+ </ Button >
116
+ </ NavLink >
117
+ ) : null }
115
118
</ >
116
119
) }
117
120
</ div >
Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ export const WIKI_URL = 'https://docs.hyperplay.xyz/'
6
6
export const GOG_LOGIN_URL =
7
7
'https://auth.gog.com/auth?client_id=46899977096215655&redirect_uri=https%3A%2F%2Fembed.gog.com%2Fon_login_success%3Forigin%3Dclient&response_type=code&layout=galaxy'
8
8
export const AMAZON_STORE = `https://gaming.amazon.com`
9
+ export const ENABLE_AMAZON_STORE = false
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { Category } from 'frontend/types'
16
16
import { observer } from 'mobx-react-lite'
17
17
import libraryState from '../../../../state/libraryState'
18
18
import storeAuthState from 'frontend/state/storeAuthState'
19
+ import { ENABLE_AMAZON_STORE } from 'frontend/constants'
19
20
20
21
export interface LibraryTopBarInterface {
21
22
filters : DropdownItemType [ ]
@@ -54,21 +55,21 @@ export const LibraryTopBar = observer(
54
55
< Tabs . Tab value = "hyperplay" >
55
56
< div className = "menu" > { t ( 'HyperPlay' ) } </ div >
56
57
</ Tabs . Tab >
57
- { isEpicLoggedin && (
58
+ { isEpicLoggedin ? (
58
59
< Tabs . Tab value = "legendary" >
59
60
< div className = "menu" > EPIC</ div >
60
61
</ Tabs . Tab >
61
- ) }
62
- { isGOGLoggedin && (
62
+ ) : null }
63
+ { isGOGLoggedin ? (
63
64
< Tabs . Tab value = "gog" >
64
65
< div className = "menu" > GOG</ div >
65
66
</ Tabs . Tab >
66
- ) }
67
- { isAmazonLoggedin && (
67
+ ) : null }
68
+ { isAmazonLoggedin && ENABLE_AMAZON_STORE ? (
68
69
< Tabs . Tab value = "nile" >
69
70
< div className = "menu" > Amazon</ div >
70
71
</ Tabs . Tab >
71
- ) }
72
+ ) : null }
72
73
< Tabs . Tab value = "sideload" >
73
74
< div className = "menu" > { t ( 'Other' ) } </ div >
74
75
</ Tabs . Tab >
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import ContextProvider from '../../state/ContextProvider'
16
16
import { Background } from '@hyperplay/ui'
17
17
import libraryState from 'frontend/state/libraryState'
18
18
import storeAuthState from 'frontend/state/storeAuthState'
19
+ import { ENABLE_AMAZON_STORE } from 'frontend/constants'
19
20
20
21
export const epicLoginPath = '/loginweb/legendary'
21
22
export const gogLoginPath = '/loginweb/gog'
@@ -117,14 +118,16 @@ export default React.memo(function NewLogin() {
117
118
user = { storeAuthState . gog . username }
118
119
logoutAction = { gog . logout }
119
120
/>
120
- < Runner
121
- class = "nile"
122
- icon = { ( ) => < AmazonLogo /> }
123
- loginUrl = { amazonLoginPath }
124
- isLoggedIn = { isAmazonLoggedIn }
125
- user = { storeAuthState . amazon . username || 'Unknown' }
126
- logoutAction = { amazon . logout }
127
- />
121
+ { ENABLE_AMAZON_STORE ? (
122
+ < Runner
123
+ class = "nile"
124
+ icon = { ( ) => < AmazonLogo /> }
125
+ loginUrl = { amazonLoginPath }
126
+ isLoggedIn = { isAmazonLoggedIn }
127
+ user = { storeAuthState . amazon . username || 'Unknown' }
128
+ logoutAction = { amazon . logout }
129
+ />
130
+ ) : null }
128
131
</ div >
129
132
< button
130
133
onClick = { async ( ) => handleLibraryClick ( ) }
You can’t perform that action at this time.
0 commit comments