Code Monkey home page Code Monkey logo

git-dash's Introduction

Hey, I'm Jake ๐Ÿ‘‹๐Ÿป

I'm a freelance web/app developer available for hire.

I have expertise with PHP, Javascript, Typescript, and CSS. I've worked with many tools/frameworks including Laravel, React & React Native, Angular, Vue, SCSS, Tailwind, and many others.

I'm a full-stack developer, meaning I can help you build something fully functional that looks and feels great. Get in touch and let's work together!

If you want to see my full experience, please check my LinkedIn. If you want to see some code, you're in the right place!

You can also visit my website, here.

git-dash's People

Contributors

jakewtaylor avatar jono20201 avatar mbrookson avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

git-dash's Issues

Show whether a PR is a draft

Often draft PRs do not require properly reviewing yet, so it would be nice be able to tell if a PR is a draft vs ready to review.

Show the source and target branches for a PR

It would be useful to show the source and target branches, with an arrow indicating the merge direction for a PR (similar to how GitHub does).

This is particularly useful when you have the same named PR for a hotfix, which has been PRd into both master and develop.

Mocked up this as a suggestion.

image

Show more repositories

When you have a lot of repositories available in your account you are unable to see them all due to the query being used. Therefore some people cannot select the repos they want to see.

Would be good to add paging, or even be more clever about which repos are shown; perhaps order by last committed to for example?

The 'pill' style selector might need rethinking to improve the UX of selecting repos when there are a lot to choose from.

Show build status each PR

Would be useful to see the build status. This if a build status changes from when you last looked, it indicates there have been changes made to the code and potentially you need to look at the PR again.

Show status of a change request

Try to show the user that there have been changes on a PR they requested changes on.

This gql should help

{
  repository(owner: "teampickr", name: "wfm") {
    pullRequest(number: 9) {
      reviewThreads(last: 100) {
        nodes {
          id
          isResolved
          comments(last: 100) {
            nodes {
              outdated
              body
            }
          }
        }
      }
      reviews(last: 100) {
        nodes {
          id
          createdAt
          state
          commit {
            oid
            authoredDate
          }
          author {
            login
            avatarUrl
          }
        }
      }
    }
  }
}

An unreviewed change has been made if isResolved is false, and there are any comments where outdated is true.

Issue clickable area

Would potentially be nice for the area to open the PR was the entire of the card instead of just the title.

Add favicon

This bad boy needs a logo. Will consider anything, hit me! ๐Ÿ‘

Show build status for PRs

This query should get the data needed:

{
  repository(owner: "teampickr", name: "admin-ui") {
    id
    pullRequests(first: 100, states: OPEN) {
      nodes {
        commits(last: 1) {
          nodes {
            commit {
              status {
                state
                contexts {
                  state
                  targetUrl
                  description
                  context
                }
              }
            }
          }
        }
      }
    }
  }
}

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.