async / await을 만약 레포지토리에서 사용했다면
서비스에서는 레포지토리 함수를 async/await 없이 그냥 호출하면 안되나요?
예를 들어)
cat.repository.ts 파일에
import { createCatDto } from './dto/cat.create.dto';
import { ConflictException } from '@nestjs/common';
import { Cats } from 'src/entities/cat.entity';
import { EntityRepository, Repository } from 'typeorm';
import * as bcrypt from 'bcrypt';
@EntityRepository(Cats)
export class CatRepository extends Repository<Cats> {
async createCat(data: createCatDto) {
const theCat = await this.findOne({
where: {
email: data.email,
},
});
if (theCat) {
throw new ConflictException('이미 존재하는 고양이입니다.');
}
data.password = await bcrypt.hash(data.password, 10);
const newCat = await this.save(this.create(data));
delete newCat.password;
return newCat;
}
async findCatByEmail(email: string) {
const theCat = await this.findOne({
where: {
email,
},
});
return theCat;
}
}
라고 하고 findCatByEmail을 사용한 AuthService에서는
auth.service.ts
const cat = await this.catRepository.findCatByEmail(email)
위의 cat 정의에 await을 붙혀 줘야하는건가요??
저는 이미 레포지토리단에서 프로미스로 값을 받았으니 await을 안붙혀도되는줄알았는데
안붙히니까
const isPasswordValidated = await bcrypt.compare(password, cat.password )
cat.password 의 password에 빨간줄 들어오면서 타입스크립트에서 잡아주네요
await 빼먹은것같다면서,..
왜 await을 붙혀 줘야하는거죠?