Closed Bug 768414 Opened 13 years ago Closed 10 years ago

GCLI should display progress with a spinner

Categories

(DevTools Graveyard :: Graphic Commandline and Toolbar, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED WONTFIX
Future

People

(Reporter: jwalker, Unassigned)

References

Details

Much like the tick for 'pass but no output'?
Joe said that if we add the following to OutputPanel.prototype.update = function OP_update(): if (this.displayedOutput.data.completed) { // Hide progress } else { // Show progress } Here is a complete(ish) progress implementation from elsewhere: OutputView.prototype.changed = function(ev) { var document = this.elems.rowout.ownerDocument; var duration = this.outputData.duration != null ? 'completed in ' + (this.outputData.duration / 1000) + ' sec ' : ''; duration = document.createTextNode(duration); this.elems.duration.appendChild(duration); if (this.outputData.completed) { this.elems.prompt.classList.add('gcli-row-complete'); } if (this.outputData.error) { this.elems.prompt.classList.add('gcli-row-error'); } this.outputData.toDom(this.elems.rowout); // We need to see the output of the latest command entered // Certain browsers have a bug such that scrollHeight is too small // when content does not fill the client area of the element var scrollHeight = Math.max(this.outputTerminal.element.scrollHeight, this.outputTerminal.element.clientHeight); this.outputTerminal.element.scrollTop = scrollHeight - this.outputTerminal.element.clientHeight; this.elems.throb.style.display = this.outputData.completed ? 'none' : 'block'; };
QA Contact: mratcliffe
This has been implemented as part of bug 771066
Depends on: 771066
Triage: Filter on the TRIAGE keyword.
Priority: P1 → P2
Target Milestone: Firefox 17 → Future
New component triage. Filter on "Lobster Thermidor aux crevettes with a Mornay sauce"
Component: Developer Tools: Console → Developer Tools: Graphic Commandline and Toolbar
Resetting priorities because these P* levels are very out of date. Sorry for the bug spam. Filter on Lobster Thermidor
Priority: P2 → --
Triage. Filter on Lobster Thermidor. Nice idea, but no need to keep on file.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → WONTFIX
Product: Firefox → DevTools
Product: DevTools → DevTools Graveyard
You need to log in before you can comment on or make changes to this bug.