Giter Club home page Giter Club logo

trinary's People

Contributors

davidbarca25 avatar dependabot[bot] avatar mecoccaro avatar otech47 avatar ovifer13 avatar rishkwal avatar sofiaromorales avatar vdegandesa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

22388o

trinary's Issues

Create design mock for ProjectDetailPage - Payments

Notes

  • Consider payments in and payments out?
  • Allocations with a date_paid that is not null might appear here
  • Sum of all allocations with the same payment_id should not be greater than the amount of the Payment

Build header component

  • Refactor svg in the login page to header component.

  • Export again with out the lettering just the background

  • Export logo by itself

  • Upload both to S3

  • Full width responsive

Create a design mock for AddAllocation

  • Allow for creating an allocation without a payment

Form

  • Number field for amount
  • Date field for start_date
  • Date field for end_date (optional)
  • Selection field for rate_type (options: max_hours, recurring_month, recurring_weeks)
  • Number field for rate_unit (optional)
  • Checkbox for active (default: true)

Implement Rates into the data model

For now we have been considering hourly_rate/weekly_rate on Contributors and rate_unit and rate_type on Allocations but I think to keep some flexibility in the data model we should instead abstract this away into a new table

Notes/Specs/Examples

Consider 2 example scenarios:

  1. Track that a contributor is hitting a monthly target # of hours
  2. Track whether a contributor is approaching a maximum # of hours where another allocation would be needed

https://www.figma.com/file/qgGWXmprU7vTv7guzWzvML/Project-Trinary?node-id=78%3A39

Rate {
    hourly_rate: String,
    type: String,
    active: Int,
    contributor_id: Int
}

Sample

Project = {
    name: "Hashr8",
    allocations: [
        {
            date_started: "2020-11-01",
            date_ended: "2020-11-08",
            payment: {
                amount: "10000",
                date_paid: "2020-10-01"
            },
            contributor: {
                name: "Danny Allen",
                githubHandle: "dannya",
            },
            rate: {
                hourly_rate: "83",
                type: "max_hours"
            },
            amount: "2500",
            date_paid: null,
        },
        {
            date_started: "2020-11-08",
            date_ended: "2020-11-30",
            payment: {
                amount: "10000",
                date_paid: "2020-10-01"
            },
            contributor: {
                name: "Danny Allen",
                githubHandle: "dannya",
            },
            rate: {
                hourly_rate: "83",
                type: "max_hours"
            },
            amount: "1500",
            date_paid: null,
        }
    ],
}

Project = {
    name: "WorkSTEPS",
    allocations: [
        {
            date_started: "2020-10-01",
            date_ended: "2020-10-30",
            payment: {
                amount: "15000",
                date_paid: null
            },
            contributor: {
                name: "Mariano Paulin",
                githubHandle: "marianopaulin",
            },
            rate: {
                hourly_rate: "30.375",
                type: "full_time",
            },
            amount: "5103",
            date_paid: null,
        },
        {
            date_started: "2020-10-01",
            date_ended: "2020-10-30",
            payment: {
                amount: "15000",
                date_paid: null
            },
            contributor: {
                name: "Nico Rivadeineria",
                githubHandle: "nicoriva",
            },
            rate: {
                hourly_rate: "33.75",
                type: "full_time",
            },
            amount: "5670",
            date_paid: null,
        }
    ],
}

Reference

Contributor {
    name
    rates: [
        {
            type: 'hourly',
            amount: 25,
            units: 'USD'
        },
        {
            type: 'weekly',
            amount: 1000,
            units: 'USD'
        },
        {
            type: 'monthly',
            amount: 4000,
            units: 'USD'
        },
        {
            type: 'max_hours',
            amount: 50
        },
    ]
}

Build a survey to gauge clients' user experience

Survey needs to highlight what clients do when they work with us(more specifics = better; what mediums do they use while working with us? What apps/services, how do they get in contact?), how they feel while doing so (are they frustrated? annoyed? content?), and what they are thinking when they go through these steps (maybe they wish there was a faster way to fulfill a task, or an easier way, or they might have in mind a better way of conducting these actions between parties).

The more specific information they provide the better we can improve the experience. Although, a super specific survey can be a turn-off to some individuals.

Force date format

Force inputs of date type in the graphQL mutations have the format YYYY-MMM-DD

Create a design mock for the client list page

Empty state

  • When there are 0 clients, the only thing that should show is an Add Client button
  • After you add your first client, they appear in the list, and you can continue adding clients with the Add Client button
  • When you click on a client in the list, then you go to the client detail page () which contains a project list (#7)

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.