mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 18:13:48 -04:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import {ProfileRow} from 'common/profiles/profile'
|
|
import type {User} from 'common/user'
|
|
|
|
// for email template testing
|
|
|
|
// A subset of Profile with only essential fields for testing
|
|
export type PartialProfile = Pick<
|
|
ProfileRow,
|
|
| 'id'
|
|
| 'user_id'
|
|
| 'created_time'
|
|
| 'last_modification_time'
|
|
| 'disabled'
|
|
| 'looking_for_matches'
|
|
| 'comments_enabled'
|
|
| 'visibility'
|
|
> &
|
|
Partial<ProfileRow>
|
|
|
|
export const mockUser: User = {
|
|
createdTime: 0,
|
|
avatarUrl: 'https://martinbraquet.com/wp-content/uploads/BDo_Tbzj.jpeg',
|
|
id: '0k1suGSJKVUnHbCPEhHNpgZPkUP2',
|
|
username: 'Martin',
|
|
name: 'Martin',
|
|
}
|
|
|
|
export const jamesUser: User = {
|
|
createdTime: 0,
|
|
avatarUrl: 'https://martinbraquet.com/wp-content/uploads/BDo_Tbzj.jpeg',
|
|
id: '5LZ4LgYuySdL1huCWe7bti02ghx2',
|
|
username: 'James',
|
|
name: 'James',
|
|
}
|
|
|
|
export const jamesProfile: PartialProfile = {
|
|
id: 2,
|
|
user_id: '5LZ4LgYuySdL1huCWe7bti02ghx2',
|
|
created_time: '2023-10-21T21:18:26.691211+00:00',
|
|
last_modification_time: '2024-05-17T02:11:48.83+00:00',
|
|
disabled: false,
|
|
looking_for_matches: true,
|
|
comments_enabled: true,
|
|
visibility: 'public',
|
|
city: 'San Francisco',
|
|
gender: 'male',
|
|
age: 32,
|
|
}
|