Giter Site home page Giter Site logo

googlechrome / chromium-dashboard Goto Github PK

View Code? Open in Web Editor NEW
628.0 628.0 360.0 48.13 MB

Chrome Status Dashboard

Home Page: https://www.chromestatus.com

License: Apache License 2.0

JavaScript 35.66% Python 56.07% Ruby 0.03% Shell 0.24% HTML 2.01% SCSS 0.66% Dockerfile 0.15% TypeScript 3.89% CSS 1.30%
chrome dashboard features metrics samples web

chromium-dashboard's People

Contributors

aglaforge avatar beaufortfrancois avatar crypticwizard avatar cwilso avatar danielryansmith avatar dependabot[bot] avatar dlaliberte avatar ebidel avatar foolip avatar jcscottiii avatar jeffposnick avatar jpchase avatar jpmedley avatar jrobbins avatar jrobbins-at-chromium avatar jstenback avatar jyasskin avatar kevinshen56714 avatar kyleju avatar liyangguang avatar mathiasbynens avatar maxh avatar mdittmer avatar phistuck avatar pingren avatar rbyers avatar sethladd avatar shivamag00 avatar spectre-ak avatar yanndago avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

chromium-dashboard's Issues

New more interactive UI

There's been a few ideas around a more rich visualization. Also filtering and viewing the standardization side or the implementation side.

If anyone is interested, here would be a good place to throw out some ideas of what we could do and how to do it.

RSS feeds and email notifications

Chromium Dashboard users should be able to 1) sign up for emails or 2) subscribe to RSS feeds for changes to:

  • P0: Everything on the dashboard (analogous to email notifications on the current spreadsheet)
  • P1: Specific entries (e.g. someone might only care about Shadow DOM)
  • P2: Categories (e.g. someone might only care about Web Components)

P3: Clicking anywhere on a feature's box should expand the box

Right now, the feature view is only expanded if you click on the feature's name or category. Clicking anywhere on the box should open it.

To close the box, the right behavior is less clear to me. The current behavior seems fine, but users could be confused that clicking on the description twice doesn't open and then close the box. For that reason, I think we should make the "close box" click target bigger too.

Add milestone / status separators in scroll list

Right now when you click on M29, the first feature that landed in M29 appears at the top of the list. But it's hard to tell where the last M29 feature is and the M28 features start.

It'd be good to break up the list like this:

...
--- 29 ----
Feature name1
Feature name2
--- 28 ----
Feature name3
...

P1: Key should better explain what colors mean

[ green dot ] \t low compatibility risk \t what this means for web dev \t what this means for vendors

[ red dot ] \t high compatibility risk \t what this means for web dev \t what this means for vendors

P1: Safari is broken

I'm seeing a few weird rendering bugs in Safari.

Issues:

  1. the filtering search box doesn't work. The filtered feature count updates, but the list is not re-rendered properly.
  2. toggling a feature opens it, where the rest of the template is activated (e.g. it's under <template if="{{open}}">. Safari refuses to render that content when open == true.
  3. "In development" should be selected on the left nav when the page loads.

...everything is working correctly in Webkit Nightly and FF.

Also, when the inspector is open everything renders fine. Weird!

Make the categories links to filter on

For example, in the "Web Animations/Graphics" title at the top of a chip, I would like to click "Graphics" and get a filtered list of all of the Graphics features.

Move "Launch Bug" link

image

Currently, the launch bug link is positioned immediately below the "Implementation Status" header. This is confusing because it reads as "Implementation Status: Launch Bug."

It should be moved to the end of the list, so that the actual implementation status appears first in the list, and reads as, for example: "Implementation Status: Started."

P2: Filtering should rerender first feature of milestone labels

Because of the way these labels are generated, it's possibly that a feature is incorrectly categorized under a version. The labels are turned on for the very first feature of a milestone, but filtering changes this list.

screen shot 2013-08-07 at 8 10 02 pm

In the example, template is chrome 26, but it's labeled under 27

Tagline sounds strange.

"Chromium Dashboard: a status of what we're up to" sounds strange to my eyes. :)

How about cutting it to "what we're up to"?

P3: Generate launch tracking bugs

From https://code.google.com/p/support/wiki/IssueTracker#Issue_entry :

The following fields can be pre-populated with a value supplied in the URL. Using links with these query parameters present allows you to guide end-users to enter an issue that is tailored to a specific need. Usually defining a template and specifying just a template value is better than specifying other values in a URL. The user must still review, edit, and submit the form.

Form field | URL query parameter | Values
Template | template | Name of a defined template in this project
Summary | summary | Initial summary string
Description | comment | Prompt text to show in issue description area
Status | status | Initial status value
Owner | owner | Username of initial issue owner
CC | cc | List of users to CC
Labels | labels | Comma-separated list of initial label values
Branch | branch | Initial branch path to use for code review requests

template : OWP Launch Tracking
summary : {feature description}
comment : defined here
status : Started
owner : {first owner email address}
cc : {other owner email addresses}
labels : I think this will be filled in by the template
branch : n/a

Example:
https://code.google.com/p/chromium/issues/entry?template=OWP%20Launch%20Tracking&summary={{feature.summary}}&status=Started&[email protected]&comment=body%20of%20intent%20template

What these look like in the wild is something like:
https://code.google.com/p/chromium/issues/detail?id=243345

a11y: Items in the feature list aren't focusable.

Tabbing through the document should eventually land me on the clickable feature list. It currently doesn't, as each item is just a flat <div>. I'd suggest adding "tabindex='0'" to each element that you expect folks to interact with (or changing them to use something which is natively focusable, like <a> or <button>).

As a second step, it would be good to ensure that they're interactwithable (yes, that's a word now) via the keyboard. :)

Thanks!

-mike

P3: Better aggregate "citizenship" view of feature colors

The spreadsheet is a cluttered mess, but the one thing it has over this replacement is that it's easy to visualize the citizenship of the whole project at a glance, because you can see so many green/red cells and if you squint you get a good overall feel--kind of like how a sparkline can help you understand general trends even if the specific data points are too small to understand.

We should figure out how to add an aggregate view to the new dashboard.

Find sane ordering of features

The best ordering would correspond to the column on the left (ie so "started" features appear first), but we might do alphabetical because it's easier to implement.

P0: Make the left column an index of location in the scroll list

image

Items on the left (under "Builds") are not really builds, but a mix of implementation status and builds, which can be confusing. For example, users might expect clicking on "28 Stable" to show all features in Stable, but it only shows new features in that build. I think this could be expressed better. See specific proposal below.

I think http://html5please.com/ does this well.

Search box should not move

Right now the search box moves when the number of web platform features changes:

Web Platform Features (100) [ Search Box ]
Web Platform Features (10) [ Search Box ]
Web Platform Features (1) [ Search Box ]

Ideally, the search box's position would remain fixed.

Added features don't show up until another item is saved

In v2, when you create a new record in the Admin view, it doesn't show up in the list view until you edit or create ANOTHER record.

If you flush memcache manually and refresh, the record shows up even without creating or modifying another record.

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.