Created
June 23, 2019 14:35
-
-
Save WDever/ba12fb213fd137c3a6dc8d45c52898ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const board = | |
draft.board[ | |
draft.board.findIndex(board => board.pk === action.meta.board_pk) | |
]; | |
Object.assign( | |
board.comment[ | |
board.comment.findIndex(comment => comment.pk === action.payload.pk) | |
], | |
action.payload, | |
); | |
// first | |
// 위와 동일한 board | |
board.comment[ | |
board.comment.findIndex(comment => comment.pk === action.payload.pk) | |
] = { | |
...action.payload, | |
...board.comment[ | |
board.comment.findIndex(comment => comment.pk === action.payload.pk) | |
] | |
} | |
// second | |
// 동일한 board | |
board.comment[ | |
board.comment.findIndex(comment => comment.pk === action.payload.pk) | |
] = { | |
...action.payload, | |
나머지 모든 | |
} |
velopert
commented
Jun 23, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment