Separate Client Portal & Dashboard
This commit is contained in:
102
frontend/dashboard/src/_mock/_banking.ts
Normal file
102
frontend/dashboard/src/_mock/_banking.ts
Normal file
@@ -0,0 +1,102 @@
|
||||
import _mock from './_mock';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export const _bankingContacts = [...Array(5)].map((_, index) => ({
|
||||
id: _mock.id(index),
|
||||
name: _mock.name.fullName(index),
|
||||
email: _mock.email(index),
|
||||
avatar: _mock.image.avatar(index + 4),
|
||||
}));
|
||||
|
||||
export const _bankingQuickTransfer = [...Array(12)].map((_, index) => ({
|
||||
id: _mock.id(index),
|
||||
name: _mock.name.fullName(index),
|
||||
email: _mock.email(index),
|
||||
avatar: _mock.image.avatar(index),
|
||||
}));
|
||||
|
||||
export const _bankingCreditCard = [
|
||||
{
|
||||
id: _mock.id(2),
|
||||
balance: 23432.03,
|
||||
cardType: 'mastercard',
|
||||
cardHolder: _mock.name.fullName(2),
|
||||
cardNumber: '**** **** **** 3640',
|
||||
cardValid: '11/22',
|
||||
},
|
||||
{
|
||||
id: _mock.id(3),
|
||||
balance: 18000.23,
|
||||
cardType: 'visa',
|
||||
cardHolder: _mock.name.fullName(3),
|
||||
cardNumber: '**** **** **** 8864',
|
||||
cardValid: '11/25',
|
||||
},
|
||||
{
|
||||
id: _mock.id(4),
|
||||
balance: 2000.89,
|
||||
cardType: 'mastercard',
|
||||
cardHolder: _mock.name.fullName(4),
|
||||
cardNumber: '**** **** **** 7755',
|
||||
cardValid: '11/22',
|
||||
},
|
||||
];
|
||||
|
||||
export const _bankingRecentTransitions = [
|
||||
{
|
||||
id: _mock.id(2),
|
||||
name: _mock.name.fullName(2),
|
||||
avatar: _mock.image.avatar(8),
|
||||
type: 'Income',
|
||||
message: 'Receive money from',
|
||||
category: 'Annette Black',
|
||||
date: 1627556358365,
|
||||
status: 'in_progress',
|
||||
amount: 811.45,
|
||||
},
|
||||
{
|
||||
id: _mock.id(3),
|
||||
name: _mock.name.fullName(3),
|
||||
avatar: _mock.image.avatar(9),
|
||||
type: 'Expenses',
|
||||
message: 'Payment for',
|
||||
category: 'Courtney Henry',
|
||||
date: 1627556329038,
|
||||
status: 'completed',
|
||||
amount: 436.03,
|
||||
},
|
||||
{
|
||||
id: _mock.id(4),
|
||||
name: _mock.name.fullName(4),
|
||||
avatar: _mock.image.avatar(12),
|
||||
type: 'Receive',
|
||||
message: 'Payment for',
|
||||
category: 'Theresa Webb',
|
||||
date: 1627556339677,
|
||||
status: 'failed',
|
||||
amount: 82.26,
|
||||
},
|
||||
{
|
||||
id: _mock.id(5),
|
||||
name: null,
|
||||
avatar: null,
|
||||
type: 'Expenses',
|
||||
message: 'Payment for',
|
||||
category: 'Beauty & Health',
|
||||
date: 1627547330510,
|
||||
status: 'completed',
|
||||
amount: 480.73,
|
||||
},
|
||||
{
|
||||
id: _mock.id(6),
|
||||
name: null,
|
||||
avatar: null,
|
||||
type: 'Expenses',
|
||||
message: 'Payment for',
|
||||
category: 'Books',
|
||||
date: 1627556347676,
|
||||
status: 'in_progress',
|
||||
amount: 11.45,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user