GithubHelp home page GithubHelp logo

teamboard's Introduction

Teamboard

Teamboard is a tool to help you aggregate and visualize metrics about your development team.

Teamboard

Built on top of React, lowdb, and styled-components. Architecture inspired by Dashboard; widget design inspired by Geckoboard.

Setup

  1. Download or clone the repository.
  2. Install the dependencies with yarn.
  3. Create your dashboard; for an example, see src/dashboards/index.js.
  4. Run yarn start and go to http://localhost:3000.

Available widgets

Example

import LocalTime from "../components/widgets/local-time";

<LocalTime title="Costa Rica" timeZone="America/Costa_Rica" />

Props

  • title: widget title (default: "Local time")
  • interval: refresh interval in milliseconds (default: 10000)
  • timeZone: the time zone to use, must be a valid name from IANA time zone database such as "America/New_York" (default: the runtime’s default time zone)
  • showDate: indicates if the date should be shown below the time (default: true)

Example

import GithubSearchCount from "../components/widgets/github/search-count";

<GithubSearchCount
  id="gh-open-prs"
  title="Open pull requests"
  authKey="github"
  query="org:facebook is:pr is:open"
/>

Props

  • id: widget ID to be used if storing data locally (default: none)
  • interval: refresh interval in milliseconds (default: 60000)
  • title: widget title (default: "GitHub search count")
  • authKey: credential key, defined in auth.js
  • query: GitHub query
  • inverseTrend: inverses indicator so that a downward trend will be displayed in green (default: false)

Example

import JiraIssueCount from "../components/widgets/jira/issue-count";

<JiraIssueCount
  id="j-sprint-progress"
  title="Sprint progress"
  authKey="jira"
  url="https://my-company.atlassian.net"
  query="type != Bug AND sprint in openSprints()"
  groupBy={issue => issue.status.statusCategory.name}
  groups={[
    { name: "To Do", color: "red", value: 0 },
    { name: "In Progress", color: "yellow", value: 0 },
    { name: "Done", color: "green", value: 0 }
  ]}
  countBy={issue => issue.story_points}
/>

Props

  • id: widget ID to be used if storing data locally (default: none)
  • interval: refresh interval in milliseconds (default: 60000)
  • title: widget title (default: "Jira issue count")
  • authKey: credential key, defined in auth.js
  • url: Jira server URL (e.g. https://my-company.atlassian.net)
  • query: Jira query in JQL
  • groupBy: specify which field to group the issues by (default: none)
  • groups: provide an array of groups (default: none)
  • countBy: specify which field to count the issues by (default: none)
  • inverseTrend: inverses indicator so that a downward trend will be displayed in green (default: false)

Example

import JiraSprintDaysRemaining from "../components/widgets/jira/sprint-days-remaining";

<JiraSprintDaysRemaining
  id="j-sprint-days"
  title="Sprint days left"
  authKey="jira"
  url="https://my-company.atlassian.net"
  boardId={42}
/>

Props

  • interval: refresh interval in milliseconds (default: 60000)
  • title: widget title (default: "Jira issue count")
  • authKey: credential key, defined in auth.js
  • url: Jira server URL (e.g. https://your-company.atlassian.net)
  • boardId: Jira board ID (e.g. 42)
  • useBusinessDays: counts business days instead of calendar days (default: true)

teamboard's People

Contributors

apaunchev avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

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.