Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RegionX Paseo #240

Merged
merged 10 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ WS_PASEO_RELAY_CHAIN="WSS endpoint of the coretime relay chain - Paseo"
WS_ROCOCO_RELAY_CHAIN="WSS endpoint of the coretime relay chain - Rococo"
WS_WESTEND_RELAY_CHAIN="WSS endpoint of the coretime relay chain - Westend"

WS_REGIONX_COCOS_CHAIN="WSS endpoint of the regionx chain"
WS_REGIONX_COCOS_CHAIN="WSS endpoint of the regionx rococo chain"
WS_REGIONX_PASEO_CHAIN="WSS endpoint of the regionx paseo chain"

POLKADOT_CORETIME_INDEXER="Subquery indexer for Polkadot Coretime"
KUSAMA_CORETIME_INDEXER="Subquery indexer for Kusama Coretime"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ The environment variables are automatically set in the Dockerfile; however, if y
```.env
WS_KUSAMA_RELAY_CHAIN="ws://127.0.0.1:9900"
WS_KUSAMA_CORETIME_CHAIN="ws://127.0.0.1:9910"
WS_REGIONX_COCOS_CHAIN="ws://127.0.0.1:9920"
WS_REGIONX_PASEO_CHAIN="ws://127.0.0.1:9920"
EXPERIMENTAL=true
```

Expand Down
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const nextConfig = {
SUBSCAN_CORETIME_WESTEND_DICT: process.env.SUBSCAN_CORETIME_WESTEND_DICT || '',

WS_REGIONX_COCOS_CHAIN: process.env.WS_REGIONX_COCOS_CHAIN || '',
WS_REGIONX_PASEO_CHAIN: process.env.WS_REGIONX_PASEO_CHAIN || '',

WS_POLKADOT_RELAY_CHAIN: process.env.WS_POLKADOT_RELAY_CHAIN,
WS_KUSAMA_RELAY_CHAIN: process.env.WS_KUSAMA_RELAY_CHAIN,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@polkadot/ui-keyring": "3.6.6",
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@region-x/components": "^0.1.16",
"@region-x/components": "^0.1.20",
"@types/humanize-duration": "^3.27.3",
"@vercel/analytics": "^1.2.2",
"apexcharts": "^3.49.1",
Expand Down

This file was deleted.

36 changes: 0 additions & 36 deletions src/components/Elements/Buttons/ProgressButton/index.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/components/Elements/Buttons/index.tsx
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from './ActionButton';
export * from './ProgressButton';
35 changes: 20 additions & 15 deletions src/components/Elements/Selectors/RegionSelector/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { FormControl, InputLabel, MenuItem, Select } from '@mui/material';
import { FormControl } from '@mui/material';
import { RegionMinimal, Select } from '@region-x/components';

import { RegionMetadata } from '@/models';

Expand All @@ -15,21 +16,25 @@ export const RegionSelector = ({
}: RegionSelectorProps) => {
return (
<FormControl fullWidth>
<InputLabel id='destination-selector-label'>Region Name</InputLabel>
<Select
labelId='destination-selector-label'
id='destination-selector'
value={selectedRegion?.name}
label='Destination'
sx={{ borderRadius: '1rem' }}
onChange={(e) => handleRegionChange(Number(e.target.value))}
>
{regions.map((region, indx) => (
<MenuItem key={indx} value={indx}>
{region.name}
</MenuItem>
))}
</Select>
options={regions.map((r) => {
return {
label: r.name || '',
value: r.rawId,
};
})}
onChange={(v) => handleRegionChange(regions.findIndex((r) => r.rawId === v))}
/>
{selectedRegion && (
<div style={{ marginTop: '1rem' }}>
<RegionMinimal
rawId={selectedRegion.rawId.toString()}
name={selectedRegion.name || ''}
regionStart={'Timeslice: ' + selectedRegion.region.getBegin().toString()}
regionEnd={'Timeslice: ' + selectedRegion.region.getEnd().toString()}
/>
</div>
)}
</FormControl>
);
};
6 changes: 4 additions & 2 deletions src/components/Layout/Sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,15 @@ export const Sidebar = () => {
{
label: 'Orders',
route: '/orders',
enabled: enableRegionX(network),
// enabled: enableRegionX(network),
enabled: false,
icon: <ListOutlinedIcon />,
},
{
label: 'Order Processor',
route: '/orders/processor',
enabled: enableRegionX(network),
// enabled: enableRegionX(network),
enabled: false,
icon: <RepeatOutlinedIcon />,
},
],
Expand Down
12 changes: 6 additions & 6 deletions src/components/Orders/Modals/OrderCreation/index.module.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@import '..//../../../../styles/mixins';
@import '..//../../../../styles/variables';

.container {
display: flex;
flex-direction: column;
Expand All @@ -19,15 +22,12 @@
}

.activeOption {
border: 1px solid #e84d68;
background: linear-gradient(180deg, #e84d68 0%, #ad2b49 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
background-color: $greenPrimary !important;
color: white !important;
}

.option {
border: 1px solid #cccccc !important;
background-color: white;
color: black;
}
}
50 changes: 26 additions & 24 deletions src/components/Orders/Modals/OrderCreation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ import {
DialogContent,
DialogProps,
FormControl,
InputLabel,
MenuItem,
Select,
Slider,
Stack,
TextField,
Expand All @@ -16,14 +13,14 @@ import {
Typography,
useTheme,
} from '@mui/material';
import { Button } from '@region-x/components';
import { Button, Select } from '@region-x/components';
import Image from 'next/image';
import { useEffect, useState } from 'react';

import { useParasInfo } from '@/hooks';
import { useSubmitExtrinsic } from '@/hooks/submitExtrinsic';

import { ParaDisplay } from '@/components/Paras';

import { chainData } from '@/chaindata';
import { useAccounts } from '@/contexts/account';
import { useRegionXApi } from '@/contexts/apis';
import { ApiState } from '@/contexts/apis/types';
Expand All @@ -33,6 +30,7 @@ import { useSaleInfo } from '@/contexts/sales';
import { useToast } from '@/contexts/toast';

import styles from './index.module.scss';
import Unknown from '../../../../assets/unknown.svg';

interface OrderCreationModalProps extends DialogProps {
onClose: () => void;
Expand Down Expand Up @@ -167,27 +165,31 @@ export const OrderCreationModal = ({ open, onClose }: OrderCreationModalProps) =
</Typography>
</Box>
<Stack>
<Typography>Select a para ID</Typography>
<FormControl fullWidth sx={{ mt: '1rem' }}>
<InputLabel id='label-parachain-select'>Para ID</InputLabel>
<Select
sx={{ borderRadius: '1rem' }}
labelId='label-parachain-select'
label='Parachain'
value={paraId || ''}
onChange={(e) => setParaId(Number(e.target.value))}
disabled={working}
>
{parachains.map((para) => (
<MenuItem key={para.id} value={para.id}>
<ParaDisplay network={network} paraId={Number(para.id)} />
</MenuItem>
))}
</Select>
label='Select a parachain'
options={parachains.map((p) => {
return {
label: `${p.name} | Parachain #${p.id}`,
value: p.id,
icon: (
<Image
src={chainData[network][p.id]?.logo || Unknown}
width={28}
height={28}
style={{ borderRadius: '100%', marginRight: '1rem' }}
alt=''
/>
),
};
})}
searchable={true}
onChange={(id) => setParaId(id || parachains[0].id)}
/>
</FormControl>
</Stack>
<Typography>Region duration:</Typography>
<Stack padding='1rem' bgcolor='#EFF0F3' gap='1rem'>
<Stack padding='1rem' gap='1rem'>
<FormControl>
<ToggleButtonGroup
value={durationType}
Expand Down Expand Up @@ -219,7 +221,7 @@ export const OrderCreationModal = ({ open, onClose }: OrderCreationModalProps) =
value={regionBegin?.toString() || ''}
type='number'
onChange={(e) => setRegionBegin(parseInt(e.target.value))}
InputProps={{ style: { borderRadius: '1rem' } }}
InputProps={{ style: { borderRadius: '0.5rem', height: '3rem' } }}
disabled={working}
/>
</Stack>
Expand All @@ -229,7 +231,7 @@ export const OrderCreationModal = ({ open, onClose }: OrderCreationModalProps) =
value={regionEnd?.toString() || ''}
type='number'
onChange={(e) => setRegionEnd(parseInt(e.target.value))}
InputProps={{ style: { borderRadius: '1rem' } }}
InputProps={{ style: { borderRadius: '0.5rem', height: '3rem' } }}
disabled={working}
/>
</Stack>
Expand Down
7 changes: 4 additions & 3 deletions src/components/Orders/Modals/OrderDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import {
Typography,
useTheme,
} from '@mui/material';

import { ActionButton } from '@/components/Elements';
import { Button } from '@region-x/components';

import { useOrders } from '@/contexts/orders';

Expand Down Expand Up @@ -44,7 +43,9 @@ export const OrderDetailsModal = ({ open, onClose, orderId }: OrderDetailsModalP
</DialogContent>
<DialogActions>
<Box>
<ActionButton label='Close' onClick={onClose} data-cy='btn-close-order-details-modal' />
<Button onClick={onClose} data-cy='btn-close-order-details-modal'>
Close
</Button>
</Box>
</DialogActions>
</Dialog>
Expand Down
19 changes: 6 additions & 13 deletions src/components/Orders/Modals/OrderProcessor/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {
Alert,
Box,
Button,
Dialog,
DialogActions,
DialogContent,
Expand All @@ -12,14 +11,13 @@ import {
Typography,
useTheme,
} from '@mui/material';
import { Button } from '@region-x/components';
import { countMaskOnes } from 'coretime-utils';
import { useState } from 'react';

import { useSubmitExtrinsic } from '@/hooks/submitExtrinsic';
import { getBalanceString } from '@/utils/functions';

import { ProgressButton } from '@/components/Elements';

import { useAccounts } from '@/contexts/account';
import { useRegionXApi, useRelayApi } from '@/contexts/apis';
import { ApiState } from '@/contexts/apis/types';
Expand Down Expand Up @@ -181,25 +179,20 @@ export const OrderProcessorModal = ({
<Box width='100%' gap='0.5rem' mt='1.5rem' display='flex'>
<Button
onClick={onClose}
variant='outlined'
color='dark'
fullWidth
sx={{
borderRadius: '1rem',
}}
data-cy='btn-close-order-processor-modal'
>
Close
</Button>
<ProgressButton
<Button
fullWidth
label='Fulfill'
sx={{
borderRadius: '1rem',
}}
onClick={onProcess}
disabled={!checkRequirements(order, regionSelected) || working}
loading={working}
/>
>
Fulfill
</Button>
</Box>
</DialogActions>
</Dialog>
Expand Down
24 changes: 0 additions & 24 deletions src/components/Regions/MarketRegion/index.module.scss

This file was deleted.

Loading
Loading