|
| 1 | +import { makeId } from '$lib/utils'; |
| 2 | +import type { |
| 3 | + ActivateEmailRequest, |
| 4 | + ApiResponse, |
| 5 | + CreateEmailRequest, |
| 6 | + DeleteEmailRequest, |
| 7 | + Email, |
| 8 | + EmailActivation, |
| 9 | + EmailCreation, |
| 10 | + EmailsEndpointApiInterface, |
| 11 | + InitOverrideFunction, |
| 12 | + ListEmailsRequest, |
| 13 | + SetMainEmailRequest |
| 14 | +} from '../generated'; |
| 15 | + |
| 16 | +export default class FakeEmailsEndpointApi implements EmailsEndpointApiInterface { |
| 17 | + activateEmail( |
| 18 | + emailActivation: EmailActivation, |
| 19 | + initOverrides?: RequestInit | InitOverrideFunction |
| 20 | + ): Promise<void> { |
| 21 | + throw new Error('Method not implemented.'); |
| 22 | + } |
| 23 | + |
| 24 | + async countEmails(initOverrides?: RequestInit | InitOverrideFunction): Promise<number> { |
| 25 | + const emails = await this.listEmails(); |
| 26 | + return emails.length; |
| 27 | + } |
| 28 | + |
| 29 | + createEmail( |
| 30 | + emailCreation: EmailCreation, |
| 31 | + customDeepLinks?: boolean, |
| 32 | + initOverrides?: RequestInit | InitOverrideFunction |
| 33 | + ): Promise<Email> { |
| 34 | + throw new Error('Method not implemented.'); |
| 35 | + } |
| 36 | + |
| 37 | + deleteEmail(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<void> { |
| 38 | + throw new Error('Method not implemented.'); |
| 39 | + } |
| 40 | + |
| 41 | + async listEmails( |
| 42 | + page?: number, |
| 43 | + initOverrides?: RequestInit | InitOverrideFunction |
| 44 | + ): Promise<Array<Email>> { |
| 45 | + switch (page) { |
| 46 | + case undefined: |
| 47 | + case 0: |
| 48 | + return [this.makeEmail(true), this.makeEmail(), this.makeEmail()]; |
| 49 | + |
| 50 | + default: |
| 51 | + return []; |
| 52 | + } |
| 53 | + } |
| 54 | + |
| 55 | + setMainEmail(id: string, initOverrides?: RequestInit | InitOverrideFunction): Promise<void> { |
| 56 | + throw new Error('Method not implemented.'); |
| 57 | + } |
| 58 | + |
| 59 | + private makeEmail(main = false, verified = true): Email { |
| 60 | + const id = makeId(); |
| 61 | + return { |
| 62 | + id, |
| 63 | + email: `${id}@example.org`, |
| 64 | + main, |
| 65 | + verified |
| 66 | + }; |
| 67 | + } |
| 68 | + |
| 69 | + // Unimplemented side |
| 70 | + |
| 71 | + activateEmailRaw( |
| 72 | + requestParameters: ActivateEmailRequest, |
| 73 | + initOverrides?: RequestInit | InitOverrideFunction |
| 74 | + ): Promise<ApiResponse<void>> { |
| 75 | + throw new Error('Method not implemented.'); |
| 76 | + } |
| 77 | + |
| 78 | + countEmailsRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<number>> { |
| 79 | + throw new Error('Method not implemented.'); |
| 80 | + } |
| 81 | + |
| 82 | + createEmailRaw( |
| 83 | + requestParameters: CreateEmailRequest, |
| 84 | + initOverrides?: RequestInit | InitOverrideFunction |
| 85 | + ): Promise<ApiResponse<Email>> { |
| 86 | + throw new Error('Method not implemented.'); |
| 87 | + } |
| 88 | + |
| 89 | + deleteEmailRaw( |
| 90 | + requestParameters: DeleteEmailRequest, |
| 91 | + initOverrides?: RequestInit | InitOverrideFunction |
| 92 | + ): Promise<ApiResponse<void>> { |
| 93 | + throw new Error('Method not implemented.'); |
| 94 | + } |
| 95 | + |
| 96 | + listEmailsRaw( |
| 97 | + requestParameters: ListEmailsRequest, |
| 98 | + initOverrides?: RequestInit | InitOverrideFunction |
| 99 | + ): Promise<ApiResponse<Array<Email>>> { |
| 100 | + throw new Error('Method not implemented.'); |
| 101 | + } |
| 102 | + |
| 103 | + setMainEmailRaw( |
| 104 | + requestParameters: SetMainEmailRequest, |
| 105 | + initOverrides?: RequestInit | InitOverrideFunction |
| 106 | + ): Promise<ApiResponse<void>> { |
| 107 | + throw new Error('Method not implemented.'); |
| 108 | + } |
| 109 | +} |
0 commit comments