@@ -16,8 +16,13 @@ import {
16
16
import { LendingMarketsFilters } from '@/components/PageLlamaMarkets/LendingMarketsFilters'
17
17
import { useSortFromQueryString } from '@ui-kit/hooks/useSortFromQueryString'
18
18
import { DeepKeys } from '@tanstack/table-core/build/lib/utils'
19
+ import {
20
+ isFeatureVisible ,
21
+ useVisibilitySettings ,
22
+ VisibilityGroup ,
23
+ } from '@ui-kit/shared/ui/TableVisibilitySettingsPopover'
19
24
20
- const { ColumnWidth, Spacing, MinWidth , MaxWidth } = SizesAndSpaces
25
+ const { ColumnWidth, Spacing, MaxWidth } = SizesAndSpaces
21
26
22
27
const columnHelper = createColumnHelper < LendingVault > ( )
23
28
@@ -28,6 +33,8 @@ const hidden = (id: DeepKeys<LendingVault>) =>
28
33
meta : { hidden : true } ,
29
34
} )
30
35
36
+ const [ borrowChartId , lendChartId ] = [ 'borrowChart' , 'lendChart' ]
37
+
31
38
/** Columns for the lending markets table. */
32
39
const columns = [
33
40
columnHelper . accessor ( 'assets' , {
@@ -37,13 +44,13 @@ const columns = [
37
44
} ) ,
38
45
columnHelper . accessor ( 'rates.borrowApyPcent' , {
39
46
header : t `7D Borrow Rate` ,
40
- cell : ( c ) => < LineGraphCell vault = { c . row . original } type = "borrow" /> ,
47
+ cell : ( c ) => < LineGraphCell vault = { c . row . original } type = "borrow" showChart = { isFeatureVisible ( c , borrowChartId ) } /> ,
41
48
meta : { type : 'numeric' } ,
42
49
size : ColumnWidth . md ,
43
50
} ) ,
44
51
columnHelper . accessor ( 'rates.lendApyPcent' , {
45
52
header : t `7D Supply Yield` ,
46
- cell : ( c ) => < LineGraphCell vault = { c . row . original } type = "lend" /> ,
53
+ cell : ( c ) => < LineGraphCell vault = { c . row . original } type = "lend" showChart = { isFeatureVisible ( c , lendChartId ) } /> ,
47
54
meta : { type : 'numeric' } ,
48
55
size : ColumnWidth . md ,
49
56
} ) ,
@@ -59,13 +66,32 @@ const columns = [
59
66
meta : { type : 'numeric' } ,
60
67
size : ColumnWidth . sm ,
61
68
} ) ,
69
+ // following columns are used to configure and filter tanstack, but they are displayed together in PoolTitleCell
62
70
hidden ( 'blockchainId' ) ,
63
71
hidden ( 'assets.collateral.symbol' ) ,
64
72
hidden ( 'assets.borrowed.symbol' ) ,
65
73
] satisfies ColumnDef < LendingVault , any > [ ]
66
74
67
75
const DEFAULT_SORT = [ { id : 'totalSupplied.usdTotal' , desc : true } ]
68
76
77
+ const DEFAULT_VISIBILITY : VisibilityGroup [ ] = [
78
+ {
79
+ label : t `Markets` ,
80
+ options : [
81
+ { label : t `Available Liquidity` , id : 'totalSupplied.usdTotal' , active : true , type : 'column' } ,
82
+ { label : t `Utilization` , id : 'utilizationPercent' , active : true , type : 'column' } ,
83
+ ] ,
84
+ } ,
85
+ {
86
+ label : t `Borrow` ,
87
+ options : [ { label : t `Chart` , id : borrowChartId , active : true , type : 'feature' } ] ,
88
+ } ,
89
+ {
90
+ label : t `Lend` ,
91
+ options : [ { label : t `Chart` , id : lendChartId , active : true , type : 'feature' } ] ,
92
+ } ,
93
+ ]
94
+
69
95
export const LendingMarketsTable = ( {
70
96
onReload,
71
97
data,
@@ -76,6 +102,8 @@ export const LendingMarketsTable = ({
76
102
headerHeight : string
77
103
} ) => {
78
104
const [ columnFilters , columnFiltersById , setColumnFilter ] = useColumnFilters ( )
105
+ const { columnSettings, columnVisibility, featureVisibility, toggleVisibility } =
106
+ useVisibilitySettings ( DEFAULT_VISIBILITY )
79
107
80
108
const [ sorting , onSortingChange ] = useSortFromQueryString ( DEFAULT_SORT )
81
109
const table = useReactTable ( {
@@ -84,7 +112,7 @@ export const LendingMarketsTable = ({
84
112
getCoreRowModel : getCoreRowModel ( ) ,
85
113
getSortedRowModel : getSortedRowModel ( ) ,
86
114
getFilteredRowModel : getFilteredRowModel ( ) ,
87
- state : { sorting, columnFilters } ,
115
+ state : { sorting, columnVisibility , featureVisibility , columnFilters } ,
88
116
onSortingChange,
89
117
maxMultiSortColCount : 3 , // allow 3 columns to be sorted at once
90
118
} )
@@ -97,15 +125,18 @@ export const LendingMarketsTable = ({
97
125
maxWidth : MaxWidth . table ,
98
126
} }
99
127
>
100
- < TableFilters
101
- title = { t `Llamalend Markets` }
102
- subtitle = { t `Select a market to view more details` }
103
- onReload = { onReload }
104
- learnMoreUrl = "https://docs.curve.fi/lending/overview/"
105
- >
106
- < LendingMarketsFilters columnFilters = { columnFiltersById } setColumnFilter = { setColumnFilter } data = { data } />
107
- </ TableFilters >
108
- < DataTable table = { table } headerHeight = { headerHeight } rowHeight = { '3xl' } emptyText = { t `No markets found` } />
128
+ < DataTable table = { table } headerHeight = { headerHeight } rowHeight = "3xl" emptyText = { t `No markets found` } >
129
+ < TableFilters
130
+ title = { t `Llamalend Markets` }
131
+ subtitle = { t `Select a market to view more details` }
132
+ onReload = { onReload }
133
+ learnMoreUrl = "https://docs.curve.fi/lending/overview/"
134
+ visibilityGroups = { columnSettings }
135
+ toggleVisibility = { toggleVisibility }
136
+ >
137
+ < LendingMarketsFilters columnFilters = { columnFiltersById } setColumnFilter = { setColumnFilter } data = { data } />
138
+ </ TableFilters >
139
+ </ DataTable >
109
140
</ Stack >
110
141
)
111
142
}
0 commit comments