File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ import { makeId } from '$lib/utils' ;
1
2
import {
2
3
Rank ,
3
4
type ApiResponse ,
@@ -129,9 +130,9 @@ export default class FakeUsersEndpointApi implements UsersEndpointApiInterface {
129
130
throw new Error ( 'Method not implemented.' ) ;
130
131
}
131
132
132
- private makeUser ( username : string ) {
133
+ private makeUser ( username : string ) : User {
133
134
return {
134
- id : Math . random ( ) . toString ( 36 ) . substring ( 2 ) ,
135
+ id : makeId ( ) ,
135
136
dateCreated : new Date ( ) ,
136
137
username : username ,
137
138
rank : Rank . Citizen ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { dev } from '$app/environment';
2
2
import { api } from '$lib/data/urls.json' ;
3
3
import { getStoredItem , setStoredItem } from '$lib/storage' ;
4
4
import { DisplayableError , eventBus } from '$lib/events' ;
5
- import { sleep } from '$lib/utils' ;
5
+ import { makeId , sleep } from '$lib/utils' ;
6
6
import {
7
7
Configuration ,
8
8
FetchError ,
@@ -94,7 +94,7 @@ class RequestIdMiddleware implements Middleware {
94
94
const headers = { ...context . init . headers } as Record < string , string > ;
95
95
96
96
if ( ! headers [ RequestIdMiddleware . headerName ] ) {
97
- headers [ RequestIdMiddleware . headerName ] = Math . random ( ) . toString ( 36 ) . substring ( 2 ) ;
97
+ headers [ RequestIdMiddleware . headerName ] = makeId ( ) ;
98
98
}
99
99
100
100
context . init . headers = headers ;
Original file line number Diff line number Diff line change 1
1
export function sleep ( ms : number ) : Promise < void > {
2
2
return new Promise ( ( resolve ) => setTimeout ( resolve , ms ) ) ;
3
3
}
4
+
5
+ export function makeId ( ) : string {
6
+ return Math . random ( ) . toString ( 36 ) . substring ( 2 ) ;
7
+ }
You can’t perform that action at this time.
0 commit comments