Skip to content

Commit a8d7ad2

Browse files
author
Oleg Polyakov
committed
change custom error handler to custom event handler
1 parent 2ed76a9 commit a8d7ad2

File tree

3 files changed

+23
-22
lines changed

3 files changed

+23
-22
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ With custom error handler
6565
```typescript
6666
export default {
6767
url: 'redis://:[email protected]:6380/4',
68-
errorHandler: (err, client) => {},
68+
onClientReady: (client) => {
69+
client.on('error', (err) => {}
70+
)},
6971
}
7072
```
7173
With multi client

lib/redis-client.provider.ts

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as Redis from 'ioredis';
22
import * as uuid from 'uuid';
3+
import { Provider } from '@nestjs/common';
34

45
import { REDIS_CLIENT, REDIS_MODULE_OPTIONS } from './redis.constants';
56
import { RedisModuleAsyncOptions, RedisModuleOptions } from './redis.interface';
@@ -11,33 +12,33 @@ export interface RedisClient {
1112
size: number;
1213
}
1314

14-
function getClient(options: RedisModuleOptions, key: string): Redis.Redis {
15-
const { errorHandler, url, ...opt } = options;
16-
15+
async function getClient(options: RedisModuleOptions): Promise<Redis.Redis> {
16+
const { onClientReady, url, ...opt } = options;
1717
const client = url ? new Redis(url) : new Redis(opt);
18-
if (errorHandler) {
19-
client.on('error', err => errorHandler(err, client));
18+
if (onClientReady) {
19+
onClientReady(client)
2020
}
21-
2221
return client;
2322
}
2423

25-
export const createClient = () => ({
24+
export const createClient = (): Provider => ({
2625
provide: REDIS_CLIENT,
27-
useFactory: (options: RedisModuleOptions | RedisModuleOptions[]) => {
26+
useFactory: async (options: RedisModuleOptions | RedisModuleOptions[]): Promise<RedisClient> => {
2827
const clients = new Map<string, Redis.Redis>();
2928
const defaultKey = uuid();
3029

3130
if (Array.isArray(options)) {
32-
for (const o of options) {
33-
const key = o.name || defaultKey;
34-
if (clients.has(key)) {
35-
throw new RedisClientError(`client ${o.name} or default client is exists`);
36-
}
37-
clients.set(key, getClient(o, key));
38-
}
31+
await Promise.all(
32+
options.map(async o => {
33+
const key = o.name || defaultKey;
34+
if (clients.has(key)) {
35+
throw new RedisClientError(`${o.name || 'default'} client is exists`);
36+
}
37+
clients.set(key, await getClient(o));
38+
}),
39+
);
3940
} else {
40-
clients.set(defaultKey, getClient(options, defaultKey));
41+
clients.set(defaultKey, await getClient(options));
4142
}
4243

4344
return {

lib/redis.interface.ts

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
import { ModuleMetadata } from '@nestjs/common/interfaces';
2-
import { RedisOptions } from 'ioredis';
3-
import * as IORedis from 'ioredis';
2+
import { Redis, RedisOptions } from 'ioredis';
43

54
export interface RedisModuleOptions extends RedisOptions {
65
name?: string;
76
url?: string;
8-
errorHandler?(err, client: IORedis.Redis): void;
7+
onClientReady?(client: Redis): Promise<void>;
98
}
109

11-
export interface RedisModuleAsyncOptions
12-
extends Pick<ModuleMetadata, 'imports'> {
10+
export interface RedisModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
1311
useFactory?: (
1412
...args: any[]
1513
) =>

0 commit comments

Comments
 (0)