Skip to content

Commit 7cd5d3c

Browse files
authored
Feature flag Amazon Game Store (#603)
* feature flag AGS * flag manage accounts
1 parent 8d4ab63 commit 7cd5d3c

File tree

5 files changed

+36
-25
lines changed

5 files changed

+36
-25
lines changed

src/frontend/App.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import DownloadToastManager from './components/UI/DownloadToastManager'
2929
import TopNavBar from './components/UI/TopNavBar'
3030
import StoreNavHandler from './StoreNavHandler'
3131
import QaAuthHandler from './QaAuthHandler'
32+
import { ENABLE_AMAZON_STORE } from './constants'
3233

3334
function App() {
3435
const { sidebarCollapsed, isSettingsModalOpen } = useContext(ContextProvider)
@@ -65,7 +66,9 @@ function App() {
6566
/>
6667
<Route path="epicstore" element={<WebView key="epicstore" />} />
6768
<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}
6972
<Route path="wiki" element={<WebView key="wiki" />} />
7073
<Route path="metamaskHome" element={<MetaMaskHome />} />
7174
<Route

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

+13-10
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import {
1313
EPIC_STORE_URL,
1414
GOG_STORE_URL,
1515
AMAZON_STORE,
16-
HYPERPLAY_STORE_URL
16+
HYPERPLAY_STORE_URL,
17+
ENABLE_AMAZON_STORE
1718
} from 'frontend/constants'
1819
import webviewNavigationStore from 'frontend/store/WebviewNavigationStore'
1920
import { extractMainDomain } from '../../../helpers/extract-main-domain'
@@ -103,15 +104,17 @@ const TopNavBar = observer(() => {
103104
{t('GOG', 'GOG')}
104105
</Button>
105106
</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}
115118
</>
116119
)}
117120
</div>

src/frontend/constants.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ export const WIKI_URL = 'https://docs.hyperplay.xyz/'
66
export const GOG_LOGIN_URL =
77
'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'
88
export const AMAZON_STORE = `https://gaming.amazon.com`
9+
export const ENABLE_AMAZON_STORE = false

src/frontend/screens/Library/components/LibraryTopBar/index.tsx

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { Category } from 'frontend/types'
1616
import { observer } from 'mobx-react-lite'
1717
import libraryState from '../../../../state/libraryState'
1818
import storeAuthState from 'frontend/state/storeAuthState'
19+
import { ENABLE_AMAZON_STORE } from 'frontend/constants'
1920

2021
export interface LibraryTopBarInterface {
2122
filters: DropdownItemType[]
@@ -54,21 +55,21 @@ export const LibraryTopBar = observer(
5455
<Tabs.Tab value="hyperplay">
5556
<div className="menu">{t('HyperPlay')}</div>
5657
</Tabs.Tab>
57-
{isEpicLoggedin && (
58+
{isEpicLoggedin ? (
5859
<Tabs.Tab value="legendary">
5960
<div className="menu">EPIC</div>
6061
</Tabs.Tab>
61-
)}
62-
{isGOGLoggedin && (
62+
) : null}
63+
{isGOGLoggedin ? (
6364
<Tabs.Tab value="gog">
6465
<div className="menu">GOG</div>
6566
</Tabs.Tab>
66-
)}
67-
{isAmazonLoggedin && (
67+
) : null}
68+
{isAmazonLoggedin && ENABLE_AMAZON_STORE ? (
6869
<Tabs.Tab value="nile">
6970
<div className="menu">Amazon</div>
7071
</Tabs.Tab>
71-
)}
72+
) : null}
7273
<Tabs.Tab value="sideload">
7374
<div className="menu">{t('Other')}</div>
7475
</Tabs.Tab>

src/frontend/screens/Login/index.tsx

+11-8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import ContextProvider from '../../state/ContextProvider'
1616
import { Background } from '@hyperplay/ui'
1717
import libraryState from 'frontend/state/libraryState'
1818
import storeAuthState from 'frontend/state/storeAuthState'
19+
import { ENABLE_AMAZON_STORE } from 'frontend/constants'
1920

2021
export const epicLoginPath = '/loginweb/legendary'
2122
export const gogLoginPath = '/loginweb/gog'
@@ -117,14 +118,16 @@ export default React.memo(function NewLogin() {
117118
user={storeAuthState.gog.username}
118119
logoutAction={gog.logout}
119120
/>
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}
128131
</div>
129132
<button
130133
onClick={async () => handleLibraryClick()}

0 commit comments

Comments
 (0)