Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { apiDeleteAuth, apiGet, apiGetAuth, apiPatchAuth, apiPostAuth } from './api';
import {
BadgeCatalogResponse,
ChangePasswordRequest,
CreateEquipmentRequest,
EventSummary,
EquipmentListResponse,
FavoriteLocation,
FavoriteLocationsResponse,
ImageUploadConfirmRequest,
ImageUploadInitResponse,
PublicProfile,
ShowcaseImageItem,
UpdateEquipmentRequest,
UpdateFavoriteLocationRequest,
UserProfile,
UpdateProfileRequest,
CreateFavoriteLocationRequest,
ProfileEquipmentItem,
UserBadgesResponse,
} from '../models/profile';
interface EventListResponse {
events: EventSummary[];
}
/**
* Profile service for dealing with the /me endpoints
*/
export const profileService = {
async getMyProfile(token: string): Promise<UserProfile> {
return apiGetAuth<UserProfile>('/me', token);
},
async getPublicProfile(userId: string): Promise<PublicProfile> {
return apiGet<PublicProfile>(`/users/${userId}/profile`);
},
async updateMyProfile(data: UpdateProfileRequest, token: string): Promise<void> {
return apiPatchAuth<void>('/me', data, token);
},
async changePassword(data: ChangePasswordRequest, token: string): Promise<void> {
return apiPostAuth<void>('/me/change-password', data, token);
},
async getHostedEvents(token: string): Promise<EventSummary[]> {
const res = await apiGetAuth<EventListResponse>('/me/events/hosted', token);
return res.events ?? [];
},
async getUpcomingEvents(token: string): Promise<EventSummary[]> {
const res = await apiGetAuth<EventListResponse>('/me/events/upcoming', token);
return res.events ?? [];
},
async getCompletedEvents(token: string): Promise<EventSummary[]> {
const res = await apiGetAuth<EventListResponse>('/me/events/completed', token);
return res.events ?? [];
},
async getCanceledEvents(token: string): Promise<EventSummary[]> {
const res = await apiGetAuth<EventListResponse>('/me/events/canceled', token);
return res.events ?? [];
},
async getAvatarUploadUrl(token: string): Promise<ImageUploadInitResponse> {
return apiPostAuth<ImageUploadInitResponse>('/me/avatar/upload-url', {}, token);
},
async confirmAvatarUpload(body: ImageUploadConfirmRequest, token: string): Promise<void> {
return apiPostAuth<void>('/me/avatar/confirm', body, token);
},
async getMyEquipment(token: string): Promise<ProfileEquipmentItem[]> {
const res = await apiGetAuth<EquipmentListResponse>('/me/equipment', token);
return res.items ?? [];
},
async createEquipment(data: CreateEquipmentRequest, token: string): Promise<ProfileEquipmentItem> {
return apiPostAuth<ProfileEquipmentItem>('/me/equipment', data, token);
},
async updateEquipment(id: string, data: UpdateEquipmentRequest, token: string): Promise<ProfileEquipmentItem> {
return apiPatchAuth<ProfileEquipmentItem>(`/me/equipment/${id}`, data, token);
},
async deleteEquipment(id: string, token: string): Promise<void> {
return apiDeleteAuth<void>(`/me/equipment/${id}`, token);
},
async getShowcaseUploadUrl(token: string): Promise<ImageUploadInitResponse> {
return apiPostAuth<ImageUploadInitResponse>('/me/showcase-images/upload-url', {}, token);
},
async confirmShowcaseUpload(body: ImageUploadConfirmRequest, token: string): Promise<ShowcaseImageItem> {
return apiPostAuth<ShowcaseImageItem>('/me/showcase-images/confirm', body, token);
},
async deleteShowcaseImage(id: string, token: string): Promise<void> {
return apiDeleteAuth<void>(`/me/showcase-images/${id}`, token);
},
async getFavoriteLocations(token: string): Promise<FavoriteLocation[]> {
const res = await apiGetAuth<FavoriteLocationsResponse>('/me/favorite-locations', token);
return res.items ?? [];
},
async createFavoriteLocation(data: CreateFavoriteLocationRequest, token: string): Promise<FavoriteLocation> {
return apiPostAuth<FavoriteLocation>('/me/favorite-locations', data, token);
},
async updateFavoriteLocation(id: string, data: UpdateFavoriteLocationRequest, token: string): Promise<FavoriteLocation> {
return apiPatchAuth<FavoriteLocation>(`/me/favorite-locations/${id}`, data, token);
},
async deleteFavoriteLocation(id: string, token: string): Promise<void> {
return apiDeleteAuth<void>(`/me/favorite-locations/${id}`, token);
},
async getMyBadges(token: string): Promise<UserBadgesResponse> {
return apiGetAuth<UserBadgesResponse>('/me/badges', token);
},
async getUserBadges(userId: string, token: string): Promise<UserBadgesResponse> {
return apiGetAuth<UserBadgesResponse>(`/users/${userId}/badges`, token);
},
async getBadgeCatalog(token: string): Promise<BadgeCatalogResponse> {
return apiGetAuth<BadgeCatalogResponse>('/badges', token);
},
};
|