Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solved the task #2741

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

natalia-matash
Copy link

No description provided.

@@ -6,6 +6,25 @@
*/
function transformState(state, actions) {
// write code here
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove all comments

Comment on lines 9 to 10
for (const action of actions) {
if (action.type === 'clear') {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. use object destructing for action
  2. it'd much better to use switch case here instead of if
  3. it is a good practice when you add a default behavior for switch statement. Yet, if you don't have such one - just throw an Error with text like "unexpected action"

Copy link

@anastasiia-tilikina anastasiia-tilikina left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost done

for (const action of actions) {
const { type, extraData, keysToRemove } = action;

switch (true) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't use true in switch statement. use type instead

}

default:
return 'Unexpected acrion';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return 'Unexpected acrion';
return 'Unexpected action';

Copy link

@DarkMistyRoom DarkMistyRoom left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants