Giter Site home page Giter Site logo

Comments (2)

ericelliott avatar ericelliott commented on August 14, 2024

Nice work!

I like the UI.

On the topic of unit tests, it can be very hard to unit test apps that are too tightly coupled. In particular, unit tests tend to work best with pure functions:

  1. Given the same input, always return the same output
  2. No side-effects

Pure functions aren't only good to make unit testing easier though, they also help you decouple your business logic from side-effects like network access and drawing the UI. For that reason, I like to isolate my app's business logic from network, storage, and drawing concerns.

Take this function for example:

  recalculateScoreTotal () {
    const userAsks = this.state.userAsks
    let scoreTotal = 0
    Object
      .keys(userAsks)
      .map(key => {
        if (userAsks[key].status === 'Accepted') {
          scoreTotal += 1
        } else if (userAsks[key].status === 'Rejected') {
          scoreTotal += 10
        }
        this.setState({
          scoreTotal
        })
        db.updateScoreTotal(this.state.uid, scoreTotal)
      })
  }

If you split the score calculation out, it becomes trivially easy to unit test:

const getScore = asks => asks.reduce((
  score, { status }
) => {
  switch (status) {
    case 'Accepted': return score + 1;
    case 'Rejected': return score + 10;
    default: return score;
  }
}, 0);

Consider implementing your next project using the Redux architecture to isolate business logic from view updates and side-effects.

from rejection.

thoragio avatar thoragio commented on August 14, 2024

@ericelliott Awesome! Thanks for the example. I see what you mean now, and I will definitely try to this going forward.

I am already planning to implement my next project using Redux.

Thanks again for all of your input. It's greatly appreciated!

from rejection.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.