-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UX improvements + custom user description (#158)
* Upgrade accounting page for moloch v3 (#149) * Add v2 and v3 panels for each tab (#131) Co-authored-by: growindiedev <[email protected]> * PR for #132 (#138) * organise memos in one hook * split useAccounting into useAccountingV2 & useAccountingV3 * Remove useAccounting hook --------- Co-authored-by: ECWireless <[email protected]> * needs clean up * cleaned up useAccountingV3 * [WIP] Accounting Fixes + Transaction Data (#141) * fix issue * fetch tx data * proposal data * wip * wip2 * fetch all transactions * use bigint for calculating sum of in/out flows * transactions * cache results * display member & proposal & proposal link * fix proposals * fix type * cleanup * set balancesWithPricesV3 data for csv export fix * add elapsed days and ragequit shares * add in/out/balance USD * rename * fix types * token symbol value --------- Co-authored-by: vidvidvid <[email protected]> * render v3 spoils in spoils table (#148) * remove V2 data from accounting and fixed type and export errors * fetch smartInvoices and add query to fecth raids * create formatSpoils function and raids query mvp * unsuccessful attempt to fetch raids in useAccountingV3 * fetch invoice and raids and map them together using formatSpoils * render formatted spoils in spoilsTable * clean up useAccountingV3 & useFormattedDataV3 * cleanup accounting.tsx * change file names for useFormattedData to useFormattedAccountingV3 * Minor tweaks --------- Co-authored-by: growindiedev <[email protected]> Co-authored-by: Abhishek Ranjan <[email protected]> Co-authored-by: Sero <[email protected]> Co-authored-by: vidvidvid <[email protected]> * Add invoices table and allow for Optimism chain invoices (#147) * Add invoices table * Remove unused remote schemas * Add Optimism to escrow network config * Prompt user to switch chain if unsupported * Add warnings for Optimism and Mainnet chains * Prevent RIP escrow on Optimism * Ensure that user is always on the right chain * Restrict to native USDC on Optimism * Add insert invoice to Hasura functionality * Add created_at and updated_at columns * Ensure create escrow link allows chain selection * Add chain ID to escrow confirmation * Render chain ID name to raid and escrow pages * Format amounts with correct decimals * Allow member access to invoice table (#152) * Update smart invoice subgraph versions (#154) * fix member reload * fix user card content overflow * set up migration & textarea * display description instead of introduction * reuse Description component * cleanup * Upgrade smart invoice optimism subgraph to v0.0.3 (#161) * Upgrade smart invoice optimism subgraph to v0.0.3 * Update how escrows are fetched in accounting page --------- Co-authored-by: ECWireless <[email protected]> Co-authored-by: growindiedev <[email protected]> Co-authored-by: Abhishek Ranjan <[email protected]> Co-authored-by: Sero <[email protected]> Co-authored-by: ECWireless <[email protected]> Co-authored-by: Sayo <[email protected]>
- Loading branch information
1 parent
e08c042
commit d9273dd
Showing
12 changed files
with
142 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { Button, Collapse, Text, VStack } from '@raidguild/design-system'; | ||
import React, { useEffect, useRef, useState } from 'react'; | ||
|
||
const Description = ({ | ||
description, | ||
startingHeight = 75, | ||
label, | ||
}: { | ||
description: string; | ||
startingHeight?: number; | ||
label?: string; | ||
}) => { | ||
const [showFullDescription, setShowFullDescription] = useState(false); | ||
const [showToggle, setShowToggle] = useState(false); | ||
const textRef = useRef<HTMLDivElement>(null); | ||
|
||
const handleToggleDesc = () => setShowFullDescription(!showFullDescription); | ||
|
||
useEffect(() => { | ||
if (textRef.current) { | ||
const { clientHeight } = textRef.current; | ||
setShowToggle(clientHeight > startingHeight); | ||
} | ||
}, [description, startingHeight]); | ||
|
||
return ( | ||
<VStack align='flex-start' width='100%'> | ||
{label && ( | ||
<Text fontSize='xs' color='purple.200' textTransform='capitalize'> | ||
{label} | ||
</Text> | ||
)} | ||
<Collapse startingHeight={startingHeight} in={showFullDescription}> | ||
<div ref={textRef}> | ||
<Text color='white' fontSize='md'> | ||
{description} | ||
</Text> | ||
</div> | ||
</Collapse> | ||
{showToggle && ( | ||
<Button | ||
onClick={handleToggleDesc} | ||
color='gray.400' | ||
size='sm' | ||
fontWeight='normal' | ||
variant='link' | ||
> | ||
{showFullDescription ? 'Show Less' : 'Show More'} | ||
</Button> | ||
)} | ||
</VStack> | ||
); | ||
}; | ||
|
||
export default Description; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.