Skip to content

lisaparma/ScrambledEggs-SprintPlanning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scrambled Eggs - Sprint Planning

React.js single-page app made (with a lot of love) to help Scrambled Eggs team to organize sprints without lose too much time in very very very difficult calculus (like summary and percentage)!

GH Page

Available on this fantastic github page! :octocat:

Features

  • ✏️ Edit

    In every group you can add a mate and delete already in mate.

  • 📷 Download as PNG

    You can save all page as PNG.

    This feature in made with html2canvas library that has some problem to render icon so you will see beautiful squares instead of icons. This is considered a feature inside the feature obviously. 🤷‍♀️

  • ⬆️ Upload JSON

    You can upload your json file with all the information about your team!

    The file has to have with this structure:

    {
      "teamName": "DreamTeam",
       "date": "1855-2-19",    
       "groups": {      
           "group1": {
               "name": "Front-end",
               "mates": ["marioID", "carlID"],
               "emergency": 20
           },
           "group2": {
               "name": "Back-end",
               "mates": ["luigiID", "annaID"],
               "emergency": 10
           }
        },
       "people": {
           "marioID": {
               "name": "Mario",
               "d": 10,
               "h": 0,
               "efficiency": 90
            },
            "carlID": {
                "name": "Carl D.",
                "d": 9,
                "h": 4,
                "efficiency": 80
            },
            "luigiID": {
                "name": "Luigi",
                "d": 10,
                "h": 0,
                "efficiency": 70
            },
            "annaID": {
                "name": "Anna",
                "d": 8,
                "h": 0,
                "efficiency": 80
            }
        }
    }
    
    Properties Required Default value
    teamName Optional DreamTeam
    date Optional Today's date
    groups Optional A single group with all the people
    people Required