Refactoring, Clean up and bug fixes
This commit is contained in:
@ -4,23 +4,31 @@ import isObjectId from './is-objectid';
|
||||
|
||||
export const isAnId = (x: any) => mongo.ObjectID.isValid(x);
|
||||
export const isNotAnId = (x: any) => !isAnId(x);
|
||||
export const transform = (x: string | mongo.ObjectID): mongo.ObjectID => {
|
||||
if (x == null) return null;
|
||||
|
||||
if (isAnId(x) && !isObjectId(x)) {
|
||||
return new mongo.ObjectID(x);
|
||||
} else {
|
||||
return x as mongo.ObjectID;
|
||||
}
|
||||
};
|
||||
export const transformMany = (xs: (string | mongo.ObjectID)[]): mongo.ObjectID[] => {
|
||||
if (xs == null) return null;
|
||||
|
||||
return xs.map(x => transform(x));
|
||||
};
|
||||
|
||||
export type ObjectId = mongo.ObjectID;
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
export default class ID extends Context<mongo.ObjectID> {
|
||||
export default class ID extends Context<string> {
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.transform = v => {
|
||||
if (isAnId(v) && !isObjectId(v)) {
|
||||
return new mongo.ObjectID(v);
|
||||
} else {
|
||||
return v;
|
||||
}
|
||||
};
|
||||
|
||||
this.push(v => {
|
||||
this.push((v: any) => {
|
||||
if (!isObjectId(v) && isNotAnId(v)) {
|
||||
return new Error('must-be-an-id');
|
||||
}
|
||||
|
Reference in New Issue
Block a user