Redux작업을 거의다 마쳤고, Order페이지와 헤더의 변화를 주었다.
삭품이 얼마나 담겨있는지 시각적으로 보여주고, 상품이 없을때 오류가 난것처럼 보이지 않게 화면에 보여준다.
처음으로 프로젝트를 진행하면서 정규표현식을 사용했고, 유용해서 프로젝트가 끝난 후 더 공부해야겠다는 생각이 들었다.
const totalStandPrice = stand.stands.reduce((acc, cur) => acc + cur.standPrice * cur.standQuantity, 0);
const totalStickPrice = stick.sticks.reduce((acc, cur) => acc + cur.stickPrice * cur.stickQuantity, 0);
const totalPrice = totalStandPrice + totalStickPrice;
const money = (int) => int.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');