-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #7311 Signed-off-by: Alex Tugarev <[email protected]>
- Loading branch information
1 parent
924e6a2
commit 211e161
Showing
9 changed files
with
154 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2019 TypeFox and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
import { ProgressBar } from './progress-bar'; | ||
|
||
export const ProgressBarFactory = Symbol('ProgressBarFactory'); | ||
export interface ProgressBarFactory { | ||
(options: ProgressBarOptions): ProgressBar; | ||
} | ||
|
||
export const ProgressBarOptions = Symbol('ProgressBarOptions'); | ||
export interface ProgressBarOptions { | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
AlexTugarev
Author
Contributor
|
||
locationId: string; | ||
container: HTMLElement; | ||
insertMode: 'append' | 'prepend'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
packages/core/src/browser/progress-location-service.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2020 TypeFox and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
import { expect } from 'chai'; | ||
import { ProgressLocationService } from './progress-location-service'; | ||
import { CancellationTokenSource } from '../common'; | ||
|
||
describe('progress-location-service', () => { | ||
|
||
const EXP = 'exp'; | ||
const SCM = 'scm'; | ||
const FOO = 'foo'; | ||
|
||
it('done event should be fired for multiple progress locations – bug #7311', async () => { | ||
const eventLog = new Array<string>(); | ||
const logEvent = (location: string, show: boolean) => eventLog.push(`${location} show: ${show}`); | ||
|
||
const service = new ProgressLocationService(); | ||
|
||
[EXP, SCM, FOO].map(location => { | ||
service.onProgress(location)(e => logEvent(location, e.show)); | ||
const progressToken = new CancellationTokenSource(); | ||
service.showProgress(`progress-${location}-${Date.now()}`, { text: '', options: { location } }, progressToken.token); | ||
return progressToken; | ||
}).forEach(t => t.cancel()); | ||
|
||
expect(eventLog.join('\n')).eq(` | ||
exp show: true | ||
scm show: true | ||
foo show: true | ||
exp show: false | ||
scm show: false | ||
foo show: false | ||
`.trim()); | ||
}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think most important that declarations come before inject, so you should be able to put them at the top of progress-bar file without moving to another file.