code stringlengths 41 34.3k | lang stringclasses 8
values | review stringlengths 1 4.74k |
|---|---|---|
@@ -0,0 +1,68 @@
+import { ERROR_MESSAGES } from '../constants/messages.js';
+import { SYMBOLS } from '../constants/system.js';
+import validationErrorHandler from '../errors/index.js';
+import { isValidMenuName } from '../validators/index.js';
+import { isOnlyBeverage } from '../validators/is-valid-menu/name.js';
+imp... | JavaScript | ์ ์ฝ๋๋ ์ค์ค๋ก ๋ค์ ๋์กํ ์ฝ๋๋ผ๊ณ ์๊ฐ์ด ๋๋๋ฐ, ๋คํ์
๋๋ค ํํ |
@@ -0,0 +1,15 @@
+import { UNITS } from '../constants/system.js';
+
+/**
+ * number type์ ๊ฐ๊ฒฉ์ ์
๋ ฅ๋ฐ์ ๊ฐ๊ฒฉ์ ๋ณํ ํ '์'์ ํฌํจํ string type์ผ๋ก ๋ณํ
+ * 20000์ด๋ผ๋ ๋งค๊ฐ๋ณ์๋ฅผ ํตํด '20,000์'์ ๋ฐํ
+ * @param {number} price ๊ฐ๊ฒฉ
+ * @returns {string}
+ */
+const priceFormatter = price => {
+ const formattedPrice = new Intl.NumberFormat().format(pr... | JavaScript | ์ ๋ ์ด ๋ถ๋ถ์ [Number.toLocaleString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString)์ ์ ์ฉํ๋๋ฐ, ์ซ์ ํ์๊ณผ ๊ด๋ จ๋ ๋ถ๋ถ์ Intl ๊ฐ์ฒด๋ฅผ ์ฌ์ฉํ๋๊ฒ ๋ ์ ํํ ๊ฒ ๊ฐ๋ค์ ๐ (๋ด๋ถ์ ์ผ๋ก ๊ฐ์ ๋ฉ์๋๋ฅผ ์ฌ์ฉํ๋ ๊ฑฐ ๊ฐ์์ ใ
ใ
) |
@@ -0,0 +1,24 @@
+const MENUS = Object.freeze({
+ appetizer: {
+ ์์ก์ด์ํ: 6_000,
+ ํํ์ค: 5_500,
+ ์์ ์๋ฌ๋: 8_000,
+ },
+ main: {
+ ํฐ๋ณธ์คํ
์ดํฌ: 55_000,
+ ๋ฐ๋นํ๋ฆฝ: 54_000,
+ ํด์ฐ๋ฌผํ์คํ: 35_000,
+ ํฌ๋ฆฌ์ค๋ง์คํ์คํ: 25_000,
+ },
+ dessert: {
+ ์ด์ฝ์ผ์ดํฌ: 15_000,
+ ์์ด์คํฌ๋ฆผ: 5_000,
+ },
+ beverage: {
+ ์ ๋ก์ฝ๋ผ: 3_000,
+ ... | JavaScript | ํน์ menu๋ data ํด๋์ ๋ฃ๋ ๋ฐฉํฅ๋ ์๊ฐํด ๋ณด์
จ์๊น์? ์ ๊ฐ์ ๊ฒฝ์ฐ์ ์์๋ก ๋ฌถ๊ธฐ์ ๊ฑธ๋ฆฌ๋ ๋ถ๋ถ๋ค์ด ์์๋ ๊ฒ ๊ฐ์์์! ๊ฐ์ธ์ ์ผ๋ก ๊ถ๊ธํด์ ์ฌ์ญค๋ด
๋๋ค! ๐ |
@@ -1,5 +1,15 @@
+import EventController from './controller/index.js';
+
class App {
- async run() {}
+ #controller;
+
+ constructor() {
+ this.#controller = new EventController();
+ }
+
+ async run() {
+ await this.#controller.startEvent();
+ }
}
export default App; | JavaScript | App์ด ์ ๋ง ๊น๋ํ๋ค์..! ๋ค์ ์จ๊ฒจ์ง ์ฝ๋๋ค ๋ณด๊ณ ๋ง์ด ๋ฐฐ์๊ฐ๋๋ค! ๐โโ๏ธ |
@@ -0,0 +1,52 @@
+import { PROMOTION_TITLES, TIME, UNITS } from './system.js';
+
+export const DISCOUNT_PRICES = Object.freeze({
+ dDay: 1_000,
+ dDayInc: 100,
+ week: 2_023,
+ special: 1_000,
+});
+
+export const BADGES = Object.freeze({
+ star: { title: '๋ณ', price: 5_000 },
+ tree: { title: 'ํธ๋ฆฌ', price: 10_000 ... | JavaScript | `dDayInc`๋ณด๋ค๋ ์ข๋ ๊ตฌ์ฒด์ ์ธ ์์๋ช
์ ์ด๋จ๊น์? |
@@ -0,0 +1,52 @@
+import { PROMOTION_TITLES, TIME, UNITS } from './system.js';
+
+export const DISCOUNT_PRICES = Object.freeze({
+ dDay: 1_000,
+ dDayInc: 100,
+ week: 2_023,
+ special: 1_000,
+});
+
+export const BADGES = Object.freeze({
+ star: { title: '๋ณ', price: 5_000 },
+ tree: { title: 'ํธ๋ฆฌ', price: 10_000 ... | JavaScript | ์ํด ์ด๋ฒคํธ๊น์ง๋ ์๊ฐ์ํด๋ดค๋๋ฐ ๊ผผ๊ผผํ์ญ๋๋ค!๐ |
@@ -0,0 +1,15 @@
+import { UNITS } from '../constants/system.js';
+
+/**
+ * number type์ ๊ฐ๊ฒฉ์ ์
๋ ฅ๋ฐ์ ๊ฐ๊ฒฉ์ ๋ณํ ํ '์'์ ํฌํจํ string type์ผ๋ก ๋ณํ
+ * 20000์ด๋ผ๋ ๋งค๊ฐ๋ณ์๋ฅผ ํตํด '20,000์'์ ๋ฐํ
+ * @param {number} price ๊ฐ๊ฒฉ
+ * @returns {string}
+ */
+const priceFormatter = price => {
+ const formattedPrice = new Intl.NumberFormat().format(pr... | JavaScript | ๋ง์ต๋๋ค! ์ํ๋ ๋ง์์ฒ๋ผ ๊ฒฐ๊ตญ `toLocaleString()`์ด ๊ถ๊ทน์ ์ผ๋ก `Intl.NumberFormat` API๋ฅผ ์ฌ์ฉํ๋๋ผ๊ตฌ์ :)
์ด๋ป๊ฒ๋ณด๋ฉด ์ข๋ ์์ฌ์ด ์ฌ์ฉ์ ์ํ `toLocaleString()` ๋ฉ์๋ ์ฌ์ฉ์ด ๋ ๋ชฉ์ ์ ๋ถํฉํ ์๋ ์๋ค๊ณ ์๊ฐ์ด ๋๋ค์ :) |
@@ -0,0 +1,36 @@
+import EventCalendar from '../../src/domain/EventCalendar';
+import { CHRISTMAS_D_DAY, GIFT, SPECIAL } from '../../src/domain/Events';
+
+import {
+ EVENT_MONTH,
+ EVENT_NAMES,
+ EVENT_YEAR,
+} from '../../src/constants/event';
+import { MAIN_COURSES } from '../../src/constants/menus';
+
+describe(... | JavaScript | ํ
์คํธ ์ฝ๋์์ ์ค์ ์ฝ๋์์ ์ฌ์ฉ๋๋ ์์๋ฅผ ์ฌ์ฉํ๋ ๊ฒ์ ์ข์ง ์์ ๋ณด์
๋๋ค. |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../../src/constants/event';
+import EventPlanner from '../../src/services/EventPlanner';
+
+const ORDERS = [
+ { menu: '์์ก์ด์ํ', amount: 1 },
+ { menu: 'ํํ์ค', amount: 1 },
+ { menu: 'ํฐ๋ณธ์คํ
์ดํฌ', amount: 2 },
+ { menu: '์ด์ฝ์ผ์ดํฌ', amount: 1 },
+ { menu: '์์ด์คํฌ๋ฆผ', amount: 1 },... | JavaScript | "\_"์๋กญ๊ฒ ๋ฐฐ์๊ฐ๋๋ค! |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | isWeekend === true๋ ๋ถํ์ํด ๋ณด์ด๋๋ฐ, ์ฌ์ฉํ์ ์ด์ ๊ฐ ์์ผ์ ๊ฐ์? |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | ๋งค์ง ๋๋ฒ๋ฅผ ์ฌ์ฉํ์๋ ๊ฒ ๊ฐ์ผ์ ๋ฐ์, ํน์ ๋ณธ์ธ๋ง์ ๊ธฐ์ค์ด ์์ผ์ค๊น์? ์ด๊ณณ์์๋ง ๋ฐ๋ก ๋ถ๋ฆฌ๋ฅผ ํ์ง ์์ผ์ ๊ฒ ๊ฐ์์์. |
@@ -0,0 +1,47 @@
+import { Console } from '@woowacourse/mission-utils';
+import MESSAGES from '../constants/messages.js';
+
+const OutputView = {
+ printResult(msgObj, result) {
+ const { title, printMsg } = msgObj;
+
+ Console.print(title);
+ Console.print(printMsg(result));
+ },
+
+ printStart() {
+ Co... | JavaScript | ์ด๋ฐ์์ผ๋ก ๋ณด๋ด๋ฉด ์กฐ๊ธ ๋ ๊น๋ํด์ง๋๊ตฐ์...!!! |
@@ -0,0 +1,94 @@
+import OrderItem from './OrderItem.js';
+
+import MESSAGES from '../constants/messages.js';
+
+import throwError from '../utils/throwError.js';
+import {
+ hasDuplicatedMenu,
+ hasOnlyBeverages,
+ isTotalAmountOfMenusValid,
+} from '../utils/validators.js';
+
+class Receipt {
+ #orders;
+
+ #orde... | JavaScript | get์ ์ฌ์ฉ๋ฒ ๋ฐฐ์ฐ๊ณ ๊ฐ๋๋ค...! |
@@ -0,0 +1,46 @@
+import MESSAGES from '../constants/messages.js';
+import { CATEGORIES, MENUS } from '../constants/menus.js';
+
+import { getValueOfField } from '../utils/object.js';
+import throwError from '../utils/throwError.js';
+import { isMenuExists } from '../utils/validators.js';
+
+class OrderItem {
+ #categ... | JavaScript | get set ํจ์๋ฅผ ์ด๋ ๊ฒ ์ง์ ํ ์ ์๋ค๋ ๊ฑธ ์ฒ์ ์๊ฒ๋์๋ค์! |
@@ -0,0 +1,38 @@
+/**
+ * ๋ ๊ฐ์ฒด๊ฐ ๊ฐ์ ๊ฐ์ ๊ฐ์ง๊ณ ์๋์ง ์๊ฒ ๋น๊ต
+ * @param {object} obj1
+ * @param {object} obj2
+ */
+export const shallowEqual = (objA, objB) => {
+ let result = true;
+
+ // ๋ ๊ฐ์ฒด์ key ๊ฐ์ ๋น๊ต
+ const keysA = Object.keys(objA);
+ const keysB = Object.keys(objB);
+ if (keysA.length !== keysB.length) result = f... | JavaScript | ๋ด์ฉ ์ ๋ดค์ต๋๋ค ใ
ใ
|
@@ -0,0 +1,36 @@
+import EventCalendar from '../../src/domain/EventCalendar';
+import { CHRISTMAS_D_DAY, GIFT, SPECIAL } from '../../src/domain/Events';
+
+import {
+ EVENT_MONTH,
+ EVENT_NAMES,
+ EVENT_YEAR,
+} from '../../src/constants/event';
+import { MAIN_COURSES } from '../../src/constants/menus';
+
+describe(... | JavaScript | ํ
์คํธ ์ฝ๋์ ์์กด์ฑ์ ์ค์ฌ์ผ ํ๊ธฐ ๋๋ฌธ์ผ๊น์? ๊ทธ๋ ๊ฒ ์๊ฐํ์๋ ์ด์ ๊ฐ ๊ถ๊ธํฉ๋๋ค..! |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | ๋ฌผ๋ก Truthy๋ฅผ ์ฌ์ฉํ ์๋ ์๋ ์ํฉ์ด์ง๋ง, ์ค์ ๋ก ์ด์ํ๋ ์๋น์ค๋ผ๋ฉด ์ํ๊ฐ ์ด์ํ๊ฑฐ๋ ์๋ฒ์์ ์๋ชป๋ ๊ฐ์ด ๋ ์์์ ๋ ์ก์ ์ ์๋ ์ฝ๋์ฌ์ผ ํ๋ค๊ณ ์๊ฐํ์ต๋๋ค! ๊ทธ๋์ ํ์
๊ณผ ๊ฐ์ ์ ํํ ๊ฒ์ฌํ๋ ๋ฐฉ์์ผ๋ก ์์ฑํ์ด์. |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | ๋น์ฆ๋์ค์ ๊ด๋ จํ ์ค์ํ ๋ก์ง์ด๊ธฐ ๋๋ฌธ์ ๊ทธ ์ ๋ณด๊ฐ ๋น ๋ฅด๊ฒ ๋ณด์ฌ์ผ ํ๋ฉด์ ๋ค๋ฅธ ๊ณณ์์ ์ฌ์ฌ์ฉ๋์ง ์๋ ์๋ ์์๋ก ๋นผ์ง ์์์ต๋๋ค.
๋ง์ฝ '์ฆ์ ํ ์๋ น ์ต์ ์ฃผ๋ฌธ ๊ธ์ก'์ด๋ผ๋ ์ด๋ฆ์ ์์๋ฅผ ๋ง๋ ๋ค๋ฉด ๊ทธ ์๋ฏธ๋ ๋ด๊ณ ์๊ฒ ์ง๋ง, ๊ทธ๊ฒ ์ผ๋ง์ธ์ง ์๊ธฐ ์ํด์๋ ๋ค๋ฅธ ํ์ผ์ ์ด์ด ๋ณด๊ฑฐ๋ ์์ ์ ์ด๋ํด์ผ ํ๋ ๋ถํธํจ์ด ์๊ธธ ๊ฑฐ๋ผ ์๊ฐํ์ต๋๋ค. :)
๋น์ทํ ๊ฒฐ์ ์ ๋ด๋ฆฐ ์ฌ๋ก๋ก EventPlanner์ getBadge ํจ์๊ฐ ์์ต๋๋ค.๐ |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | ์ํ ๊ทธ๋ ๊ตฐ์. ๊ทธ๋ ๋ค๋ฉด ์ด๋ ๊ฒ๋ ์ด๋ ์ ๊ฐ์?
```
isEventAvailable({ totalPrice }) {
const evenAvaliableAmount = 120_000;
return totalPrice >= evenAvaliableAmount;
```
๋ถํ์ํ ํ ์ค์ด๋ผ๊ณ ์๊ฐํ์ค ์ ์์ง๋ง, ๋ง์ํ์ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๋ฉด์๋ ์๋ฏธ๋ฅผ ๋ด์ ์ ์๋ค๊ณ ์๊ฐํ์ต๋๋ค! |
@@ -0,0 +1,36 @@
+import EventCalendar from '../../src/domain/EventCalendar';
+import { CHRISTMAS_D_DAY, GIFT, SPECIAL } from '../../src/domain/Events';
+
+import {
+ EVENT_MONTH,
+ EVENT_NAMES,
+ EVENT_YEAR,
+} from '../../src/constants/event';
+import { MAIN_COURSES } from '../../src/constants/menus';
+
+describe(... | JavaScript | ๋ค ์์กด์ฑ ๋ฌธ์ ๋ผ๊ณ ์๊ฐํฉ๋๋ค.
์ ๋ ์์ ์์ฒด๋ ํ๋์ ๋ชจ๋์ด๋ผ๊ณ ์๊ฐํ๋๋ฐ์,
ํ๋์ ๋ชจ๋์ด ์ค์ ์ฝ๋์, ํ
์คํธ ์ฝ๋ ๋ ๊ตฐ๋ฐ ๋ชจ๋ ์์กดํ๋ ๊ฒ์ ์ข์๋ณด์ด์ง ์๊ธฐ ๋๋ฌธ์ด๊ธฐ๋ ํ๊ณ ,
ํนํ๋ ํ
์คํธ๋ ๋
๋ฆฝ์ ์ด์ด์ผ ํ๊ธฐ ๋๋ฌธ์ด๊ธฐ๋ ํฉ๋๋ค! |
@@ -0,0 +1,83 @@
+import deepFreeze from '../utils/deepFreeze.js';
+import { EVENT_MONTH } from './event.js';
+
+const MESSAGES = deepFreeze({
+ // InputView
+ inputs: {
+ getVisitDate: `${EVENT_MONTH}์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)\n`,
+ getOrders:
+ '์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,... | JavaScript | EVENT_MONTH๋ ์์๋ณด๋ค๋ 12์๋ก ๋ฐ๋ก ๋ฃ๋ ๊ฒ๋ ๊ณ ๋ คํด๋ณด์๋ฉด ์ข์ ๊ฒ ๊ฐ์์
์ด ๋ถ๋ถ์ ๋ํด์ ๋ง์ด ๊ณ ๋ฏผํ์๋๋ฐ, ํด๋น ํฌ๋ฆฌ์ค๋ง์ค ์ด๋ฒคํธ๋ ๋ด๋
์๋ ๊ฐ์ต๋ ์ ์์ผ๋๊น ๋
๋๋ ๋ฐ๋๋๋ผ๋, ํฌ๋ฆฌ์ค๋ง์ค๋๊น 12์์ ์๋ณํ๊ฒ ๋ค ์ถ์์ต๋๋ค! |
@@ -0,0 +1,83 @@
+import deepFreeze from '../utils/deepFreeze.js';
+import { EVENT_MONTH } from './event.js';
+
+const MESSAGES = deepFreeze({
+ // InputView
+ inputs: {
+ getVisitDate: `${EVENT_MONTH}์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)\n`,
+ getOrders:
+ '์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,... | JavaScript | toLocaleString ๋ถ๋ถ์ด ๊ฐ๊ฒฉ์ ๋ฐํํด์ค๋๋ ๋ค ์ฐ์ด๋๋ฐ, ๋ฐ๋ก ๋ชจ๋ํ ์ํค๋ ๊ฒ๋ ์ข์ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,83 @@
+import deepFreeze from '../utils/deepFreeze.js';
+import { EVENT_MONTH } from './event.js';
+
+const MESSAGES = deepFreeze({
+ // InputView
+ inputs: {
+ getVisitDate: `${EVENT_MONTH}์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)\n`,
+ getOrders:
+ '์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,... | JavaScript | ๋ฐ์์๋ `totalBenefitMoney`๋ก ์์ธํ๊ฒ ๋ฉ์๋๋ช
์ ์ง์ผ์
์ ์ด๊ฒ๋ `benefits`๋ณด๋ค๋ `benefitsDetail`๋ก ์ข๋ ๊ตฌ์ฒด์ ์ธ๊ฑด ์ด๋จ๊น์? |
@@ -0,0 +1,83 @@
+import deepFreeze from '../utils/deepFreeze.js';
+import { EVENT_MONTH } from './event.js';
+
+const MESSAGES = deepFreeze({
+ // InputView
+ inputs: {
+ getVisitDate: `${EVENT_MONTH}์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)\n`,
+ getOrders:
+ '์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,... | JavaScript | ์ ์์์๋ ์์๊ฐ์ ๊ฐ์ ธ์์๋๋ฐ, ์ด๊ฑด ํ๋์ฝ๋ฉ๋์ด์์ต๋๋ค! ํ๋๋ก ํต์ผํ๋ฉด ์ข์ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,63 @@
+import { FRIDAY, SATURDAY, SPECIAL_DATES } from '../constants/calendar.js';
+import { EVENT_PERIOD } from '../constants/event.js';
+import { ALL_EVENTS } from './Events.js';
+
+class EventCalendar {
+ #year;
+
+ #month;
+
+ #date;
+
+ #availableEvents;
+
+ constructor(year, month, date) {
+ th... | JavaScript | `Period` ๊ผผ๊ผผํ์ญ๋๋ค! ๐๐๐ |
@@ -0,0 +1,63 @@
+import { FRIDAY, SATURDAY, SPECIAL_DATES } from '../constants/calendar.js';
+import { EVENT_PERIOD } from '../constants/event.js';
+import { ALL_EVENTS } from './Events.js';
+
+class EventCalendar {
+ #year;
+
+ #month;
+
+ #date;
+
+ #availableEvents;
+
+ constructor(year, month, date) {
+ th... | JavaScript | new Date(2023,11,25)๋ฑ์ผ๋ก๋ ๋ฃ์ ์ ์์ต๋๋ค! ๊ทธ๋ฐ๋ฐ month์ ๊ฒฝ์ฐ 0์ผ๋ก ์์ํด์ 1๋นผ์ค์ผ ํ๋๋ผ๊ตฌ์... |
@@ -0,0 +1,63 @@
+import { FRIDAY, SATURDAY, SPECIAL_DATES } from '../constants/calendar.js';
+import { EVENT_PERIOD } from '../constants/event.js';
+import { ALL_EVENTS } from './Events.js';
+
+class EventCalendar {
+ #year;
+
+ #month;
+
+ #date;
+
+ #availableEvents;
+
+ constructor(year, month, date) {
+ th... | JavaScript | ์๋ ๋ฐํ๋๋ 0,1,2,~ ๋์ FRIDAY๋ก ๋ฐ๊พธ๋๊น ํจ์ฌ ๊ฐ๋
์ฑ ์ข์์ง๋ค์! ๋ฐฐ์๊ฐ๋๋ค!๐๐๐ |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | 1_000, 1000 ์ค์ ํ๋๋ก ํต์ผํ๋ฉด ์ข์ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,94 @@
+import OrderItem from './OrderItem.js';
+
+import MESSAGES from '../constants/messages.js';
+
+import throwError from '../utils/throwError.js';
+import {
+ hasDuplicatedMenu,
+ hasOnlyBeverages,
+ isTotalAmountOfMenusValid,
+} from '../utils/validators.js';
+
+class Receipt {
+ #orders;
+
+ #orde... | JavaScript | ํน์ ์ฌ๊ธฐ ๊ณต๋ฐฑ์ด ์๋ ์ด์ ๊ฐ ์์๊น์?? |
@@ -0,0 +1,94 @@
+import OrderItem from './OrderItem.js';
+
+import MESSAGES from '../constants/messages.js';
+
+import throwError from '../utils/throwError.js';
+import {
+ hasDuplicatedMenu,
+ hasOnlyBeverages,
+ isTotalAmountOfMenusValid,
+} from '../utils/validators.js';
+
+class Receipt {
+ #orders;
+
+ #orde... | JavaScript | ๊ตฌ์กฐ๋ถํด ํ ๋น ์ ์ฐ์ญ๋๋น! ๐ |
@@ -0,0 +1,144 @@
+import EventCalendar from '../domain/EventCalendar.js';
+import Receipt from '../domain/Receipt.js';
+
+import {
+ EVENT_MONTH,
+ EVENT_NAMES,
+ EVENT_PERIOD,
+ EVENT_YEAR,
+} from '../constants/event.js';
+import MESSAGES from '../constants/messages.js';
+
+import { isInteger, isNumberInRange } ... | JavaScript | ํด๋น ๋ถ๋ถ์ ๋ฐ๋ก ๊ฐ์ฒด๋ก ๊ด๋ฆฌํด๋ ์ข์ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,11 @@
+const deepFreeze = (object) => {
+ Object.keys(object).forEach((prop) => {
+ if (typeof object[prop] === 'object' && !Object.isFrozen(object[prop])) {
+ deepFreeze(object[prop]);
+ }
+ });
+
+ return Object.freeze(object);
+};
+
+export default deepFreeze; | JavaScript | deepFreeze ๊ผผ๊ผผํ์ญ๋๋ค~ ๐๐๐ |
@@ -0,0 +1,36 @@
+import EventCalendar from '../../src/domain/EventCalendar';
+import { CHRISTMAS_D_DAY, GIFT, SPECIAL } from '../../src/domain/Events';
+
+import {
+ EVENT_MONTH,
+ EVENT_NAMES,
+ EVENT_YEAR,
+} from '../../src/constants/event';
+import { MAIN_COURSES } from '../../src/constants/menus';
+
+describe(... | JavaScript | ์ค์ ๋ก ๋ชจ๋ํ๋ ์์์ ๊ตฌ์กฐ๋ ๊ฐ์ด ๋ฐ๋๋ฉด ํ
์คํธ์ ๊ฒฐ๊ณผ๊ฐ ๋ฐ๋๋ ๊ฑธ ๊ฒฝํํ๊ณ ์๋ฌธ์ ํ๊ธด ํ๋๋ฐ, ๋
๋ฆฝ์ฑ์ ์งํค์ง ์์ ํ๋์ด์๊ตฐ์! ๋๋ถ์ ๊นจ๋ฌ์์ต๋๋ค. ์ข์ ํผ๋๋ฐฑ ๊ฐ์ฌํด์.๐ |
@@ -0,0 +1,117 @@
+import { EVENT_NAMES } from '../constants/event.js';
+import { DESSERTS, MAIN_COURSES } from '../constants/menus.js';
+
+export const CHRISTMAS_D_DAY = {
+ getBenefit({ date }) {
+ const baseAmount = 1000;
+ const weightAmount = 100;
+
+ return {
+ amount: 1,
+ price: baseAmount +... | JavaScript | ์ข์ ๋ฐฉ๋ฒ์ด๋ค์! ๊ฐ์ฌํฉ๋๋ค. :) |
@@ -0,0 +1,83 @@
+import deepFreeze from '../utils/deepFreeze.js';
+import { EVENT_MONTH } from './event.js';
+
+const MESSAGES = deepFreeze({
+ // InputView
+ inputs: {
+ getVisitDate: `${EVENT_MONTH}์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)\n`,
+ getOrders:
+ '์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,... | JavaScript | ์ ๋ ๊ณ ๋ฏผํ๋ ๋ถ๋ถ์ธ๋ฐ, ๋ค๋ฅธ ๋ฌ์ ์ด๋ฒคํธ๋ฅผ ๊ฐ์ตํ๋ค๋ฉด ์์๋ก ๋นผ๋ ๊ฒ ์ข์ ๊ฒ ๊ฐ์ ์ด๋ ๊ฒ ํ์ต๋๋ค! |
@@ -0,0 +1,83 @@
+import deepFreeze from '../utils/deepFreeze.js';
+import { EVENT_MONTH } from './event.js';
+
+const MESSAGES = deepFreeze({
+ // InputView
+ inputs: {
+ getVisitDate: `${EVENT_MONTH}์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)\n`,
+ getOrders:
+ '์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,... | JavaScript | ์, ๋์น ๋ถ๋ถ์ด๋ค์! ์ง์ด์ฃผ์
์ ๊ฐ์ฌํฉ๋๋ค.๐ |
@@ -0,0 +1,63 @@
+import { FRIDAY, SATURDAY, SPECIAL_DATES } from '../constants/calendar.js';
+import { EVENT_PERIOD } from '../constants/event.js';
+import { ALL_EVENTS } from './Events.js';
+
+class EventCalendar {
+ #year;
+
+ #month;
+
+ #date;
+
+ #availableEvents;
+
+ constructor(year, month, date) {
+ th... | JavaScript | ๋ง์์! ์ค์๋ฅผ ์ค์ด๊ธฐ ์ํด์ ์์ ๊ฐ์ ๋ฐฉ์์ผ๋ก ํ์ต๋๋ค. :) |
@@ -0,0 +1,56 @@
+package christmas.domain;
+
+
+import static christmas.domain.Badge.NONE;
+import static christmas.domain.Badge.SANTA;
+import static christmas.domain.Badge.STAR;
+import static christmas.domain.Badge.TREE;
+
+import java.util.Map;
+
+public class Benefits {
+ private final Map<Event, Integer> bene... | Java | is{BadgeType}Badge ํจ์๋ฅผ ์ฌ์ฉํด์ ํ๋์ฉ ๋น๊ตํ๋ ํจ์๋ฅผ ๋ง๋ค๊ฒ ๋๋ฉด ๋ฐฐ์ง๊ฐ ์๊ธฐ๊ฑฐ๋ ์ญ์ ํ ๋๋ง๋ค ๋ฉ์๋ ๊ด๋ฆฌ๋ฅผ ๊ณ์ ํด์ค์ผํ๋ค๋ ๋ฒ๊ฑฐ๋ก์์ด ์๊ธธ ์ ์์ ๊ฑฐ ๊ฐ์์!! |
@@ -0,0 +1,48 @@
+package christmas.domain;
+
+public enum Menu {
+ MUSHROOM_SOUP("์์ก์ด์ํ", 6_000, "์ ํผํ์ด์ "),
+ TAPAS("ํํ์ค", 5_500, "์ ํผํ์ด์ "),
+ CAESAR_SALAD("์์ ์๋ฌ๋", 8_000, "์ ํผํ์ด์ "),
+ T_BONE_STEAK("ํฐ๋ณธ์คํ
์ดํฌ", 55_000, "๋ฉ์ธ"),
+ BBQ_RIBS("๋ฐ๋นํ๋ฆฝ", 54_000, "๋ฉ์ธ"),
+ SEAFOOD_PASTA("ํด์ฐ๋ฌผํ์คํ", 35_000, "๋ฉ์ธ"),
+ C... | Java | ์์ Type์ ๊ฒฝ์ฐ ๊ณตํต๋๋ ํญ๋ชฉ (์ํผํ์ด์ /๋ฉ์ธ/๋์ ํธ/์๋ฃ)์ ๋ํด์ ๋ณ๋๋ก ๊ด๋ฆฌํด๋ ์ข์๊ฑฐ ๊ฐ์์ |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | ์
๋ ฅ ๊ฒ์ฆ์ ํ ์ฌ์
๋ ฅ ๋ฐ๋๊ฒ์ inputview์์ ์งํํ๋๊ฒ์ ๋ํด ์ด๋ป๊ฒ ์๊ฐํ์๋์???
๊ตฌํ ํ๋ฉด์ ๊ณ ๋ฏผํ์๋๋ฐ ์ด๋ ๋ฐฉํฅ์ผ๋ก ๊ตฌํํด์ผ ๋ ๋์์ง ์ ๋ชจ๋ฅด๊ฒ ๋๋ผ๊ตฌ์ |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | ๋ค๋ค ์์ธ๋ฅผ e ๋ผ๊ณ ํ๊ธฐํ์ง๋ง ๊ทธ๋๋ error ๋ผ๊ณ ์กฐ๊ธ ๋ ์์ธํ๊ฒ ํํํ๋ ๊ฒ๋ ์ข์ ๊ฒ ๊ฐ์ต๋๋ค.
์ฌ์ค ์ ๋ ์ค๋ผ๊ณ ํ์๋๋ฐ ์ด๋ค ๋ถ์ด ๋ฆฌ๋ทฐ๋ ์ด๋ฌํ ๋ถ๋ถ์ ์ธ๊ธํ ๊ฒ์ ๋ณธ ์ ์ด ์์ด์์ |
@@ -0,0 +1,48 @@
+package christmas.domain;
+
+public enum Menu {
+ MUSHROOM_SOUP("์์ก์ด์ํ", 6_000, "์ ํผํ์ด์ "),
+ TAPAS("ํํ์ค", 5_500, "์ ํผํ์ด์ "),
+ CAESAR_SALAD("์์ ์๋ฌ๋", 8_000, "์ ํผํ์ด์ "),
+ T_BONE_STEAK("ํฐ๋ณธ์คํ
์ดํฌ", 55_000, "๋ฉ์ธ"),
+ BBQ_RIBS("๋ฐ๋นํ๋ฆฝ", 54_000, "๋ฉ์ธ"),
+ SEAFOOD_PASTA("ํด์ฐ๋ฌผํ์คํ", 35_000, "๋ฉ์ธ"),
+ C... | Java | Stream์ ์ด์ฉํด ๋ฉ๋ด๊ฐ ํฌํจ๋ ๋ฆฌ์คํธ๋ฅผ ๋ง๋ค์ด contains๋ก ํ์ธํ๋ ๊ฒ ์กฐ๊ธ ๋ ๊ฐ๊ฒฐํด ๋ณด์ผ์๋ ์์ ๊ฒ ๊ฐ์๋ฐ ์ด๋ป๊ฒ ์๊ฐํ์๋์?? |
@@ -0,0 +1,17 @@
+package christmas.domain;
+
+public enum Error {
+ INVALID_DATE("[ERROR] ์ ํจํ์ง ์์ ๋ ์ง์
๋๋ค. ๋ค์ ์
๋ ฅํด ์ฃผ์ธ์."),
+ INVALID_ORDER("[ERROR] ์ ํจํ์ง ์์ ์ฃผ๋ฌธ์
๋๋ค. ๋ค์ ์
๋ ฅํด ์ฃผ์ธ์."),
+ INVALID_COUNT("[ERROR] ๋ฉ๋ด๋ ํ ๋ฒ์ ์ต๋ 20๊ฐ๊น์ง๋ง ์ฃผ๋ฌธํ ์ ์์ต๋๋ค. ๋ค์ ์
๋ ฅํด ์ฃผ์ธ์"),
+ INVALID_TYPE("[ERROR] ์๋ฃ๋ง ์ฃผ๋ฌธ ์, ์ฃผ๋ฌธํ ์ ์์ต๋๋ค. ๋ค์ ์
๋ ฅํด ์ฃผ์ธ์");
+ ... | Java | [Error] ์ ๊ณตํต๋ถ๋ถ์ด๋ค๋ณด๋ ๋ฐ๋ก ๋นผ๋์ด์ ๋ถ๋ฌ์ฌ๋ this message = " [ error ]"+ message ๋ก ํด๋ ๊ด์ฐฎ์ ๊ฒ ๊ฐ์๋ฐ ์ด๋ป๊ฒ ์๊ฐํ์๋์? |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | ์ ์ฒด์ ์ผ๋ก create๋ผ๋ ๋ฉ์๋๋ช
์ ์ฌ์ฉํ๋๋ฐ create๊ฐ ๊ฐ์ฒด ์์ฑ์ ๋๋์ ์ฃผ๋๊ฑฐ๊ฐ์์ ๋ค๋ฅธ ์ด๋ฆ์ผ๋ก ๋ฉ์๋๋ช
์ ์์ฑํด๋ณด๋๊ฑด ์ด๋จ๊น์ ? |
@@ -0,0 +1,43 @@
+package christmas.domain;
+
+import static christmas.domain.Error.INVALID_ORDER;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.regex.Pattern;
+import java.util.stream.Collectors;
+
+public class Convertor {
+ private static final String ORDERS_DELIMITER = ",";
+ private s... | Java | ์ ์ ๋ฉ์๋๋ก ์ฌ์ฉํ๋ ๊ธฐ์ค์ด ๊ถ๊ธํฉ๋๋ค. ํ๋ฆฌ์ฝ์ค ๊ธฐ๊ฐ๋์ ๋ฏธ์
ํ๋ฉด์ ์จ๋ณด๊ธฐ๋ ํ๋๋ฐ ์ด๋จ๋ ์จ์ผํ ์ง ์ ๋ชจ๋ฅด๊ฒ ์ด์์ |
@@ -0,0 +1,24 @@
+package christmas.domain;
+
+public enum Badge {
+ STAR("๋ณ", 5_000),
+ TREE("ํธ๋ฆฌ", 10_000),
+ SANTA("์ฐํ", 20_000),
+ NONE("์์", 0);
+
+ private final String type;
+ private final int amount;
+
+ Badge(String type, int amount) {
+ this.type = type;
+ this.amount = amou... | Java | private์ ์ง์ ํด ์ฃผ์ง ์์ ์ด์ ๊ฐ ๋ฐ๋ก ์๋์? |
@@ -0,0 +1,56 @@
+package christmas.domain;
+
+
+import static christmas.domain.Badge.NONE;
+import static christmas.domain.Badge.SANTA;
+import static christmas.domain.Badge.STAR;
+import static christmas.domain.Badge.TREE;
+
+import java.util.Map;
+
+public class Benefits {
+ private final Map<Event, Integer> bene... | Java | ๋์ค ๊ฐํ์ด ๋ค์ด๊ฐ๊ฑฐ ๊ฐ์์ !!
๋ค์๋ฒ์ ์์ํ ์ปจ๋ฒค์
๋ ์ฑ๊ธฐ๋ฉด ์ข์๊ฑฐ๊ฐ์์ |
@@ -0,0 +1,51 @@
+package christmas.domain;
+
+import static christmas.domain.Error.INVALID_DATE;
+import static java.time.DayOfWeek.FRIDAY;
+import static java.time.DayOfWeek.SATURDAY;
+import static java.time.DayOfWeek.SUNDAY;
+
+import java.time.DayOfWeek;
+import java.time.LocalDate;
+
+public class Date {
+ pri... | Java | Date๋ผ๋ ํด๋์ค๊ฐ validateRange๋ ๊ทธ๋ ๊ณ 12์์๋ง ํ์ ๋๊ฑฐ ๊ฐ์๋ฐ Date๋ผ๊ณ class๋ช
์ ์ง๋๊ฑด ๋๋ฌด ํฌ๊ด์ ์ด๊ฒ ๋๊ปด์ ธ์ ์กฐ๊ธ ๋ ๊ตฌ์ฒด์ ์ธ ๋ค๋ฅธ์ด๋ฆ์ ์ฌ์ฉํ๋ค๋ฉด ์ด๋จ๊น ์ถ์ต๋๋ค |
@@ -0,0 +1,48 @@
+package christmas.domain;
+
+public enum Menu {
+ MUSHROOM_SOUP("์์ก์ด์ํ", 6_000, "์ ํผํ์ด์ "),
+ TAPAS("ํํ์ค", 5_500, "์ ํผํ์ด์ "),
+ CAESAR_SALAD("์์ ์๋ฌ๋", 8_000, "์ ํผํ์ด์ "),
+ T_BONE_STEAK("ํฐ๋ณธ์คํ
์ดํฌ", 55_000, "๋ฉ์ธ"),
+ BBQ_RIBS("๋ฐ๋นํ๋ฆฝ", 54_000, "๋ฉ์ธ"),
+ SEAFOOD_PASTA("ํด์ฐ๋ฌผํ์คํ", 35_000, "๋ฉ์ธ"),
+ C... | Java | ์ฌ๊ธฐ๋ ์ ๊ทผ ์ง์ ์๊ฐ ๋ฐ๋ก ์ค์ ๋์ง ์์ ์ด์ ๊ฐ ์์๊น์ ? |
@@ -0,0 +1,92 @@
+package christmas.domain;
+
+import static christmas.domain.Error.INVALID_ORDER;
+import static christmas.domain.Menu.NONE;
+
+import java.util.Objects;
+
+public class Order {
+ private static final int MIN_ORDER_COUNT = 1;
+ private final String menuName;
+ private final int count;
+
+ p... | Java | ์๊น Type์ ๋ณ๋๋ก Enum ๊ฐ์ ๊ฐ์ฒด๋ก ๊ด๋ฆฌ ํ๋๋ผ๋ฉด "์๋ฃ"-> ์ ๊ฐ์ stringํ์ผ๋ก ๋น๊ตํ์ง ์์๋ ๋์ ๊ฑฐ ๊ฐ์์ !! ๋ง์ฝ Type์ ์ด๋ฆ์ด ๋ฐ๋๊ฒ ๋์๋ ํ๋ํ๋ ๋ค์ ์ฝ๋๋ฅผ ๋ฐ๊พธ๋ ์๊ณ ๋ฅผ ๋ ์ ์์์๊ฑฐ ๊ฐ์ต๋๋ค:D |
@@ -0,0 +1,92 @@
+package christmas.domain;
+
+import static christmas.domain.Error.INVALID_ORDER;
+import static christmas.domain.Menu.NONE;
+
+import java.util.Objects;
+
+public class Order {
+ private static final int MIN_ORDER_COUNT = 1;
+ private final String menuName;
+ private final int count;
+
+ p... | Java | hashCode๋ฅผ ์ฌ์ฉํ์
จ๋ค์ !!!!
ํน์ hashCode๋ฅผ ์ฌ์ฉํ ์ด์ ๋ฅผ ์ฌ์ญค๋ด๋ ๋ ๊น์?๐ |
@@ -0,0 +1,106 @@
+package christmas.domain;
+
+import static christmas.domain.Error.INVALID_COUNT;
+import static christmas.domain.Error.INVALID_ORDER;
+import static christmas.domain.Error.INVALID_TYPE;
+
+import java.util.List;
+
+public class Orders {
+ private static final int MAX_TOTAL_ORDER_COUNT = 20;
+ p... | Java | Benefit๊ณผ gif์ limit ๊ธ์ก๋ฅผ Order์์ ์ ํด์ฃผ๋๊ฒ๋ณด๋ค Benefit์ ์ฑ
์์ ๋ฌผ๋ ค์ ๊ฒ์ฆํ๋๊ฑด ์ด๋ ์๊น์? |
@@ -0,0 +1,25 @@
+package christmas.view;
+
+enum Notice {
+ WELCOME("์๋
ํ์ธ์! ์ฐํ
์ฝ ์๋น 12์ ์ด๋ฒคํธ ํ๋๋์
๋๋ค."),
+ ASK_DATE_OF_VISIT("12์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)"),
+ ASK_MENU_AND_COUNT("์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,์ด์ฝ์ผ์ดํฌ-1)"),
+ PREVIEW("12์ %s์ผ์ ์ฐํ
์ฝ ์๋น์์ ๋ฐ์ ์ด๋ฒคํธ ํํ ๋ฏธ๋ฆฌ ๋ณด๊ธฐ!%n"),
+ ORD... | Java | %s์ผ ์ฌ์ฉํ์ ๊ฒ์ฒ๋ผ 12์๋ ๋์ ์ผ๋ก ์ฒ๋ฆฌํด๋ณผ ์ ์์๊ฑฐ ๊ฐ์์ :) ๐ |
@@ -0,0 +1,38 @@
+package christmas.domain;
+
+import static christmas.domain.Badge.NONE;
+import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
+
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.DisplayName;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.params.Pa... | Java | CsvSouce๊ฐ ์์๊ตฐ์ ?!!! ์ ๋ ์ด๊ฑธ ๋ชฐ๋ผ์ ํ๊ฐ์ง ๋ณ์๋ก๋ง ํ
์คํธ ์ฝ๋๋ฅผ ์์ฑํ๋๋ผ ์ ๋จน์ ๋ถ๋ถ์ด ์์๋๋ฐ ,, ๋ฐฐ์๊ฐ๋๋ค :O ์ ์ฉํ๊ฒ ์ธ ์ ์์๊ฑฐ๊ฐ์์ |
@@ -0,0 +1,38 @@
+package christmas.domain;
+
+import static christmas.domain.Badge.NONE;
+import static org.assertj.core.api.AssertionsForClassTypes.assertThat;
+
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.DisplayName;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.params.Pa... | Java | setUp ํจ์์ ๊ฒฝ์ฐ ๊ฐ๋
์ฑ(?)์ ์ํด ์๋จ์ ์์น์ํค๋ฉด ๋ ์ข์๊ฑฐ๊ฐ์์ |
@@ -0,0 +1,70 @@
+# ๊ธฐ๋ฅ ๊ตฌํ ๋ชฉ๋ก
+
+## view
+
+- [x] **InputView**
+ - ๋ฐฉ๋ฌธ ๋ ์ง๋ฅผ ์
๋ ฅ ๋ฐ์ ์ ์๋ก ๋ฐํํ๋ค.
+ - ์ซ์ ์ด์ธ์ ๊ฐ์ ์
๋ ฅ์ ์์ธ๋ฅผ ๋ฐ์ ์ํจ๋ค.
+ - ์ฃผ๋ฌธ ๋ด์ฉ์ ์
๋ ฅ ๋ฐ์ ๋ฌธ์์ด๋ก ๋ฐํํ๋ค.
+- [x] **Notice**
+ - InputView์ OutputView์์ ์ฌ์ฉํ๋ ๋ฉ์์ง๋ฅผ ์ ์ฅํ๋ค.
+- [x] **OutputView**
+ - ์๋ฌ ๋ฐ์์ ์๋ฌ ๋ฉ์์ง๋ฅผ ์ถ๋ ฅํ๋ค.
+ - ์ธ์ฌ๋ง์ ์ถ๋ ฅํ๋ค.
+ - ํํ ๋ฏธ๋ฆฌ๋ณด๊ธฐ ๋ด์ฉ์ ์ถ๋ ฅํ๋ค.
+... | Unknown | ์ฝ๋๋ฆฌ๋ทฐ์ ์์, ๊ฐ์ฒด ๊ธฐ๋ฅ๋ณ๋ก ๋ถ๋ฆฌ๋์ด ์์ด ์ ์ฒด ๋น์ฆ๋์ค ๋ก์ง ๋ฐ ๊ฐ ๊ฐ์ฒด์ ์ญํ ์ ํ์
ํ๊ธฐ ํธ๋ฆฌํ์ด์ ๐ |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | ๊ฐํ๋ ํ๋์ ์ปจ๋ฒค์
์ด๋ค!
์กฐ๊ธ ๋ ๊ธฐ๋ฅ๋ณ๋ก ๋ถ๋ฆฌํด์ ๊ฐํ์ผ๋ก ๊ตฌ๋ถํ๋ค๋ฉด ๋ ์ฝ๊ธฐ ํธํ ๊ฒ ๊ฐ์์. |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | 
์์ถ๋๊ป์ ๋ฆฌ๋ทฐ ์ฃผ์
จ๋ ๋ด์ฉ์ ๋ํด์, ํ๋ฒ ์ฌ์ญ๊ณ ์ถ์ ๋ถ๋ถ์ด ์๊ฒจ ์ฌ๊ธฐ์๋ ๊ธ์ ๋จ๊ฒจ๋ด
๋๋ค.
1. ์ปจํธ๋กค๋ฌ๊ฐ ์ ์ฒด ๋น์ฆ๋์ค ๋ก์ง์ ๊ดํ ํ๊ณ ์์ด์.
`์ปจํธ๋กค๋ฌ Layer ๋จ์ํ
์คํธ = ํตํฉํ
์คํธ`์ ์ญํ ์ ์ํํ ๊ฒ ๊ฐ์๋ฐ, ์ปจํธ๋กค๋ฌ์ ๋ถ๋ฆฌ๊ฐ ํ์ํ์ง ์์๊น์?
1-1. ์ปจ... |
@@ -0,0 +1,56 @@
+package christmas.domain;
+
+
+import static christmas.domain.Badge.NONE;
+import static christmas.domain.Badge.SANTA;
+import static christmas.domain.Badge.STAR;
+import static christmas.domain.Badge.TREE;
+
+import java.util.Map;
+
+public class Benefits {
+ private final Map<Event, Integer> bene... | Java | ๋ง์ฝ ๋ฑ์ง๊ฐ 100๊ฐ๋ผ๋ฉด?, 1000๊ฐ๋ผ๋ฉด?
๋ฑ์ง์ ๊ฐฏ์๊ฐ ๋ง์์ง๋ ์ํฉ์์ ๋ชจ๋ ๋ก์ง์ ํ๋์ฝ๋ฉ ํด์ผํ๋ ์ํฉ์ด ์๊ธธ ๊ฒ ๊ฐ์์.
์ด ๋ถ๋ถ๋, ํ๋์ฝ๋ฉ์ด ์๋๋ผ, ๋ฑ์ง์ ์์ฑ์ ๋ฐ๋ผ ๊ตฌ๋ถํ ์ ์๋๋ก ๋ฐฉ๋ฒ์ ๋ชจ์ํด๋ณด์๋ฉด, ์ข์ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,51 @@
+package christmas.domain;
+
+import static christmas.domain.Error.INVALID_DATE;
+import static java.time.DayOfWeek.FRIDAY;
+import static java.time.DayOfWeek.SATURDAY;
+import static java.time.DayOfWeek.SUNDAY;
+
+import java.time.DayOfWeek;
+import java.time.LocalDate;
+
+public class Date {
+ pri... | Java | ํด๋น ์ด๋ฒคํธ๋ 1์์๋ ์ ๋ฌผ์ ์ฆ์ ํ๋ฉด์, `์ฌ์ฌ์ฉ ์์ `์์ ์์ฐ์ค์ ์์ํ์ด์.
int ํ์
ํ๋์ฝ๋ฉ์ด ์๋๋ผ, LocalDate๋ฅผ ํ์ฉํด 2023๋
12์๊ณผ 2024๋
1์์ ๋ผ์๋ฃ์ด์ ๋ฐ๋ก ์ฌ์ฉํ ์ ์๋๋ก ์ค๊ณํ๋ฉด, ๋ ์ ์ฐํ ์ค๊ณ๊ฐ ๋์์ ๊ฒ์ด๋ผ ์๊ฐ๋์ด์! |
@@ -0,0 +1,33 @@
+package christmas.domain;
+
+import static christmas.domain.Menu.CHAMPAGNE;
+
+public enum Event {
+ CHRISTMAS_D_DAY("ํฌ๋ฆฌ์ค๋ง์ค ๋๋ฐ์ด ํ ์ธ", 1_000, 100),
+ WEEKDAY("ํ์ผ ํ ์ธ", 0, 2_023),
+ WEEKEND("์ฃผ๋ง ํ ์ธ", 0, 2_023),
+ SPECIAL("ํน๋ณ ํ ์ธ", 1_000, 0),
+ GIFT("์ฆ์ ์ด๋ฒคํธ", CHAMPAGNE.getPrice(), 0);
+
+ p... | Java | `initPrice` ์ง๊ด์ ์ผ๋ก ๋ณ์๋ช
๋ง ๋ดค์ ๋, ์ด๋ค int๊ฐ์ ๋ด๋์ง ๋ชจํธํ ๊ฐ์ด ์์ด์ |
@@ -0,0 +1,60 @@
+package christmas.domain;
+
+import static christmas.domain.Event.CHRISTMAS_D_DAY;
+import static christmas.domain.Event.GIFT;
+import static christmas.domain.Event.SPECIAL;
+import static christmas.domain.Event.WEEKDAY;
+import static christmas.domain.Event.WEEKEND;
+
+import java.util.EnumMap;
+impo... | Java | ์ค๋ ์ผ์ * 100 + 900 ์ผ๋ก ๊ฐ๋จํ๊ฒ ํํํ ์ ์๋ต๋๋ค >_< |
@@ -0,0 +1,25 @@
+package christmas.view;
+
+enum Notice {
+ WELCOME("์๋
ํ์ธ์! ์ฐํ
์ฝ ์๋น 12์ ์ด๋ฒคํธ ํ๋๋์
๋๋ค."),
+ ASK_DATE_OF_VISIT("12์ ์ค ์๋น ์์ ๋ฐฉ๋ฌธ ๋ ์ง๋ ์ธ์ ์ธ๊ฐ์? (์ซ์๋ง ์
๋ ฅํด ์ฃผ์ธ์!)"),
+ ASK_MENU_AND_COUNT("์ฃผ๋ฌธํ์ค ๋ฉ๋ด๋ฅผ ๋ฉ๋ด์ ๊ฐ์๋ฅผ ์๋ ค ์ฃผ์ธ์. (e.g. ํด์ฐ๋ฌผํ์คํ-2,๋ ๋์์ธ-1,์ด์ฝ์ผ์ดํฌ-1)"),
+ PREVIEW("12์ %s์ผ์ ์ฐํ
์ฝ ์๋น์์ ๋ฐ์ ์ด๋ฒคํธ ํํ ๋ฏธ๋ฆฌ ๋ณด๊ธฐ!%n"),
+ ORD... | Java | ์ ๋ @ddrongy๋์ ์๊ฒฌ์ ๋์ํฉ๋๋ค!,๊ทธ๋ ๋ค๋ฉด 1์๋ก ๋ฐ๋์์๋, (2024๋
1์)
System Constraint๋ ์๋์ผ๋ก ๋ฐ๋๋๋ก(LocalDate..?) ์ค์ ํ๋ ๋ฐฉํฅ์ผ๋ก ์์ ๋ ํ์ํ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | ๋ชจ๋ ๊ฒ์ฆ์ InputView์์ ๋ฐ๋๋ค๋ฉด ์น์ฐ๋ ๋ง์๋๋ก ํ๋๊ฒ ๋ง๋ค๊ณ ์๊ฐํฉ๋๋ค! ํ์ง๋ง ๋ ์ง๊ฐ 1 - 31์ผ ์ค ํ๋์ฌ์ผ ํ๋ค๋ ๊ฒ์ ๋ํ ๊ฒ์ฆ์ VIew๊ฐ ์๋๋ผ Domain ์์ ์ด๋ค์ง๊ธฐ ๋๋ฌธ์ ๊ฒฐ๊ณผ์ ์ผ๋ก View์ Domain ์์ชฝ์์ ๊ฒ์ฆ์ด ์ด๋ค์ ธ์ผ ํฉ๋๋ค. ๋ฐ๋ผ์ ์์ชฝ์ ํต๋ก ์ญํ ์ ํ๋ controller์์ ์งํํ๋ ๊ฒ์ด ๋ง๋ค๊ณ ํ๋จํ์ต๋๋ค~ |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | e๋ผ๊ณ ์ฌ์ฉํ๋ ๊ฒ์ ์๋ฐ๋ฅผ ์ฌ์ฉํ๋ ์ฌ๋๋ค๋ผ๋ฆฌ์ ์ฝ์์ธ๊ฑฐ ๊ฐ์๋ฐ ์ด๋ถ๋ถ์ ํ๋ฒ ๋ํ๋ฅผ ๋๋ ๋ณด๋ฉด ์ข์๊ฑฐ ๊ฐ์ต๋๋ค! |
@@ -0,0 +1,76 @@
+package christmas.controller;
+
+import christmas.domain.Badge;
+import christmas.domain.Benefits;
+import christmas.domain.Convertor;
+import christmas.domain.Date;
+import christmas.domain.EventManager;
+import christmas.domain.Orders;
+import christmas.view.InputView;
+import christmas.view.OutputV... | Java | > ์ ์ฒด์ ์ผ๋ก create๋ผ๋ ๋ฉ์๋๋ช
์ ์ฌ์ฉํ๋๋ฐ create๊ฐ ๊ฐ์ฒด ์์ฑ์ ๋๋์ ์ฃผ๋๊ฑฐ๊ฐ์์ ๋ค๋ฅธ ์ด๋ฆ์ผ๋ก ๋ฉ์๋๋ช
์ ์์ฑํด๋ณด๋๊ฑด ์ด๋จ๊น์ ?
์ค์ ๋ก ํด๋น ๋ฉ์๋๊ฐ ๊ฐ์ฒด๋ฅผ ์์ฑํด์ ๋ฆฌํดํ๋ ๊ธฐ๋ฅ์ ํ๊ณ ์์ด์ create ๋ผ๊ณ ๋ช
๋ช
ํ๋๋ฐ ํน์ ๋ค๋ฅธ ์ข์ ์ด๋ฆ์ด ์์๊น์~? |
@@ -0,0 +1,24 @@
+package christmas.domain;
+
+public enum Badge {
+ STAR("๋ณ", 5_000),
+ TREE("ํธ๋ฆฌ", 10_000),
+ SANTA("์ฐํ", 20_000),
+ NONE("์์", 0);
+
+ private final String type;
+ private final int amount;
+
+ Badge(String type, int amount) {
+ this.type = type;
+ this.amount = amou... | Java | ์ธํ
๋ฆฌ์ ์ด ์๋ ์์ฑ๊ธฐ๋ฅ์ผ๋ก ๋ง๋ ๊ฑด๋ฐ ์ด ๋ถ๋ถ์ ๋ํด์๋ ์๊ฐํด๋ณด์ง ๋ชปํ๋ค์ ใ
ใ
private๋ก ์ง์ ํ๋๊ฒ ๋ง๋๊ฑฐ ๊ฐ์ต๋๋ค! |
@@ -41,7 +41,7 @@ public Object checkReviewGroupAccess(ProceedingJoinPoint joinPoint,
private boolean canMemberAccess(ReviewGroup reviewGroup, HttpServletRequest request) {
GitHubMember gitHubMember = sessionManager.getGitHubMember(request);
- return gitHubMember != null && reviewGroup.getMemberI... | Java | **๋ฌธ์ ๊ฐ ๋๋ ๋ถ๋ถ์ ์ด ๋ถ๋ถ์ด์์ต๋๋ค.**
ํ์์ด ์ ๊ทผํ๋ ค๋ ๋ฆฌ๋ทฐ ๊ทธ๋ฃน์ด "๋นํ์์ด ๋ง๋ ๋ฆฌ๋ทฐ๊ทธ๋ฃน"์ธ ๊ฒฝ์ฐ,
reviewGroup.getMemberId() ๊ฐ null ์ด๊ธฐ ๋๋ฌธ์
long์ธ gitHubMember.getMemberId() ์์ == ์ฐ์ฐ์ ๋ชปํ๋ฏ๋ก NPE๊ฐ ๋ฐ์ํฉ๋๋ค.
์ด๋ฐ ์ผ์ด ์๊ธฐ์ง ์๊ฒํ๋ ค๋ฉด 1์ฐจ์์ ์ผ๋ก
`gitHubMember != null && (reviewGroup.getMemberId() != null && reviewGroup.getMemberId() == gitHubMember.getMemberId())` ๋ฅผ ํ ์... |
@@ -57,6 +57,13 @@ void setUp() {
RequestContextHolder.setRequestAttributes(new ServletRequestAttributes(request));
}
+ @Test
+ void ์กด์ฌํ์ง_์๋_๋ฆฌ๋ทฐ์_์ ๊ทผํ๋ฉด_NotFound_์์ธ๊ฐ_๋ฐ์ํ๋ค() {
+ // when & then
+ assertThatCode(() -> aopTestClass.testReviewMethod(1L))
+ .isInstanceOf(Review... | Java | ์์ํ๊ฒ ํ
์คํธ ์ฝ๋ ๋ฆฌํฉํฐ๋งํ์ต๋๋ค.
์๊ฐํด๋ณด๋ฉด ๋นํ์์ ์๊ธฐ๊ฐ ๋ง๋ค์ง ์์๋๋ผ๋ ๋น๋ฐ๋ฒํธ๊ฐ ์ผ์นํ๋ฉด ํต๊ณผ๋๋๊ฑฐ๋ผ "๋ฆฌ๋ทฐ ๊ทธ๋ฃน์ ์ธ์ฆํ" ์ผ๋ก ๋ช
ํํ ์๋ฏธ๋ฅผ ์ ๋ฌํ๋ ค ํ์๋๋ค~ |
@@ -0,0 +1,37 @@
+import CONSTANTS from '../constants/constants.js';
+import ERROR from '../constants/error.js';
+
+class NumbersValidator {
+ static validateNumbers(numbers) {
+ const validators = [
+ this.#validateEmpty,
+ this.#validateNegative,
+ this.#validateNaN,
+ this.#validateLength,
+ ... | JavaScript | ๊ฐ ๋งค์๋๋ค์ ๋ฐ๋ก ํธ์ถ์ํค์ง ์๊ณ ๋ฐฐ์ด์ ๋ง๋ค์ด์ forEach ๋ฉ์๋๋ก ํ๋์ฉ ํธ์ถ์ํจ ์ด์ ๊ฐ ๊ถ๊ธํด์! |
@@ -0,0 +1,20 @@
+import { Console } from '@woowacourse/mission-utils';
+import MESSAGE from '../constants/message.js';
+import NumbersValidator from '../validators/NumbersValidator.js';
+import RestartValidator from '../validators/RestartValidator.js';
+
+const InputView = {
+ async readNumbers() {
+ const numbers... | JavaScript | ๋ฐ์ดํฐ๋ฅผ ๋ฐ์ ์ถ๋ ฅํ๋ view์ ์ญํ ์ ์๊ฐํ์ ๋ ์ ํจ์ฑ ๊ฒ์ฌ๋จ๊ณ๊ฐ view์ ์๋๊ฒ ๋ง๋์ง ๊ถ๊ธ์ฆ์ด ๋๋๋ฐ ์ด๋ ๊ฒ ์์ฑํ์ ์ด์ ๊ฐ ๊ถ๊ธํฉ๋๋น :) |
@@ -0,0 +1,42 @@
+import CONSTANTS from '../constants/constants.js';
+import MESSAGE from '../constants/message.js';
+
+class Hint {
+ #numbers;
+
+ #computerNumbers;
+
+ constructor(numbers, computerNumbers) {
+ this.#numbers = numbers;
+ this.#computerNumbers = computerNumbers;
+ }
+
+ calculateStrikeCount... | JavaScript | ์ฒ์์ Hint ํด๋์ค๋ช
์ ์๋ฌธ์ด ๋ค์๋๋ฐ ๊ฒ์์ด๋๊น ์ผ๋ง๋ ๋ง์ท๋์ง ์๋ ค์ฃผ๋ ์ญํ ์ด๋ผ ์ ์ ํ ์ ์๊ฒ ๋ค์! ๐๐ป |
@@ -0,0 +1,20 @@
+import { Console } from '@woowacourse/mission-utils';
+import MESSAGE from '../constants/message.js';
+import NumbersValidator from '../validators/NumbersValidator.js';
+import RestartValidator from '../validators/RestartValidator.js';
+
+const InputView = {
+ async readNumbers() {
+ const numbers... | JavaScript | ์ด ๋ถ๋ถ์ ๋ํด์ ์ ๋ ๊ณ ๋ฏผ์ ๋ง์ด ํด๋ดค๋๋ฐ ํ๋ก ํธ(InputVIew)์ ๋ฐฑ์๋(model)์ ์ญํ ์ด ์๋ค๊ณ ๊ฐ์ ํ์ ๋, view์ model ๋ ๋ค ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ์งํํ๋ ๊ฒ์ด ๋ง๋ค๊ณ ํ๋จํ์ฌ ์์ฑํ๊ฒ ๋์์ต๋๋ค. |
@@ -0,0 +1,37 @@
+import CONSTANTS from '../constants/constants.js';
+import ERROR from '../constants/error.js';
+
+class NumbersValidator {
+ static validateNumbers(numbers) {
+ const validators = [
+ this.#validateEmpty,
+ this.#validateNegative,
+ this.#validateNaN,
+ this.#validateLength,
+ ... | JavaScript | ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ๋ชจ๋ ์ํํ๊ธฐ ์ํด์ ํ๋์ ๋ฉ์๋๋ฅผ ํธ์ถํจ์ผ๋ก์ ๊ฐ ์ ํจ์ฑ ๊ฒ์ฌ๊ฐ ์ํ๋๋๋ก ์์ฑํด๋ณด์์ต๋๋ค! |
@@ -0,0 +1,38 @@
+# ๊ธฐ๋ฅ ๊ตฌํ ์ฒดํฌ๋ฆฌ์คํธ
+
+## ๊ธฐ๋ฅ ๋ชฉ๋ก
+
+### ์ฌ์ฉ์์ ์
๋ ฅ
+
+- [x] ์ธ ์๋ฆฌ ์ซ์๋ฅผ ์
๋ ฅํ๋ค.
+ - [x] ์ซ์๊ฐ ์๋ ๊ฒฝ์ฐ ์์ธ ์ฒ๋ฆฌ (1 ~ 9) - ์ ๊ท ํํ์
+ - [x] ์ซ์๊ฐ 3๊ฐ๊ฐ ์๋ ๊ฒฝ์ฐ ์์ธ ์ฒ๋ฆฌ
+ - [x] ์ค๋ณต๋๋ ์ซ์๊ฐ ์กด์ฌํ๋ ๊ฒฝ์ฐ ์์ธ ์ฒ๋ฆฌ
+
+### ์ปดํจํฐ์ ์ ์์ฑ
+
+- [x] 3๊ฐ์ ์ซ์ ์์ฑ (์ง์ ๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ด์ฉ)
+ - [x] ์ค๋ณต๋ ์ซ์๊ฐ ๋ฐ์ํ ๊ฒฝ์ฐ ์ฌ์์ฑ
+
+### ์ฌ์ฉ์๊ฐ ์
๋ ฅํ ์์ ์ปดํจํฐ๊ฐ ์์ฑํ ์ ๋น๊ต
+
+- [x] ๊ฐ ์๋ฆฌ ... | Unknown | ๋ฆฌ๋ทฐ ์์์ ์์ ๋ฆฌ๋๋ฏธ์ ๊ฐ ํด๋์ค๋ณ ์ญํ ์ ๋ํด ๊ธฐ์ฌํด์ฃผ์๋ฉด ์ฝ๋ ํ์
์ ๋ ๋์์ด ๋ ๊ฑฐ ๊ฐ์ต๋๋ค! |
@@ -0,0 +1,58 @@
+package baseball.controller;
+
+import baseball.domain.Computer;
+import baseball.domain.Referee;
+import baseball.domain.Result;
+import baseball.util.GameProgress;
+import baseball.view.InputView;
+import baseball.view.OutputView;
+import java.util.List;
+
+public class GameController {
+
+ priva... | Java | ํ๋ ์ด ๋ฉ์๋๊ฐ ๋จ์ํ playOrEnd๋ฅผ ํธ์ถํ๊ณ ์๋๋ฐ play๋ playOrEnd์ค ํ๋๋ฅผ ์์ ๊ณ ํฉ์ณ๋ ๋ ๊ฒ ๊ฐ์ต๋๋ค. |
@@ -0,0 +1,58 @@
+package baseball.controller;
+
+import baseball.domain.Computer;
+import baseball.domain.Referee;
+import baseball.domain.Result;
+import baseball.util.GameProgress;
+import baseball.view.InputView;
+import baseball.view.OutputView;
+import java.util.List;
+
+public class GameController {
+
+ priva... | Java | while์ ์กฐ๊ฑด๋ฌธ์ ๊ธ์ ๋ฌธ์ผ๋ก ํ๋ ๊ฒ์ด ๊ฐ๋
์ฑ์ ๋ ๋์์ด ๋๋ค๊ณ ํ๋๋ผ๊ตฌ์.
```suggestion
while (GameProgress.isRetry(gameProgress)) {
```
์ด๋ ๊ฒ ๋ฐ๊ฟ๋ณด์๋ ๊ฒ๋ ํ๋ฒ ์ ์๋๋ ค๋ด
๋๋ค! |
@@ -0,0 +1,23 @@
+package baseball.domain;
+
+import camp.nextstep.edu.missionutils.Randoms;
+import java.util.ArrayList;
+import java.util.List;
+
+public class Computer {
+
+ private static final int NUMBERS_LENGTH = 3;
+ private static final int START_RANGE_NUMBER = 1;
+ private static final int END_RANGE_N... | Java | ์ ์ ๋ฉ์๋๋ฅผ ์ ์ธํ์ ๊ธฐ์ค์ ์ดํด๋ณด๋ฉด Computer๋ ์ ํธ ๊ธฐ๋ฅ + ์ํ๊ฐ์ ๊ฐ์ง์ง ์๊ธฐ ๋๋ฌธ์ ์ ์ ๋ฉ์๋๋ก ์ ์ธํด๋ ๋๋ค๊ณ ์๊ฐํ๋๋ฐ ์ด๋ ์ ๊ฐ์? |
@@ -0,0 +1,17 @@
+package baseball.domain;
+
+import java.util.List;
+
+public class Referee {
+
+ public Result judge(List<Integer> userNumbers, List<Integer> computerNumbers) {
+ Result result = new Result();
+ for (int i = 0; i < userNumbers.size(); i++) {
+ if (result.isStrike(userNumber... | Java | ์ปดํจํฐ์ ๋ง์ฐฌ๊ฐ์ง๋ก ๋ ํผ๋ฆฌ๋ ์ ์ ๋ฉ์๋๋ก ์ ์ธํด๋ ๊ด์ฐฎ์ง ์์๊น ํ๋ ์๊ฐ์
๋๋ค! |
@@ -0,0 +1,19 @@
+package baseball.util;
+
+public enum GameProgress {
+
+ START, RETRY, QUIT;
+
+ private static final int RETRY_NUMBER = 1;
+
+ public static boolean isQuit(GameProgress gameProgress) {
+ return gameProgress == QUIT;
+ }
+
+ public static GameProgress judgeEnd(int number) {
+ ... | Java | ํ๋ก๊ทธ๋จ์ ํ์ฅ์ฑ์ ๊ณ ๋ คํ์
์ enum์ผ๋ก ๋ง๋์ ๊ฑฐ ๋ง์ผ์ค๊น์? ์ ๋ ์ฒ์์ ์ข
๋ฃ ๋ฉ๋ด๋ฅผ enum์ผ๋ก ๋ง๋๋ ค๊ณ ํ๋ค๊ฐ ๊ฒฝ์ฐ์ ์๊ฐ 2๊ฐ์ง์ฌ์ class๋ก ๋ง๋ค์์ต๋๋ค. ๋ง์ฝ ๊ฒฝ์ฐ์ ์๊ฐ ๋ ๋ง์๋ค๋ฉด ์ ๋ enum์ผ๋ก ๋ง๋ค์์ ๊ฒ ๊ฐ๋ค์! |
@@ -0,0 +1,19 @@
+package baseball.util;
+
+public enum GameProgress {
+
+ START, RETRY, QUIT;
+
+ private static final int RETRY_NUMBER = 1;
+
+ public static boolean isQuit(GameProgress gameProgress) {
+ return gameProgress == QUIT;
+ }
+
+ public static GameProgress judgeEnd(int number) {
+ ... | Java | ๋ฐ๋ก ์์๋ฅผ ์ ์ธํ์๊ธฐ ๋ณด๋ค RETRY(1), QUIT(2); ์ด๋ฐ ์์ผ๋ก ๊ฐ์ ์ง์ ํด์ฃผ์๋๊ฑด ์ด๋ ์ ์ง ์ ์๋๋ ค๋ด
๋๋ค! |
@@ -0,0 +1,34 @@
+package baseball.view;
+
+import baseball.util.Validator;
+import camp.nextstep.edu.missionutils.Console;
+import java.util.List;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+public class InputView {
+
+ public static final String DELIMITER = "";
+
+ public static Lis... | Java | view๊ฐ inputd์ domain์์ ์ฌ์ฉ๋ ํํ๋ก ๊ฐ๊ณตํด์ ๋๊ฒจ์ฃผ๋ ๊ฒ์ด ๋ง๋ ๊ฑธ๊น์??? ์ ๋ ํ๋ฆฌ์ฝ์ค๋ฅผ ํ๋ฉด์ ํญ์ ์๊ตฌ์ฌ ๊ฐ์ ธ์๋ ๋ถ๋ถ์ด๋ผ์ ๋ ์ด์ฑ์นด ๋ค์ ๋ง๋ค๊ธฐ์์๋ ์๋ํ์ ๋ํ String ๊ฐ์ผ๋ก๋ง ๋๊ฒจ์คฌ์๋๋ฐ์. ์ด ๋ถ๋ถ ๋ชฉ์์ผ์ ๊ผญ ์๊ธฐ ๋๋ ๋ดค์ผ๋ฉด ์ข๊ฒ ์ต๋๋ค! |
@@ -0,0 +1,65 @@
+package baseball.domain;
+
+import java.util.List;
+
+public class Result {
+
+ private static final int DEFAULT_NUMBER = 0;
+ private static final int END_NUMBER = 3;
+
+ private int ball;
+ private int strike;
+
+ public Result() {
+ this.ball = DEFAULT_NUMBER;
+ this.st... | Java | ํด๋น ์ถ๋ ฅ์ ๋ํ ์ฑ
์์ OutputView์ ๋๊ฒจ์ฃผ์๋๊ฑด ์ด๋ ์ ๊ฐ์? |
@@ -0,0 +1,32 @@
+package baseball.util;
+
+import java.util.List;
+import java.util.regex.Pattern;
+
+public class Validator {
+
+ private static final String DUPLICATION_MESSAGE = "์ค๋ณต๋ ์ซ์๊ฐ ์กด์ฌํฉ๋๋ค. ๋ค์ ์
๋ ฅํด์ฃผ์ธ์.";
+ private static final String NUMBERS_PATTERN_MESSAGE = "1๋ถํฐ 9๊น์ง์ ์ซ์ ์ค 3๊ฐ์ง ์ซ์๋ฅผ ์
๋ ฅํด์ฃผ์ธ์.";
+ private s... | Java | ์ ๊ท์ ํํ์ด ๋งค์ฐ ๊น๋ํ๋ค์! ๋ฐฐ์ฐ๊ณ ๊ฐ๋๋ค. |
@@ -0,0 +1,58 @@
+package baseball.controller;
+
+import baseball.domain.Computer;
+import baseball.domain.Referee;
+import baseball.domain.Result;
+import baseball.util.GameProgress;
+import baseball.view.InputView;
+import baseball.view.OutputView;
+import java.util.List;
+
+public class GameController {
+
+ priva... | Java | ํจ์๋ช
์ ThreeStrike์ฒ๋ผ ์ฐ์น ์กฐ๊ฑด์ ๋ํด ์ง์ ์ ์ผ๋ก ๋ํ๋ด๋ ๊ฒ๋ณด๋ค playUntilWin ๊ฐ์ ๋ฐฉ์์ผ๋ก ์์ฑํ๋๊ฑด ์ด๋จ๊น์?? |
@@ -0,0 +1,65 @@
+package baseball.domain;
+
+import java.util.List;
+
+public class Result {
+
+ private static final int DEFAULT_NUMBER = 0;
+ private static final int END_NUMBER = 3;
+
+ private int ball;
+ private int strike;
+
+ public Result() {
+ this.ball = DEFAULT_NUMBER;
+ this.st... | Java | isStrike์ ํต์ผํ์ฌ isBall๋ก ์ํ ์ด์ ๊ฐ ๋ฐ๋ก ์๋์ !? |
@@ -0,0 +1,65 @@
+package baseball.domain;
+
+import java.util.List;
+
+public class Result {
+
+ private static final int DEFAULT_NUMBER = 0;
+ private static final int END_NUMBER = 3;
+
+ private int ball;
+ private int strike;
+
+ public Result() {
+ this.ball = DEFAULT_NUMBER;
+ this.st... | Java | ์ค .. ์ด๋ฐฉ์์ผ๋ก ํ๋๊ฑฐ ์ข์๊ฑฐ ๊ฐ๋ค์
๊ทผ๋ฐ ์๋ ์กฐ๊ฑด์๋ else if ๋ก ๋ํ๋ด๋ ์ข์๊ฑฐ๊ฐ์์ ! |
@@ -0,0 +1,73 @@
+package com.eureka.spartaonetoone.review.application;
+
+import com.eureka.spartaonetoone.review.application.dtos.request.ReviewRequestDto;
+import com.eureka.spartaonetoone.review.application.dtos.response.ReviewResponseDto;
+import com.eureka.spartaonetoone.review.application.exception.ReviewExcepti... | Java | `@Transactional`์ด ๋น ์ง ๊ฒ ๊ฐ์ต๋๋ค! |
@@ -0,0 +1,73 @@
+package com.eureka.spartaonetoone.review.application;
+
+import com.eureka.spartaonetoone.review.application.dtos.request.ReviewRequestDto;
+import com.eureka.spartaonetoone.review.application.dtos.response.ReviewResponseDto;
+import com.eureka.spartaonetoone.review.application.exception.ReviewExcepti... | Java | ์ด ๋ถ๋ถ์ด ์ ์ ํฉํ ๋ฆฌ ๋ฉ์๋๋ฅผ ์ฌ์ฉํด์ ์๋ง `Review.createReview(dto)`๊ฐ ๋ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,59 @@
+package com.eureka.spartaonetoone.review.presentation;
+
+import com.eureka.spartaonetoone.review.application.ReviewService;
+import com.eureka.spartaonetoone.review.application.dtos.request.ReviewRequestDto;
+import com.eureka.spartaonetoone.review.application.dtos.response.ReviewResponseDto;
+
+impo... | Java | dto ์์ `@Valid` ์ถ๊ฐํด์ฃผ์๋ฉด ๊ฐ์ฌํ๊ฒ ์ต๋๋ค! |
@@ -0,0 +1,59 @@
+package com.eureka.spartaonetoone.review.presentation;
+
+import com.eureka.spartaonetoone.review.application.ReviewService;
+import com.eureka.spartaonetoone.review.application.dtos.request.ReviewRequestDto;
+import com.eureka.spartaonetoone.review.application.dtos.response.ReviewResponseDto;
+
+impo... | Java | ์ฌ๊ธฐ๋ dto ์์ `@Valid` ์ถ๊ฐํด์ฃผ์๋ฉด ์ข์ ๊ฒ ๊ฐ์์! |
@@ -0,0 +1,62 @@
+package com.eureka.spartaonetoone.store.presentation;
+
+import com.eureka.spartaonetoone.store.application.StoreService;
+import com.eureka.spartaonetoone.store.application.dtos.request.StoreRequestDto; //
+import com.eureka.spartaonetoone.store.application.dtos.response.StoreResponseDto;
+
+import o... | Java | ์ฃผ์ ๋ถ๋ถ๋ง ๋์ค์ ์ ๊ฑฐํด์ฃผ์
๋ ๋ ๊ฒ ๊ฐ์์ |
@@ -29,7 +29,7 @@ public void initialize() {
beanFactory.initialize();
}
- public Collection<Object> controllers() {
+ public Collection<Object> getControllers() {
return beanFactory.beansAnnotatedWith(Controller.class);
}
} | Java | ํผ๋๋ฐฑ ๋ฐ์ ์ ํด์ฃผ์
จ๋ค์ ๐ |
@@ -1,6 +1,5 @@
package next.controller;
-import core.annotation.Inject;
import core.annotation.web.Controller;
import core.annotation.web.RequestMapping;
import core.annotation.web.RequestMethod;
@@ -22,14 +21,8 @@
public class ApiQnaController extends AbstractNewController {
private static final Logger lo... | Java | BeanFactory, getInstantiateSingletons NPE ๋ฐ์ ๋ฌธ์ ๋ก getInstance() ํธ์ถ๋ก ์์ ํ์ ๊ฑฐ ๋ง์๊น์?
์์ธ์ด ๋ฌด์์ด์๋์?
์ด์ ์ฝ๋(์์ฑ์ inject) ๋ฐฉ์์ผ๋ก ๋ฌธ์ ๋ฅผ ํด๊ฒฐํด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์์.
MyConfiguration ํด๋์ค์์ ๋ฑ๋กํ DataSource๋ ๋น์ผ๋ก ๋ฑ๋กํ์ผ๋ JdbcTemplate์์ ์ฌ์ฉํด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ๊ตฌ์! |
@@ -0,0 +1,86 @@
+package nextstep.subway.application;
+
+import java.util.List;
+import java.util.NoSuchElementException;
+import java.util.Optional;
+import java.util.stream.Collectors;
+import nextstep.subway.domain.Line;
+import nextstep.subway.domain.LineRepository;
+import nextstep.subway.domain.Station;
+import ... | Java | deleteById ๊ตฌํ์ฒด๋ฅผ ๋ณด์๋ฉด ์กฐํ ํ์ ๊ฐ์ด ์์ ๊ฒฝ์ฐ์๋ง ์ญ์ ํ๊ณ ์์ต๋๋ค.
์ด๋ฐ ๋ถ๋ถ๋ค์ ์ ํ๋ฆฌ์ผ์ด์
์์ ์ง์ ์์ฑํ๊ธฐ๋ณด๋ค๋ Infrastructre layer์์ ๋ด๋นํ๋ ๊ฒ์ด ์ข๋ค๊ณ ์๊ฐํ๋๋ฐ
์ด๋ป๊ฒ ์๊ฐํ์๋์?
```java
@Transactional
@Override
public void deleteById(ID id) {
Assert.notNull(id, ID_MUST_NOT_BE_NULL);
delete(findById(id).orElseThrow(() -> new EmptyResultDataAccessEx... |
@@ -0,0 +1,86 @@
+package nextstep.subway.application;
+
+import java.util.List;
+import java.util.NoSuchElementException;
+import java.util.Optional;
+import java.util.stream.Collectors;
+import nextstep.subway.domain.Line;
+import nextstep.subway.domain.LineRepository;
+import nextstep.subway.domain.Station;
+import ... | Java | ๋ฉ์๋ ๋ณ์๋ก ํ ๋นํ์ ์ด์ ๊ฐ ์์ผ์ ๊ฐ์?
``` java
findAll().stream()
.map(LineResponse::of)
.collect(Collectors.toList());
``` |
@@ -1,16 +1,35 @@
package nextstep.subway.domain;
-import javax.persistence.*;
+import java.util.Objects;
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.Joi... | Java | ์ญ์ด Line์ ๊ฐ์ง๋๊ฒ ๋ง์๊น์?
ํ๋์ ์ญ์ด ์ฌ๋ฌ ๋
ธ์ ์ ์ํ๋ฉด ์ด๋ป๊ฒ ๋๋์.
์๋ฅผ ๋ค์ด ๊ฐ๋จ์ญ์ 2ํธ์ ๊ณผ ์ ๋ถ๋น์ ๋๊ฐ์ง๊ฐ ์์ด์. |
@@ -0,0 +1,156 @@
+package nextstep.subway.acceptance;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import io.restassured.RestAssured;
+import io.restassured.response.ExtractableResponse;
+import io.restassured.response.Response;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Ma... | Java | ๋
ธ์ ์์ฑ ์ ์ํ์ข
์ ์ญ๊ณผ ํํ์ข
์ ์ญ์ ๋ฑ๋กํฉ๋๋ค.
๋ฐ๋ผ์ ์ด๋ฒ ๋จ๊ณ์์๋ ์งํ์ฒ ๋
ธ์ ์ ์ญ์ ๋งตํํ๋ ๊ธฐ๋ฅ์ ์์ง ์์ง๋ง ๋
ธ์ ์กฐํ์ ํฌํจ๋ ์ญ ๋ชฉ๋ก์ด ํจ๊ป ์๋ต๋ฉ๋๋ค.
statusCode ์ฝ๋ ๋ฟ๋ง ์๋๋ผ ์ค์ ์๋ต์๋ํด์ ํ
์คํธ ํ ์ ์์ผ๋ฉด ์ข์๊ฒ ๊ฐ์์. |
@@ -0,0 +1,156 @@
+package nextstep.subway.acceptance;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import io.restassured.RestAssured;
+import io.restassured.response.ExtractableResponse;
+import io.restassured.response.Response;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Ma... | Java | ์ฑํ ํฝ์ค์ฒ ๋ฐ ๋ฐ์ดํฐ ์ง์ ์ญ์ ํด์ฃผ์
จ์ด์.
๋ค๋ง ์์ฑํด์ผ ํ ๋ฐ์ดํฐ๊ฐ ๋ง๊ฑฐ๋, ์ฐ๊ด ๊ด๊ณ ๋งตํ์ด ์์ผ๋ฉด ์ด๋ป๊ฒ ๋ ์ง ๊ณ ๋ฏผํด๋ณด์๋ฉด ์ข์ ๊ฒ๊ฐ์์. |
@@ -0,0 +1,156 @@
+package nextstep.subway.acceptance;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import io.restassured.RestAssured;
+import io.restassured.response.ExtractableResponse;
+import io.restassured.response.Response;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Ma... | Java | ๋
ธ์ ์์ฑ ์ ์ํ์ข
์ ์ญ๊ณผ ํํ์ข
์ ์ญ์ ๋ฑ๋กํฉ๋๋ค.
ํด๋น ์๊ตฌ์ฌํญ์ด ๊ตฌํ๋์ง ์์ ๊ฒ ๊ฐ์์. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.