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

feat(dcellar-web-ui): introduce retry upload functionality #377

Merged
merged 14 commits into from
May 9, 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
15 changes: 15 additions & 0 deletions apps/dcellar-web-ui/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"name": "dcellar-web-ui",
"entries": [
{
"version": "1.2.0",
"tag": "dcellar-web-ui_v1.2.0",
"date": "Thu, 09 May 2024 06:16:58 GMT",
"comments": {
"minor": [
{
"comment": "Introduce retry upload functionality"
},
{
"comment": "Add toolbox page"
}
]
}
},
{
"version": "1.1.0",
"tag": "dcellar-web-ui_v1.1.0",
Expand Down
10 changes: 9 additions & 1 deletion apps/dcellar-web-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log - dcellar-web-ui

This log was last generated on Mon, 29 Apr 2024 06:35:57 GMT and should not be manually modified.
This log was last generated on Thu, 09 May 2024 06:16:58 GMT and should not be manually modified.

## 1.2.0
Thu, 09 May 2024 06:16:58 GMT

### Minor changes

- Introduce retry upload functionality
- Add toolbox page

## 1.1.0
Mon, 29 Apr 2024 06:35:57 GMT
Expand Down
2 changes: 1 addition & 1 deletion apps/dcellar-web-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dcellar-web-ui",
"version": "1.1.0",
"version": "1.2.0",
"private": false,
"scripts": {
"dev": "node ./scripts/dev.js -p 3200",
Expand Down
1 change: 1 addition & 0 deletions apps/dcellar-web-ui/public/js/iconfont_v0.1.1.min.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion apps/dcellar-web-ui/public/js/iconfont_v0.9.min.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ export const GlobalObjectUploadManager = memo<GlobalTasksProps>(
const [authModal, setAuthModal] = useState(false);

const uploadQueue = queue.filter((t) => t.status === 'UPLOAD');

const waitUploadQueue = queue.filter(
(t) => t.status === 'SIGNED' || (t.status === 'WAIT' && t.delegateUpload),
);
Expand All @@ -91,6 +90,47 @@ export const GlobalObjectUploadManager = memo<GlobalTasksProps>(
return sealQueue.slice(0, sealOffset).map((p) => p.id);
}, [sealOffset, sealQueue]);

const retryCheckQueue = queue.filter((t) => t.status === 'RETRY_CHECK');
const retryCheckingQueue = queue.filter((t) => t.status === 'RETRY_CHECKING');
const retryOffset = MAX_PARALLEL_UPLOADS - retryCheckingQueue.length;
const retryTasks = useMemo(() => {
if (retryOffset <= 0) return [];
return retryCheckQueue.slice(0, retryOffset).map((p) => p.id);
}, [retryCheckQueue, retryOffset]);

const runRetryCheckTask = async (task: UploadObject) => {
if (authModal) return;
const { bucketName, prefixFolders, waitObject } = task;
const objectName = [...prefixFolders, waitObject.relativePath, waitObject.name]
.filter(Boolean)
.join('/');
const endpoint = spRecords[task.spAddress].endpoint;
const [objectMeta, error] = await getObjectMeta(bucketName, objectName, endpoint);
if (error && error.code !== 404) {
return dispatch(
setupUploadTaskErrorMsg({
account: loginAccount,
task,
errorMsg: error.message || 'Something went wrong.',
}),
);
}
const objectStatus = objectMeta?.ObjectInfo?.ObjectStatus;
if (objectStatus === 1) {
dispatch(uploadQueueAndRefresh(task));
dispatch(setupAccountRecords(bucketRecords[task.bucketName].PaymentAddress));
return;
}

dispatch(
updateUploadStatus({
account: loginAccount,
ids: [task.id],
status: 'WAIT',
}),
);
};

const runUploadTask = async (task: UploadObject) => {
if (authModal) return;
const name = task.waitObject.name;
Expand Down Expand Up @@ -295,6 +335,16 @@ export const GlobalObjectUploadManager = memo<GlobalTasksProps>(
}
};

// retry checking
useAsyncEffect(async () => {
if (!retryTasks.length) return;
dispatch(
updateUploadStatus({ ids: retryTasks, status: 'RETRY_CHECKING', account: loginAccount }),
);
const tasks = queue.filter((t) => retryTasks.includes(t.id));
tasks.forEach(runRetryCheckTask);
}, [retryTasks.join('')]);

// 1. hash
useAsyncEffect(async () => {
if (!hashTask) return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const BalanceAmount = memo<BalanceAmountProps>(function BalanceAmount() {
alignItems={'center'}
>
<Circle backgroundColor={'#F0B90B'} size="24px" marginRight={10}>
<IconFont color={'#fff'} type="bsc" />
<IconFont color={'#fff'} type="line-bsc" />
</Circle>{' '}
{renderBalanceNumber()}
</Flex>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const AccountBillingHistory = ({ address }: Props) => {

return (
<>
<AccountBillingHistoryFilter />
<AccountBillingHistoryFilter address={address} />
<DCTable
loading={loadingComponent}
columns={columns}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { useAppDispatch, useAppSelector } from '@/store';
import { setAccountFilterRange, setAccountFilterTypes } from '@/store/slices/billing';
import {
setAccountFilterRange,
setAccountFilterTypes,
setupAccountBills,
} from '@/store/slices/billing';
import { Flex, Text } from '@node-real/uikit';
import { useUpdateEffect } from 'ahooks';
import dayjs from 'dayjs';
Expand All @@ -8,8 +12,10 @@ import { stringify } from 'querystring';
import { FilterContainer } from './Common';
import { FilterDateRange } from './FilterDateRange';
import { FilterTypes } from './FilterTypes';
import { DCButton } from '@/components/common/DCButton';
import { IconFont } from '@/components/IconFont';

export const AccountBillingHistoryFilter = () => {
export const AccountBillingHistoryFilter = ({ address }: { address: string }) => {
const dispatch = useAppDispatch();
const router = useRouter();
const { query } = router;
Expand Down Expand Up @@ -44,11 +50,22 @@ export const AccountBillingHistoryFilter = () => {
});
}, [accountBillTypeFilter?.join('')]);

const onRefresh = () => {
dispatch(setupAccountBills(address));
};

return (
<Flex justifyContent={'space-between'} alignItems={'center'}>
<Text fontSize={16} fontWeight={600}>
<Flex justifyContent={'space-between'} alignItems={'center'} gap={12}>
<Text fontSize={16} fontWeight={600} flex={1}>
Billing History
</Text>
<DCButton
variant="ghost"
alignItems={'center'}
onClick={onRefresh}
paddingLeft={6}
leftIcon={<IconFont type="refresh" w={24} />}
/>
<FilterContainer>
<FilterDateRange
filterDateRange={accountBillRangeFilter}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { InternalRoutePaths } from '@/constants/paths';
import { useAppDispatch, useAppSelector } from '@/store';
import { setAllFilterRange, setAllFilterTypes } from '@/store/slices/billing';
import { setAllFilterRange, setAllFilterTypes, setupAllBills } from '@/store/slices/billing';
import { Flex, Text } from '@node-real/uikit';
import { useUpdateEffect } from 'ahooks';
import dayjs from 'dayjs';
Expand All @@ -10,6 +10,8 @@ import { FilterContainer } from './Common';
import { FilterAccounts } from './FilterAccounts';
import { FilterDateRange } from './FilterDateRange';
import { FilterTypes } from './FilterTypes';
import { DCButton } from '@/components/common/DCButton';
import { IconFont } from '@/components/IconFont';

export const AllBillingHistoryFilter = () => {
const dispatch = useAppDispatch();
Expand Down Expand Up @@ -57,11 +59,22 @@ export const AllBillingHistoryFilter = () => {
});
}, [billTypeFilter?.join('')]);

const onRefresh = () => {
dispatch(setupAllBills());
};

return (
<Flex justifyContent={'space-between'} mt={16} alignItems={'center'}>
<Text fontSize={16} fontWeight={600}>
<Flex justifyContent={'space-between'} mt={16} alignItems={'center'} gap={12}>
<Text fontSize={16} fontWeight={600} flex={1}>
Billing History
</Text>
<DCButton
variant="ghost"
alignItems={'center'}
onClick={onRefresh}
paddingLeft={6}
leftIcon={<IconFont type="refresh" w={24} />}
/>
<FilterContainer>
<FilterDateRange
filterDateRange={billRangeFilter}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const MetaInfo = memo(function MetaInfo({ address }: Props) {
w={24}
h={24}
>
<IconFont type={'bsc'} w={20} color={'#fff'} />
<IconFont type={'line-bsc'} w={20} color={'#fff'} />
</Flex>
<Text fontSize={24} fontWeight={600}>
{BN(availableBalance).dp(CRYPTOCURRENCY_DISPLAY_PRECISION).toString()}
Expand Down
6 changes: 5 additions & 1 deletion apps/dcellar-web-ui/src/modules/accounts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,16 @@ export const Accounts = () => {

useEffect(() => {
if (tab === 'a') return;

const filterAccounts = typeof address === 'string' ? [address] : ((address || []) as string[]);

const filterRange: [string, string] =
typeof from === 'string' && typeof to === 'string' ? [from, to] : ['', ''];

const filterTypes = typeof type === 'string' ? [type] : ((type || []) as string[]);

const curPage = isNaN(+(page as string)) ? 1 : +(page as string);

dispatch(setAllFilterRange(filterRange));
dispatch(setAllFilterAccounts(filterAccounts));
dispatch(setAllFilterTypes(filterTypes));
Expand Down Expand Up @@ -140,7 +145,6 @@ export const Accounts = () => {
</TabPanel>
<TabPanel panelKey={'b'}>
<Flex flexDirection={'column'} gap={16}>
{/* <ComingBillingHistory /> */}
<AllBillingHistory />
</Flex>
</TabPanel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,6 @@ export const PaymentAccountOperation = memo(function PaymentAccountOperation({
paymentAddress: newPaymentAccount.address,
}),
);
dispatch(
setBucketPaymentAccount({
bucketName: bucket.BucketName,
paymentAddress: newPaymentAccount.address,
}),
);
};

return (
Expand Down
1 change: 1 addition & 0 deletions apps/dcellar-web-ui/src/modules/dashboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const Dashboard = () => {
const onNavigate = (path: string) => {
router.push(path);
};

useMount(async () => {
dispatch(setupOwnerAccount());
dispatch(setupTotalCost());
Expand Down

This file was deleted.

28 changes: 12 additions & 16 deletions apps/dcellar-web-ui/src/modules/toolbox/components/TellUsCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { Box, Text, Tooltip } from '@node-real/uikit';

import { Box, Text } from '@node-real/uikit';
import { Card } from './Common';

import { assetPrefix } from '@/base/env';
import { DCButton } from '@/components/common/DCButton';

Expand All @@ -21,24 +19,22 @@ export const TellUsCard = () => {
justifyContent={'center'}
>
<Text fontSize={18} fontWeight={600} color={'readable.normal'} textAlign={'center'}>
Start Building with DCellar Now
Tell us what other tools you want.
</Text>
<Box textAlign={'center'}>
<Text color={'readable.secondary'}>
DCellar offers a full set of open source toolkits for developers to start build on
Greenfield at ease.
Want some off-the-shelf tools, API, or SDK to aid in development? Feel free to give us a
message.
</Text>
</Box>
<Tooltip content="Upcoming">
<DCButton
margin={'16px auto 0'}
variant="brand"
w={'fit-content'}
onClick={() => onNavigateExternal('#')}
>
Explore
</DCButton>
</Tooltip>
<DCButton
margin={'16px auto 0'}
variant="brand"
w={'fit-content'}
onClick={() => onNavigateExternal('https://discord.com/invite/bnbchain/')}
>
Contact Us
</DCButton>
</Card>
);
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { Badge, Flex, Text } from '@node-real/uikit';

import { Card, CircleLink } from './Common';

import { IconFont } from '@/components/IconFont';
import { ToolItem } from '../config';

export const ToolCards = ({ data }: { data: ToolItem[] }) => {
return (
<>
{data.map((item, index) => (
<Card key={index} w={'100%'}>
<IconFont type={item.icon || 'link'} w={48} />
<Flex justifyContent={'space-between'} gap={8}>
<Text fontSize={16} fontWeight={600} flex={1}>
{item.title}
</Text>
{item.links &&
item.links.map((link, i) => (
<CircleLink key={i} title={link.name} href={link.url}>
<IconFont type={link.icon} w={16} />
</CircleLink>
))}
</Flex>

<Badge colorScheme="primary" width={'fit-content'} borderRadius={4}>
{item.badge}
</Badge>
<Text color={'readable.secondary'}>{item.desc}</Text>
</Card>
))}
</>
);
};
Loading
Loading