Small book optimizations (#462)

This commit is contained in:
Reckless_Satoshi 2023-04-28 10:02:29 +00:00 committed by GitHub
parent fc4f3e1593
commit c813da1b2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 191 additions and 187 deletions

View File

@ -1,4 +1,4 @@
import React, { useContext, useEffect, useMemo, useState } from 'react'; import React, { useCallback, useContext, useEffect, useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import { import {
Box, Box,
@ -42,6 +42,18 @@ const ClickThroughDataGrid = styled(DataGrid)({
}, },
}); });
const premiumColor = function (baseColor: string, accentColor: string, point: number) {
const baseRGB = hexToRgb(baseColor);
const accentRGB = hexToRgb(accentColor);
const redDiff = accentRGB[0] - baseRGB[0];
const red = baseRGB[0] + redDiff * point;
const greenDiff = accentRGB[1] - baseRGB[1];
const green = baseRGB[1] + greenDiff * point;
const blueDiff = accentRGB[2] - baseRGB[2];
const blue = baseRGB[2] + blueDiff * point;
return `rgb(${Math.round(red)}, ${Math.round(green)}, ${Math.round(blue)}, ${0.7 + point * 0.3})`;
};
interface BookTableProps { interface BookTableProps {
orderList?: PublicOrder[]; orderList?: PublicOrder[];
maxWidth: number; maxWidth: number;
@ -106,21 +118,8 @@ const BookTable = ({
}); });
}, [book.loading, orders, defaultPageSize]); }, [book.loading, orders, defaultPageSize]);
const premiumColor = function (baseColor: string, accentColor: string, point: number) { const localeText = useMemo(() => {
const baseRGB = hexToRgb(baseColor); return {
const accentRGB = hexToRgb(accentColor);
const redDiff = accentRGB[0] - baseRGB[0];
const red = baseRGB[0] + redDiff * point;
const greenDiff = accentRGB[1] - baseRGB[1];
const green = baseRGB[1] + greenDiff * point;
const blueDiff = accentRGB[2] - baseRGB[2];
const blue = baseRGB[2] + blueDiff * point;
return `rgb(${Math.round(red)}, ${Math.round(green)}, ${Math.round(blue)}, ${
0.7 + point * 0.3
})`;
};
const localeText = {
MuiTablePagination: { labelRowsPerPage: t('Orders per page:') }, MuiTablePagination: { labelRowsPerPage: t('Orders per page:') },
noResultsOverlayLabel: t('No results found.'), noResultsOverlayLabel: t('No results found.'),
errorOverlayDefaultLabel: t('An error occurred.'), errorOverlayDefaultLabel: t('An error occurred.'),
@ -169,8 +168,9 @@ const BookTable = ({
booleanCellTrueLabel: t('yes'), booleanCellTrueLabel: t('yes'),
booleanCellFalseLabel: t('no'), booleanCellFalseLabel: t('no'),
}; };
}, []);
const robotObj = function (width: number) { const robotObj = useCallback((width: number) => {
return { return {
field: 'maker_nick', field: 'maker_nick',
headerName: t('Robot'), headerName: t('Robot'),
@ -196,9 +196,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const robotSmallObj = function (width: number) { const robotSmallObj = useCallback((width: number) => {
return { return {
field: 'maker_nick', field: 'maker_nick',
headerName: t('Robot'), headerName: t('Robot'),
@ -223,9 +223,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const typeObj = function (width: number) { const typeObj = useCallback((width: number) => {
return { return {
field: 'type', field: 'type',
headerName: t('Is'), headerName: t('Is'),
@ -235,9 +235,9 @@ const BookTable = ({
? t(fav.mode === 'fiat' ? 'Seller' : 'Swapping Out') ? t(fav.mode === 'fiat' ? 'Seller' : 'Swapping Out')
: t(fav.mode === 'fiat' ? 'Buyer' : 'Swapping In'), : t(fav.mode === 'fiat' ? 'Buyer' : 'Swapping In'),
}; };
}; }, []);
const amountObj = function (width: number) { const amountObj = useCallback((width: number) => {
return { return {
field: 'amount', field: 'amount',
headerName: t('Amount'), headerName: t('Amount'),
@ -257,9 +257,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const currencyObj = function (width: number) { const currencyObj = useCallback((width: number) => {
return { return {
field: 'currency', field: 'currency',
headerName: t('Currency'), headerName: t('Currency'),
@ -282,9 +282,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const paymentObj = function (width: number) { const paymentObj = useCallback((width: number) => {
return { return {
field: 'payment_method', field: 'payment_method',
headerName: fav.mode === 'fiat' ? t('Payment Method') : t('Destination'), headerName: fav.mode === 'fiat' ? t('Payment Method') : t('Destination'),
@ -302,9 +302,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const paymentSmallObj = function (width: number) { const paymentSmallObj = useCallback((width: number) => {
return { return {
field: 'payment_method', field: 'payment_method',
headerName: t('Pay'), headerName: t('Pay'),
@ -327,9 +327,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const priceObj = function (width: number) { const priceObj = useCallback((width: number) => {
return { return {
field: 'price', field: 'price',
headerName: t('Price'), headerName: t('Price'),
@ -342,9 +342,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const premiumObj = function (width: number) { const premiumObj = useCallback((width: number) => {
// coloring premium texts based on 4 params: // coloring premium texts based on 4 params:
// Hardcoded: a sell order at 0% is an outstanding premium // Hardcoded: a sell order at 0% is an outstanding premium
// Hardcoded: a buy order at 10% is an outstanding premium // Hardcoded: a buy order at 10% is an outstanding premium
@ -391,9 +391,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const timerObj = function (width: number) { const timerObj = useCallback((width: number) => {
return { return {
field: 'escrow_duration', field: 'escrow_duration',
headerName: t('Timer'), headerName: t('Timer'),
@ -405,9 +405,9 @@ const BookTable = ({
return <div style={{ cursor: 'pointer' }}>{hours > 0 ? `${hours}h` : `${minutes}m`}</div>; return <div style={{ cursor: 'pointer' }}>{hours > 0 ? `${hours}h` : `${minutes}m`}</div>;
}, },
}; };
}; }, []);
const expiryObj = function (width: number) { const expiryObj = useCallback((width: number) => {
return { return {
field: 'expires_at', field: 'expires_at',
headerName: t('Expiry'), headerName: t('Expiry'),
@ -448,9 +448,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const satoshisObj = function (width: number) { const satoshisObj = useCallback((width: number) => {
return { return {
field: 'satoshis_now', field: 'satoshis_now',
headerName: t('Sats now'), headerName: t('Sats now'),
@ -466,9 +466,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const idObj = function (width: number) { const idObj = useCallback((width: number) => {
return { return {
field: 'id', field: 'id',
headerName: 'Order ID', headerName: 'Order ID',
@ -483,9 +483,9 @@ const BookTable = ({
); );
}, },
}; };
}; }, []);
const bondObj = function (width: number) { const bondObj = useCallback((width: number) => {
return { return {
field: 'bond_size', field: 'bond_size',
headerName: t('Bond'), headerName: t('Bond'),
@ -495,9 +495,10 @@ const BookTable = ({
return <div style={{ cursor: 'pointer' }}>{`${Number(params.row.bond_size)}%`}</div>; return <div style={{ cursor: 'pointer' }}>{`${Number(params.row.bond_size)}%`}</div>;
}, },
}; };
}; }, []);
const columnSpecs = { const columnSpecs = useMemo(() => {
return {
amount: { amount: {
priority: 1, priority: 1,
order: 4, order: 4,
@ -603,6 +604,7 @@ const BookTable = ({
}, },
}, },
}; };
}, []);
const filteredColumns = function (maxWidth: number) { const filteredColumns = function (maxWidth: number) {
const useSmall = maxWidth < 70; const useSmall = maxWidth < 70;

View File

@ -212,7 +212,9 @@ export const useAppStore = () => {
}; };
const fetchBook = function () { const fetchBook = function () {
setBook({ ...book, loading: true }); setBook((book) => {
return { ...book, loading: true };
});
apiClient.get(baseUrl, '/api/book/').then((data: any) => apiClient.get(baseUrl, '/api/book/').then((data: any) =>
setBook({ setBook({
loading: false, loading: false,