code stringlengths 41 34.3k | lang stringclasses 8
values | review stringlengths 1 4.74k |
|---|---|---|
@@ -0,0 +1,57 @@
+import { GIVEAWAYS, TITLES } from '../constants/events.js';
+import { NONE } from '../constants/system.js';
+import menuPriceFinder from '../utils/menuPriceFinder.js';
+
+class Benefit {
+ #isFitGiveaway;
+
+ #benefitList;
+
+ #totalPrice;
+
+ constructor(discountList, isFitGiveaway) {
+ this.#... | JavaScript | ์ ๋ ์ฐ์ ๋ชจ๋ ๋ฉ์๋์ ํ๋๋ฅผ `private`์ผ๋ก ์ง์ ํ๊ณ ๋์, ์ดํ์ `public`์ผ๋ก ์ ๊ทผ์ ํด์ผ๋ง ํ ๋ `public`์ผ๋ก ์ ํํ์์ต๋๋ค!
์๋ง ์ด ๊ณผ์ ์์๋ ํด๋์ค ๋ด ๋ฉ์๋๊ฐ `benefitList`์ `totalPrice`๋ฅผ ์ฌ์ฉํจ์ ์์ด์ `public`์ผ๋ก ์ ํํ์ง ์์๋ ๋ ๊ฒ ๊ฐ์์ ๊ทธ๋๋ก ๋์์ต๋๋ค :)
์ ๋ ์ฌ์ค ๊ณตํต ํผ๋๋ฐฑ์ ๋ฐ๊ณ ๋์ ํ๋์ ๊ฐ์๋ฅผ ์ต๋ํ ์ค์ฌ์ผํ๋ ๊ฒ๊ณผ, ์ต๋ํ private ํ๋๋ก ์บก์ํ๋ฅผ ๊ตฌํํ๋ ๊ฒ ์ฌ์ด์์์ ์ค๊ฐ์ ์ ๋ชป์ฐพ๊ฒ ๋๋ผ๊ตฌ์!
์ข์ ํผ๋๋ฐฑ ๊ฐ์ฌ๋๋ฆฝ๋๋ค! `benefitList`์ `totalP... |
@@ -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()` ๋ฉ์๋ ์ฌ์ฉ์ด ๋ ๋ชฉ์ ์ ๋ถํฉํ ์๋ ์๋ค๊ณ ์๊ฐ์ด ๋๋ค์ :) |
@@ -1,6 +1,9 @@
package bridge;
+import bridge.domain.constant.MoveCommand;
import java.util.List;
+import java.util.stream.Collectors;
+import java.util.stream.IntStream;
/**
* ๋ค๋ฆฌ์ ๊ธธ์ด๋ฅผ ์
๋ ฅ ๋ฐ์์ ๋ค๋ฆฌ๋ฅผ ์์ฑํด์ฃผ๋ ์ญํ ์ ํ๋ค.
@@ -18,6 +21,10 @@ public BridgeMaker(BridgeNumberGenerator bridgeNumberGenerator) {
* @return... | Java | ์ด ๋ถ๋ถ ๊ฐ์ฒด์งํฅ์ ์ผ๋ก ์ค๊ณ๋ฅผ ์ํ์
จ๋ค์!! ๊ฐ๋
์ฑ ์์ฃผ ๊ตฟ์
๋๋ค |
@@ -0,0 +1,95 @@
+package bridge.controller;
+
+import bridge.domain.model.Bridge;
+import bridge.domain.model.BridgeGame;
+import bridge.domain.constant.MoveCommand;
+import bridge.domain.constant.RetryCommand;
+import bridge.domain.constant.Status;
+import bridge.view.InputView;
+import bridge.view.OutputView;
+
+pub... | Java | depth๊ฐ 3์ด๋ค์ ใ
ใ
ํจ์๋ฅผ ๋ถ๋ฆฌํ์
์ผํ ๊ฑฐ ๊ฐ์ต๋๋ค |
@@ -0,0 +1,41 @@
+package bridge.domain.model;
+
+import bridge.domain.constant.MoveCommand;
+import bridge.domain.constant.Status;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+public class GameDashboard {
+
+ private final List<Status> upResult = new ArrayList<>();
+ pri... | Java | ์ด ๋ถ๋ถ ์ข๋ค์! ์ ๋ Map ์ ์ธ๋ถ๋ก ๋บ์ง ๋ง์ง ๊ณ ๋ฏผํ๋ค๊ฐ ์๋บ๋๋ฐ ๋บ ํ์ Player๊ฐ ๊ฐ์ง๊ณ ์๋ ๊ธฐ๋ฅ๋ค์ ์ฎ๊ฒจ์ฃผ๋๊ฒ ๋ ์ข์์๊ฑฐ ๊ฐ์ต๋๋ค. |
@@ -0,0 +1,95 @@
+package bridge.controller;
+
+import bridge.domain.model.Bridge;
+import bridge.domain.model.BridgeGame;
+import bridge.domain.constant.MoveCommand;
+import bridge.domain.constant.RetryCommand;
+import bridge.domain.constant.Status;
+import bridge.view.InputView;
+import bridge.view.OutputView;
+
+pub... | Java | ์ด ๋ถ๋ถ์ BridgeGame์์ ์งํํ๋ ๋ฐฉ๋ฒ์ ์์์๊น์??? |
@@ -0,0 +1,64 @@
+package bridge.view;
+
+import static bridge.view.ViewMessage.*;
+
+import bridge.domain.model.BridgeGame;
+import bridge.domain.model.GameDashboard;
+import bridge.domain.constant.Status;
+import java.util.List;
+import java.util.stream.Collectors;
+
+/**
+ * ์ฌ์ฉ์์๊ฒ ๊ฒ์ ์งํ ์ํฉ๊ณผ ๊ฒฐ๊ณผ๋ฅผ ์ถ๋ ฅํ๋ ์ญํ ์ ํ๋ค.
+ */
+pu... | Java | ๋งค๊ฐ๊ฐ์ BridgeGame์ด ์๋ GameDashBoard๋ก ๋ฐ์์ผ๋ฉด ์ด๋ ์๊น์??? |
@@ -0,0 +1,23 @@
+package bridge.view;
+
+public enum ViewMessage {
+ START_MESSAGE("๋ค๋ฆฌ ๊ฑด๋๊ธฐ ๊ฒ์์ ์์ํฉ๋๋ค."),
+ INPUT_BRIDGE_SIZE_MESSAGE("๋ค๋ฆฌ์ ๊ธธ์ด๋ฅผ ์
๋ ฅํด์ฃผ์ธ์."),
+ INPUT_MOVE_COMMAND_MESSAGE("์ด๋ํ ์นธ์ ์ ํํด์ฃผ์ธ์. (์: U, ์๋: D)"),
+ INPUT_RETRY_COMMAND_MESSAGE("๊ฒ์์ ๋ค์ ์๋ํ ์ง ์ฌ๋ถ๋ฅผ ์
๋ ฅํด์ฃผ์ธ์. (์ฌ์๋: R, ์ข
๋ฃ: Q)"),
+ RESULT_MESSAG... | Java | StringJoiner ๋ฅผ ์ฐ๋ฉด ํด๋น ๋ถ๋ถ์ ํ๋ฒ์ ํด๊ฒฐํ ์ ์๋๋ผ๊ตฌ์! |
@@ -0,0 +1,14 @@
+package step1;
+
+public class Print {
+
+ private int calculateResult;
+
+ public Print(int calculateResult) {
+ this.calculateResult = calculateResult;
+ }
+
+ public void printResult() {
+ System.out.println("calculateResult = " + calculateResult);
+ }
+} | Java | Print๊ฐ ํ๋์ ๊ณ์ฐ๊ฒฐ๊ณผ๋ฅผ ์ํ๋ก ๊ฐ์ง๋๋ก ๊ตฌํํ์
จ๋ค์!
๋ง์ฝ Print๋ฅผ ํตํด ๋ ๋ค๋ฅธ ๊ณ์ฐ ๊ฒฐ๊ณผ๋ฅผ ์ถ๋ ฅํด์ผํ๋ค๋ฉด ์ด๋ป๊ฒ ๋ ๊น์? Print๋ผ๋ ํด๋์ค์ ์ฑ
์์ ๋ง๋ ์ญํ ์ ํ๊ณ ์๋ค๊ณ ๋ณผ ์ ์์๊น์? |
@@ -0,0 +1,50 @@
+package step1;
+
+import java.util.List;
+
+public class Calculator {
+
+ private CalculatorResource calculatorResource;
+
+ public Calculator(String stringCalculatorSentence) {
+ this.calculatorResource = new CalculatorResource(stringCalculatorSentence);
+ }
+
+ public int calculat... | Java | java์ Enum ํด๋์ค๋ฅผ ์ฌ์ฉํ๋ฉด ์ํ์ ํ์๋ฅผ ํ๊ณณ์์ ๊ด๋ฆฌํ ์ ์๋๋ฐ์!
๋งํฌ๋ฅผ ๋ณด์๊ณ ์ฐธ๊ณ ํ์
์ enum ํด๋์ค๋ฅผ ์ฌ์ฉํด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์ต๋๋ค :)
https://techblog.woowahan.com/2527/ |
@@ -0,0 +1,50 @@
+package step1;
+
+import java.util.List;
+
+public class Calculator {
+
+ private CalculatorResource calculatorResource;
+
+ public Calculator(String stringCalculatorSentence) {
+ this.calculatorResource = new CalculatorResource(stringCalculatorSentence);
+ }
+
+ public int calculat... | Java | ๋ฉ์๋์ ํ๋ผ๋ฏธํฐ์ ๊ฐ์๋ฅผ 2๊ฐ ์ดํ๋ก ๋ฆฌํฉํฐ๋งํด๋ณด๋๊ฑด ์ด๋จ๊น์?
ํด๋ฆฐ ์ฝ๋ ์ฑ
์์๋ ๋ฉ์๋์ ํ๋ผ๋ฏธํฐ ๊ฐ์๋ 0~2๊ฐ๊ฐ ์ ์ ํ๋ฉฐ 4๊ฐ ์ด์์ ๋ฌด์กฐ๊ฑด์ ์ผ๋ก ํผํด์ผํ๋ค๊ณ ์ด์ผ๊ธฐํฉ๋๋ค.
ํ๋ผ๋ฏธํฐ์ ๊ฐ์๊ฐ ๋ง์ ์๋ก ํ๋์ ๋ฉ์๋์์ ํ๋ ์ผ์ด ๋ง์์ง ์ ์๊ณ ์ฝ๋๋ฅผ ์ฝ๊ธฐ ์ด๋ ค์์ง๊ธฐ ๋๋ฌธ์
๋๋ค :) |
@@ -0,0 +1,50 @@
+package step1;
+
+import java.util.List;
+
+public class Calculator {
+
+ private CalculatorResource calculatorResource;
+
+ public Calculator(String stringCalculatorSentence) {
+ this.calculatorResource = new CalculatorResource(stringCalculatorSentence);
+ }
+
+ public int calculat... | Java | `๊ณ์ฐ๊ธฐ`๊ฐ ํ๋์ `๊ณ์ฐ๊ธฐ ์์`์ ์ํ๋ก ๊ฐ์ง๋๋ก ๊ตฌํํ์
จ๋ค์ !
๋ง์ฝ ๊ณ์ฐ๊ธฐ๊ฐ ๋ ๋ค๋ฅธ ์์์ ๋ํ ๊ณ์ฐ์ ํด์ผํ๋ ์ํฉ์ด๋ผ๋ฉด ์ด๋ป๊ฒ ํด์ผํ ๊น์?
ํ์ฌ ์ํ์์๋ ํ๋์ ๊ณ์ฐ๊ธฐ ๊ฐ์ฒด๊ฐ ํ๋์ ์์๋ง์ ๊ณ์ฐํ ์ ์๋๋ฐ์.
์ฌ๋ฌ ๊ฐ์ ์์์ ๋ํด ๊ณ์ฐํ ์ ์๋๋ก ๊ฐ์ ํด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์ต๋๋ค :) |
@@ -0,0 +1,64 @@
+package step1;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class CalculatorResource {
+
+ private String sentence;
+ private String[] sentenceArray;
+ private List<Integer> numberArray;
+ private List<String> operatorArray;
+
+ public List<Integer> getNumberArray() ... | Java | CalculatorResource ํด๋์ค ๋ค์ด๋ฐ์ ์ถ์ํ๊ฐ ๋ง์ด ๋์ด ์๋ ํด๋์ค ๋ช
์
๋๋ค.
ํด๋์ค ๋ด๋ถ๋ฅผ ๋ณด์ง ์์ผ๋ฉด ์ด๋ค ์ํ๋ฅผ ๊ฐ์ง๊ณ ์๋์ง ์ ์ถํ๊ธฐ ํ๋ญ๋๋ค. ์กฐ๊ธ ๋ ๊ตฌ์ฒด์ ์ธ ํด๋์ค ๋ช
์ ๋ง๋ค์ด๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์์ :) |
@@ -0,0 +1,64 @@
+package step1;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class CalculatorResource {
+
+ private String sentence;
+ private String[] sentenceArray;
+ private List<Integer> numberArray;
+ private List<String> operatorArray;
+
+ public List<Integer> getNumberArray() ... | Java | ๊ฐ์ฒด๊ฐ ์์ฑ๋ ์ดํ์ ๋ ๋ณ์๋ ์ฌ์ฉ๋์ง ์๊ณ ์๋ค์! ๐ค
๊ทธ๋ ๋ค๋ฉด ๊ณ์ฐ๊ธฐ ์์ํด๋์ค์์ sentence์ sentenceArray๋ฅผ ์ํ๋ก ๊ฐ์ง๊ณ ์์ ํ์๊ฐ ์์๊น์? |
@@ -0,0 +1,24 @@
+package nextstep.security.authorization;
+
+import nextstep.security.authentication.Authentication;
+import org.aopalliance.intercept.MethodInvocation;
+import org.springframework.aop.support.AopUtils;
+
+import java.lang.reflect.Method;
+
+public class SecuredAuthorizationManager implements Authoriza... | Java | Spring AOP ํ๊ฒฝ์์๋ ๋์ ๊ฐ์ฒด๊ฐ ํ๋ก์ ๊ฐ์ฒด๋ก ๊ฐ์ธ์ง ์ ์๊ธฐ ๋๋ฌธ์,
`method.getAnnotation(Secured.class)`๋ฅผ ์ฌ์ฉํ๋ฉด ์ค์ ๊ตฌํ์ฒด์ ๋ฉ์๋์์ ์ ์ธ๋ `@Secured` ์ด๋
ธํ
์ด์
์ ์ฐพ์ง ๋ชปํ ๊ฐ๋ฅ์ฑ์ด ์์ต๋๋ค.method.getAnnotation ์ AopUtils.getMostSpecificMethod() ์ด๋ค ์ฐจ์ด๊ฐ ์์๊น์? ๐ |
@@ -0,0 +1,11 @@
+package nextstep.security.authorization;
+
+import jakarta.servlet.http.HttpServletRequest;
+import nextstep.security.authentication.Authentication;
+
+public class AuthenticatedAuthorizationManager implements AuthorizationManager<HttpServletRequest> {
+ @Override
+ public AuthorizationDecision ... | Java | `AuthenticatedAuthorizationManager`๋ ์ธ์ฆ๋ ์ฌ์ฉ์์ ์ ๊ทผ์ ํ์ฉํ ์ง ์ฌ๋ถ๋ฅผ ๊ฒฐ์ ํ๋ ์ธ๊ฐ(Authorization) ์ญํ ์ ํ๋๋ฐ์,
๋๋ฌธ์ `request.setAttribute("username", authentication.getPrincipal());` ๋ ์ธ๊ฐ์ ์ฑ
์์ ๋ฒ์ด๋ ๋์์ผ๋ก ๋ณด์ฌ์ง๋๋ค. ๊ฐ์ ํด ๋ณด๋ฉด ์ข์ ๊ฒ ๊ฐ์์. ๐ |
@@ -1,13 +1,20 @@
package nextstep.app.ui;
+import jakarta.servlet.http.HttpServletRequest;
import nextstep.app.domain.Member;
import nextstep.app.domain.MemberRepository;
+import nextstep.app.exception.UserNotFoundException;
+import nextstep.security.authentication.Authentication;
import nextstep.security.author... | Java | `request.setAttribute`๋ฅผ ํตํด ๊ฐ์ ์ ์ฅํ๊ณ ๋ค์ ๊ฐ์ ธ์ค๋ ๊ณผ์ ์ ๊ฑฐ์น์ง ์๊ณ ,
SecurityContext์์ ์ง์ ๊ฐ์ ธ์ฌ ์ ์์ ๊ฒ ๊ฐ๋ค์ ๐ |
@@ -0,0 +1,20 @@
+package nextstep.security.authorization;
+
+import jakarta.servlet.http.HttpServletRequest;
+import org.springframework.http.HttpMethod;
+
+public class MvcRequestMatcher implements RequestMatcher {
+
+ private final HttpMethod method;
+ private final String uri;
+
+ public MvcRequestMatcher(... | Java | `matches()`๋ ์ ๊ท์ ๋งค์นญ์ ์ํํ๋ ๋ฉ์๋ ์ด๋ฏ๋ก, ๋จ์ํ ๋ฌธ์์ด ๋น๊ต์๋ ์ ํฉํ์ง ์์ ๊ฒ ๊ฐ์์.
HTTP ๋ฉ์๋(GET, POST ๋ฑ)๋ ์ ๊ท์์ด ํ์ํ์ง ์์ผ๋ฏ๋ก, `equalsIgnoreCase()`๋ฅผ ์ฌ์ฉํ๋ฉด ์ฑ๋ฅ ๋ฉด์์๋ ๋ ํจ์จ์ ์ผ ๊ฒ ๊ฐ๋ค์ ๐ |
@@ -0,0 +1,25 @@
+package nextstep.security.authorization;
+
+import jakarta.servlet.http.HttpServletRequest;
+import nextstep.security.authentication.Authentication;
+
+import java.util.List;
+
+public class RequestAuthorizationManager implements AuthorizationManager<HttpServletRequest> {
+
+ private final List<Req... | Java | `orElseGet()` ์ `orElse()`๋ ์ด๋ค ์ฐจ์ด๊ฐ ์์๊น์? ๐ |
@@ -11,29 +11,29 @@
import org.springframework.aop.framework.AopInfrastructureBean;
import org.springframework.aop.support.annotation.AnnotationMatchingPointcut;
-import java.lang.reflect.Method;
-
public class SecuredMethodInterceptor implements MethodInterceptor, PointcutAdvisor, AopInfrastructureBean {
p... | Java | `@Secured` ์ด๋
ธํ
์ด์
์ด ์กด์ฌํ๋์ง ๋ค์ ๊ฒ์ฌํ๊ณ ์๋๋ฐ์,
์ด๋ฏธ `AnnotationMatchingPointcut`์ ํตํด `@Secured`์ด ๋ถ์ ๋ฉ์๋๋ง ์ธํฐ์
ํธํ๋๋ก ์ค์ ๋์ด ์๊ธฐ ๋๋ฌธ์,
`if (!method.isAnnotationPresent(Secured.class))` ๋ถ๋ถ์ ์ ๊ฑฐํด๋ ๋ ๊ฒ ๊ฐ์์. ๐ |
@@ -17,6 +17,7 @@
import java.util.Set;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
@SpringBootTe... | Java | ํ
์คํธ ์ค๋ช
์ด ์๋ชป๋์ด ์๋ค์ ๐ |
@@ -11,29 +11,29 @@
import org.springframework.aop.framework.AopInfrastructureBean;
import org.springframework.aop.support.annotation.AnnotationMatchingPointcut;
-import java.lang.reflect.Method;
-
public class SecuredMethodInterceptor implements MethodInterceptor, PointcutAdvisor, AopInfrastructureBean {
p... | Java | > ๊ณ ๋ฏผํ ๋ถ๋ถ
> Q. securedAuthorizationManager ๋ก์ง์ด ์ํ๋๋ ์์ ์ด SecuredMethodInterceptor ์์์ ์ํ๋๋ ๊ฒ์ด ๋ง๋์ง ๊ถ๊ธํฉ๋๋ค.
A. AOP๋ฅผ ํตํด ๋ฉ์๋๊ฐ ์คํ๋๊ธฐ ์ ์ ์ธ๊ฐ(Authorization) ๋ก์ง์ ์ํํ๋๋ก ์ ๊ตฌํํด ์ฃผ์
จ๋ค์! ๐
ํน์ ๊ณ ๋ฏผํ๋ ๋ถ๋ถ์ด ์์ผ์
จ๋ค๋ฉด ๋จ๊ฒจ์ฃผ์๋ฉด ์ ๋ ๊ณ ๋ฏผํด๋ณด๊ณ ๋ต๋ณ ๋๋ฆฌ๋๋ก ํ๊ฒ ์ต๋๋ค ๐ |
@@ -0,0 +1,24 @@
+package nextstep.security.authorization;
+
+import nextstep.security.authentication.Authentication;
+import org.aopalliance.intercept.MethodInvocation;
+import org.springframework.aop.support.AopUtils;
+
+import java.lang.reflect.Method;
+
+public class SecuredAuthorizationManager implements Authoriza... | Java | AopUtils.getMostSpecificMethod() ๋ก ์ค์ ๋ฉ์๋์ ์ ๋ณด๋ฅผ ๊ฐ์ ธ์ฌ ์ ์๊ฒ ๋ค์!
๊ทธ๋๋ ์ด๋
ธํ
์ด์
์ ๋ณด๋ฅผ ๊ฐ์ ธ์ค๋ ค๋ฉด getAnnotation ๋ฉ์๋๋ ๊ณ์ ์ฌ์ฉํด์ผ ํ๋ ๊ฑฐ์ฃ ?
์์ ํด๋ดค๋๋ฐ ๋ง๋ ๋ฐฉ์์ธ์ง ํ์ธ ๋ถํ๋๋ฆฝ๋๋ค! |
@@ -0,0 +1,20 @@
+package nextstep.security.authorization;
+
+import jakarta.servlet.http.HttpServletRequest;
+import org.springframework.http.HttpMethod;
+
+public class MvcRequestMatcher implements RequestMatcher {
+
+ private final HttpMethod method;
+ private final String uri;
+
+ public MvcRequestMatcher(... | Java | ์ ๊ฐ ์ matches๋ฅผ ์ฌ์ฉํ๋์ง ๋ชจ๋ฅด๊ฒ ๋ค์.. ๊ผผ๊ผผํ ๋ฆฌ๋ทฐ ๊ฐ์ฌํฉ๋๋ค ๐ |
@@ -11,29 +11,29 @@
import org.springframework.aop.framework.AopInfrastructureBean;
import org.springframework.aop.support.annotation.AnnotationMatchingPointcut;
-import java.lang.reflect.Method;
-
public class SecuredMethodInterceptor implements MethodInterceptor, PointcutAdvisor, AopInfrastructureBean {
p... | Java | ๋ค๋ฅธ AuthorizationManager ๋ค์ Filter์์ ์ธ๊ฐ ๋ก์ง์ด ์ํ๋๋๋ฐ ์ด์ ๋ค๋ฅด๊ฒ AOP๋ฅผ ํตํด ์ํ๋๋ ๋ก์ง์ด์ด์ ๋ง๋ ๋ฐฉ์์ธ์ง ๊ถ๊ธํ์์ต๋๋ค..! ๋ต๋ณ ๊ฐ์ฌํฉ๋๋ค ๐ |
@@ -0,0 +1,25 @@
+package nextstep.security.authorization;
+
+import jakarta.servlet.http.HttpServletRequest;
+import nextstep.security.authentication.Authentication;
+
+import java.util.List;
+
+public class RequestAuthorizationManager implements AuthorizationManager<HttpServletRequest> {
+
+ private final List<Req... | Java | orElse๋ก ๊ตฌํํ๊ฒ ๋๋ฉด, null์ด ์๋์ด๋ AuthorizationDecision ๊ฐ์ฒด ์์ฑ ๋ก์ง์ ์ํ๋ ๊ฒ ๊ฐ๋ค์.
orElseGet์ผ๋ก ์์ ํ์ต๋๋ค! |
@@ -0,0 +1,24 @@
+package nextstep.security.authorization;
+
+import nextstep.security.authentication.Authentication;
+import org.aopalliance.intercept.MethodInvocation;
+import org.springframework.aop.support.AopUtils;
+
+import java.lang.reflect.Method;
+
+public class SecuredAuthorizationManager implements Authoriza... | Java | method.getClass()๋ Method ํด๋์ค ์์ฒด์ ํ์
์ ๋ฐํํ๋ฏ๋ก, ์ฌ๋ฐ๋ฅธ ๋์ ํด๋์ค(Target Class)๋ฅผ ๊ฐ์ ธ์ฌ ์ ์์ต๋๋ค.
invocation.getThis()๋ฅผ ์ฌ์ฉํ์ฌ ์ค์ ๋์ ๊ฐ์ฒด(Target Object)์ ํด๋์ค๋ฅผ ๊ฐ์ ธ์ค๋ ๊ฒ์ด ์ข๊ฒ ๋ค์ ๐
`Class<?> targetClass = AopUtils.getTargetClass(invocation.getThis());` |
@@ -0,0 +1,24 @@
+package nextstep.security.authorization;
+
+import nextstep.security.authentication.Authentication;
+import org.aopalliance.intercept.MethodInvocation;
+import org.springframework.aop.support.AopUtils;
+
+import java.lang.reflect.Method;
+
+public class SecuredAuthorizationManager implements Authoriza... | Java | ๋ค ๋ง์ต๋๋ค
์ด๋
ธํ
์ด์
์ ๋ณด๋ฅผ ๊ฐ์ ธ์ค๋ ๊ฒ์ ๋์ผํ๊ฒ getAnnotation(Secured.class)์ ์ฌ์ฉํด์ผ ํฉ๋๋ค. ๐ |
@@ -11,29 +11,29 @@
import org.springframework.aop.framework.AopInfrastructureBean;
import org.springframework.aop.support.annotation.AnnotationMatchingPointcut;
-import java.lang.reflect.Method;
-
public class SecuredMethodInterceptor implements MethodInterceptor, PointcutAdvisor, AopInfrastructureBean {
p... | Java | Filter ๊ธฐ๋ฐ ์ธ๊ฐ๋ HTTP ์์ฒญ ๋จ์์์ ์ ์ฉ๋์ง๋ง,
`@Secured`๋ ๊ฐ๋ณ ๋ฉ์๋ ํธ์ถ ๋จ์์์ ๋ณด์ ๊ฒ์ฌ๋ฅผ ํด์ผ ํด์ ์ ์ ํ ๊ตฌํ ๋ฐฉ์์
๋๋ค ๐ |
@@ -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๋ก ์ง์ ํ๋๊ฒ ๋ง๋๊ฑฐ ๊ฐ์ต๋๋ค! |
@@ -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 | ์ ํจ์ฑ ๊ฒ์ฌ๋ฅผ ๋ชจ๋ ์ํํ๊ธฐ ์ํด์ ํ๋์ ๋ฉ์๋๋ฅผ ํธ์ถํจ์ผ๋ก์ ๊ฐ ์ ํจ์ฑ ๊ฒ์ฌ๊ฐ ์ํ๋๋๋ก ์์ฑํด๋ณด์์ต๋๋ค! |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.