Git Product home page Git Product logo

Comments (1)

Mec-iS avatar Mec-iS commented on September 25, 2024

I write down some notes to develop the timeLeft() function:

pseudo code:

import moment.js

var statesArray = {
     'New' : 'left to be accepted',
     'Discussion' : 'left to start verification',
     'Frozen' : 'left to finish verification',
     'Voting' : 'left for voting this issue'
}

function timeLeft(timestamp, interval, state)
       start = moment(timestamp) // create moment() from timestamp
       end = start.add(interval)  // add interval to moment
       difference = end.diff(start)      // return difference
       return difference.toString() + ' ' + statesArray[state]

timeLeft( issue.created, issue.admission_time, 'New' ) // function call for New state
timeLeft( issue.accepted, issue.discussion_time, 'Discussion' ) // function call for Discussion state
timeLeft( issue.half_frozen, issue.verification_time, 'Frozen' ) // function call for Frozen state
timeLeft( issue.fully_frozen, issue.voting_time, 'Voting' ) // function call for Voting state

probably need to format the time string and check with isValid().
Before returning i would parse it in:
minutes if difference < 1h , or
hours if difference < 1d, or
days if difference > 2d

from angular-lqfb-redesign.

Related Issues (10)

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.