This repository contains the starter code for the Provenance Widgets library. Provenance Widgets is a library of GUI widgets that encode analytical provenance information in the form of embedded visualizations. The widgets have been used in the main.ts
file.
If you wish to start from scratch, jump straight to the Installation section. To use the starter code, clone this repository and install the dependencies using npm install
.
To run the app, use the following command:
npm run dev
This will start the app on http://localhost:5173/.
The library can be installed with npm using:
npm i provenance-widgets
## Usage
All widgets extend an existing component's class. Hence, all original properties/attributes and methods of the component are available to the widget. For example, the `Slider` widget extends [ngx-slider's `SliderComponent`](https://angular-slider.github.io/ngx-slider/) class. Hence, attributes such as `value` and `highValue` from the ngx-slider `SliderComponent` class are available to the `Slider` widget.
Since these widgets extend Angular components, you may notice `[attr]` and `(event)` in the base components' documentation. These are Angular's property binding (`@Input`) and event binding (`@Output`) syntax, respectively. For example, `[(value)]` is a two-way binding syntax that binds the `value` property to the widget and listens for changes to the `value` property. This is syntactic sugar for `[value]` and `(valueChange)`.
Outside Angular, this is equivalent to passing `value` as attribute, and listening for the `valueChange` event. It looks like this:
```html
<web-provenance-slider value="50">
</web-provenance-slider>
or
const slider = document.createElement('web-provenance-slider');
slider.value = 50;
slider.addEventListener('valueChange', (event) => {
console.log(event.detail);
});
For more details on converting Angular syntax to vanilla JavaScript, refer Angular's documentation on this.
All widgets have the following common properties:
-
id
: Must be provided for the library to uniquely identify the widget, and fallback for tooltip labels. -
data-label
: The label to display in the tooltip. If not provided, theid
property is used. -
provenance
: The provenance of interactions recorded by the widget. Use this property to persist-restore or modify-reconstruct the provenance. Each widget has a different provenance type, which is described in the widget's documentation.- Default:
undefined
- Widget updates when the property is changed?: Yes
- Default:
-
visualize
: Whether to visualize the provenance.- Default:
true
- Widget updates when the property is changed?: No (Only applied at initialization. The widget must be unmounted and remounted to apply changes.)
- Default:
-
freeze
: Whether to freeze the provenance. Iftrue
, the widget will not record any provenance and existing visualizations will be frozen (i.e., interactions will not update the visualizations.)- Default:
false
- Widget updates when the property is changed?: No (Only applied at initialization. The widget must be unmounted and remounted to apply changes.)
- Default:
All widgets emit the following events:
provenanceChange
: Emits the current provenance when theprovenance
property is changed.
- Extends:
SliderComponent
- Selector:
<web-provenance-slider>
- Provenance type:
SliderProvenance
. Important properties:- data: An array of time-stamped values.
- revalidate: Whether to revalidate the provenance. If
true
, the widget will recompute the provenance from thedata
property.
- Custom Events:
selectedChange
: Emits aChangeContext
when theonUserChangeEnd
event is fired.
- Note: The widget does not update when the
value
orhighValue
properties are changed. Use theprovenance
property for this purpose instead.
- Extends:
AutoComplete
- Selector:
<web-provenance-inputtext>
- Provenance type:
InputTextProvenance
. Important properties:- data: An array of time-stamped values.
- revalidate: Whether to revalidate the provenance. If
true
, the widget will recompute the provenance from thedata
property.
- Custom Properties:
value
: The value of the input field.- Default:
undefined
- Widget updates when the property is changed?: Yes
- Default:
- Custom Events:
valueChange
: Emits the current value when thevalue
property is changed.
This subset of widgets allows the user to 'select' either a single item or multiple items from a list. They share the following common properties:
selected
: The selected item(s) from the list.- Default:
undefined
- Widget updates when the property is changed?: Yes
- Default:
selectedChange
: Emits the current selection when theselected
property is changed.- NOTE: It is mandatory to update the
selected
property when theselectedChange
event is fired. This is because the widget relies on explicit updates to theselected
property to update the provenance and visualization. - Provenance type:
Provenance
. Important properties:- selections: An array of time-stamped values.
- revalidate: Whether to revalidate the provenance. If
true
, the widget will recompute the provenance from theselections
property.
- Extends:
MultiSelect
- Selector:
<web-provenance-multiselect>
- Custom properties:
- Type of
selected
:typeof options
, where options is the array of options to display in the multiselect. See the MultiSelect API for more information about theoptions
property. - Note: The
label
(value to show) andvalue
(unique identifier) properties MUST be identified by theoptionLabel
anddataKey
properties, respectively. Example is available in the starter code.
- Type of
- Extends:
Dropdown
- Selector:
<provenance-dropdown>
- Custom properties/behaviors: Same as
MultiSelect
, except that theselected
property is of typetypeof options[i]
. See the Dropdown API for more information about theoptions
property.
- Extends:
Checkbox
- Selector:
<provenance-checkbox>
- Custom Properties:
data
: List of items to select from.- Default:
undefined
- Type:
Record<keyof CheckboxProperties, any>[]
, where CheckboxProperties can include properties of the Checkbox API.- NOTE: The
label
andvalue
properties can be aliased by providing them asinput
s to the widget. For example, if thelabel
property is aliased asname
, thedata
property should include an array of objects with aname
property. Example is available in the starter code.
- NOTE: The
- Widget updates when the property is changed?: No
- Default:
- Type of
selected
:string[]
, where each string is the value (unique identifier, default isvalue
unless aliased) of the selected item.
- Extends:
RadioButton
- Selector:
<web-provenance-radiobutton>
- Custom Properties/behaviors: Same as
Checkbox
, except that theselected
property is of typestring
.