Gathering detailed insights and metrics for electron-progressbar
Gathering detailed insights and metrics for electron-progressbar
Gathering detailed insights and metrics for electron-progressbar
Gathering detailed insights and metrics for electron-progressbar
npm install electron-progressbar
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
95 Stars
114 Commits
22 Forks
6 Watching
1 Branches
6 Contributors
Updated on 19 Nov 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-17.6%
183
Compared to previous day
Last week
2%
1,259
Compared to previous week
Last month
-39.8%
6,529
Compared to previous month
Last year
46.2%
194,444
Compared to previous year
| Your help is appreciated! Create a PR or just buy me a coffee |
---|
electron-progressbar provides an easy-to-use and highly customizable API, to show and manipulate progress bars on Electron applications.
With electron-progressbar, you can easily customize the appearance of the progress bars, including the visual aspects using CSS, as well as the text and any other visible information. Additionally, the library allows for customization of the Electron BrowserWindow that contains the progress bars.
Determinate progress bar:
In addition to displaying progress bars within the window, electron-progressbar also enables progress bars to be displayed in the taskbar using the BrowserWindow's setProgressBar method. This feature allows the user to view progress information without needing to switch to the window itself.
example of the taskbar for an indeterminate progress bar:
example of the taskbar for a determinate progress bar:
Methods
.new ProgressBar(options, [electronApp])
.getOptions()
⇒ object
.on(eventName, listener)
⇒ reference to this
.setCompleted()
.close()
.isInProgress()
⇒ boolean
.isCompleted()
⇒ boolean
Properties
Install with npm
:
1$ npm i electron-progressbar
Example of an indeterminate progress bar - this progress bar is useful when your application cannot calculate how long the task will take to complete:
1const {app} = require('electron'); 2const ProgressBar = require('electron-progressbar'); 3 4app.on('ready', function() { 5 var progressBar = new ProgressBar({ 6 text: 'Preparing data...', 7 detail: 'Wait...' 8 }); 9 10 progressBar 11 .on('completed', function() { 12 console.info(`completed...`); 13 progressBar.detail = 'Task completed. Exiting...'; 14 }) 15 .on('aborted', function() { 16 console.info(`aborted...`); 17 }); 18 19 // launch a task... 20 // launchTask(); 21 22 // when task is completed, set the progress bar to completed 23 // ps: setTimeout is used here just to simulate an interval between 24 // the start and the end of a task 25 setTimeout(function() { 26 progressBar.setCompleted(); 27 }, 3000); 28});
Example of a determinate progress bar - this progress bar is useful when your application can accurately calculate how long the task will take to complete:
1const {app} = require('electron'); 2const ProgressBar = require('electron-progressbar'); 3 4app.on('ready', function() { 5 var progressBar = new ProgressBar({ 6 indeterminate: false, 7 text: 'Preparing data...', 8 detail: 'Wait...' 9 }); 10 11 progressBar 12 .on('completed', function() { 13 console.info(`completed...`); 14 progressBar.detail = 'Task completed. Exiting...'; 15 }) 16 .on('aborted', function(value) { 17 console.info(`aborted... ${value}`); 18 }) 19 .on('progress', function(value) { 20 progressBar.detail = `Value ${value} out of ${progressBar.getOptions().maxValue}...`; 21 }); 22 23 // launch a task and increase the value of the progress bar for each step completed of a big task; 24 // the progress bar is set to completed when it reaches its maxValue (default maxValue: 100); 25 // ps: setInterval is used here just to simulate the progress of a task 26 setInterval(function() { 27 if(!progressBar.isCompleted()){ 28 progressBar.value += 1; 29 } 30 }, 20); 31});
In most scenarios, it's recommended to use the available properties under options
to customize the progress bar, ensuring smooth functionality without delving into complex logic. However, if your requirements include a progress bar with unique elements or a distinct HTML structure, the customHTML
option gives you full control over the rendering and behavior of the progress bar's elements. Please note that customHTML
is an experimental feature.
An example demonstrating the use of the customHTML
option can be found here, and a demo can be viewed below:
More examples are available in folder examples.
Methods
new ProgressBar(options, [electronApp])
Create a new progress bar. It's necessary to wait for the ready
event to be emitted by Electron's BrowserWindow, since the progress bar is displayed within it. Optionally, you can pass the electron app as a second parameter (parameter electronApp
) when creating the progress bar. Check the sample code on this page for detailed examples on how to set properties to options
.
You can define most of the characteristics of the progress bar using the options
parameter. Below is a list of properties that you can set for the options
parameter.
Option name | Type | Default value | Description |
---|---|---|---|
debug | boolean | false | Specifies whether debugging should be enabled. If set to true , the browser's DevTools panel will automatically open when the progress bar is created. This can be helpful when debugging and/or dealing with issues. |
abortOnError | boolean | false | Specifies whether the progress bar should automatically abort and close if an error occurs internally. |
indeterminate | boolean | true | Specifies whether the progress bar should be indeterminate. If set to false, the progress bar will be determinate. |
initialValue | number | 0 | The initial value for the progress bar. This parameter is only applicable for determinate progress bars. |
maxValue | number | 100 | The maximum value for the progress bar. When the progress bar's value reaches this number, the progress bar will be considered complete and the complete event will be fired. This parameter is only applicable for determinate progress bars. |
closeOnComplete | boolean | true | Specifies whether the progress bar window should be automatically closed after the progress bar completes. If set to false , the progress bar will remain visible until the close method is called by your application. |
lang | string | empty | Specifies the value for the lang attribute of the BrowserWindow's <html> tag. This option has no default value, and the lang attribute is only added to <html> when lang is explicitly set. This option can also be helpful in case of font rendering issues. |
title | string | "Wait..." | Specifies the text shown on the progress bar window's title bar. |
text | string | "Wait..." | Specifies the text shown inside the progress bar window, next to the progress bar. |
detail | string | empty | Specifies the text shown between text and the progress bar element. It can be used to display detailed information, such as the current progress of a task. When used for this purpose, it is usually more useful to set this property later so that your application can calculate and display, in real time, the current progress of the task. |
style | object | Specifices the visual styles for the text , detail , bar , and value elements. All properties and values are pure CSS format, in the exact same way they would be used in a CSS file . Check the options for style below. | |
style.text | object | An object containing CSS properties for styling the text element. | |
style.detail | object | An object containing CSS properties for styling the detail element. | |
style.bar | object | {"width":"100%", "background-color":"#BBE0F1"} | An object containing CSS properties for styling the bar element of the progress bar. |
style.value | object | {"background-color":"#0976A9"} | An object containing CSS properties for styling the value element in the progress bar. |
customHTML | string | empty | This experimental option enables you to build the progress bar using custom HTML code. You can provide the full HTML code, starting with the <html> tag, to this option. For more information, see the section Progress bar with custom HTML structure (Experimental). |
remoteWindow | instance of BrowserWindow | null | Specifies the BrowserWindow where the progress bar will be displayed. If null/undefined/empty or not specified, a new BrowserWindow will be created to show the progress bar. |
browserWindow | object | Specifies the options for Electron's BrowserWindow . Check the options for browserWindow below. P.S.: although only a few options are set by default, you can specify any of Electron's BrowserWindow options. | |
browserWindow.parent | instance of BrowserWindow | null | A BrowserWindow instance to be used as the parent of the progress bar's window. If specified, the progress bar window will always be on top of the given parent window and will block user interaction in parent window until the progress bar is completed (or aborted) and closed. |
browserWindow.modal | boolean | true | Specifies whether the progress bar's window is a modal window. Note that this property only works when the progress bar's window is a child window, i.e., when browserWindow.parent is specified. |
browserWindow.resizable | boolean | false | Specifies whether the user can resize the progress bar's window. |
browserWindow.closable | boolean | false | Specifies whether the user can close the progress bar's window. |
browserWindow.minimizable | boolean | false | Specifies whether the user can minimize the progress bar's window. |
browserWindow.maximizable | boolean | false | Specifies whether the user can maximize the progress bar's window. |
browserWindow.width | number | 450 | Specifies the width of the progress bar's window in pixels. Only numeric values are accepted, for example: 600. |
browserWindow.height | number | 175 | Specifies the height of the progress bar's window in pixels. Only numeric values are accepted, for example: 600. |
browserWindow .webPreferences.nodeIntegration | boolean | true | Specifies whether node integration is enabled. |
browserWindow .webPreferences.contextIsolation | boolean | false | Specifies whether contextIsolation is enabled. |
getOptions()
⇒ object
Return a copy of all the current options.
on(eventName, listener)
⇒ reference to this
Add the listener function to the end of the listeners array for the event named eventName
, and then return a reference to this
so that next calls can be chained.
P.S.: there are no checks to verify if listener
has already been added. If you call the same combination of eventName
and listener
multiple times, the listener
will be added and executed multiple times as well.
setCompleted()
Set the progress bar as complete, indicating that the task has finished.
If progress bar is indeterminate, a manual call to this method is required since it's the only way to trigger the completed
event and indicate that the task has finished. Otherwise, the progress bar will continue to be displayed indefinitely.
close()
Close the progress bar window. If progress bar has not been completed yet, it will be aborted, and the aborted
event will be fired.
isInProgress()
⇒ boolean
Return true
if the progress bar is currently in progress, meaning that it has not been completed or aborted yet; otherwise it will return false
;
isCompleted()
⇒ boolean
Return true
if the progress bar is completed, otherwise false
.
Properties
value
⇒ number
This property allows getting or setting the progress bar's current value. It is only applicable and available for determinate progress bars.
text
⇒ string
This property allows getting or setting the progress bar's text
information that is shown above the progress bar element.
detail
⇒ string
This property allows getting or setting the progress bar's detail
information that is shown between text
and the progress bar element. Useful to display detailed information, such as the current status, in real time, or the current progress of the task.
MIT. See LICENSE.md for details.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 3/28 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
17 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More