Dropdown
A Dropdown is a user interface control element that allows users to select one option from a set of options.
Playground
Live Editor
<ProvenanceDropdown id="jsx-provenance-dropdown" name="jsx-provenance-dropdown" options={[ { label: 'New York', value: 'New York' }, { label: 'Rome', value: 'Rome' }, { label: 'London', value: 'London' }, { label: 'Istanbul', value: 'Istanbul' }, { label: 'Paris', value: 'Paris' } ]} selected={{ label: 'New York', value: 'New York' }} optionLabel="label" dataKey="value" freeze={false} visualize={true} provenanceChange={console.log} // hardcoded selectedChange={console.log} // hardcoded />
Result
Loading...
info
The above example uses React JSX and Web Components. See corresponding (static) examples for Angular and Web Components below.
- dropdown.component.ts
- dropdown.component.html
- dropdown.webcomponent.ts
import { Component } from '@angular/core';
@Component({
selector: 'dropdown-root',
templateUrl: './dropdown.component.html',
styleUrls: ['./dropdown.component.css']
})
export class DropdownComponent {
data = [
{ label: 'New York', value: 'New York' },
{ label: 'Rome', value: 'Rome' },
{ label: 'London', value: 'London' },
{ label: 'Istanbul', value: 'Istanbul' },
{ label: 'Paris', value: 'Paris' }
];
selected = data[0];
freeze = false;
visualize = true;
provenanceChange(event) {
console.log(event.detail);
}
selectedChange(event) {
console.log(event.detail);
// Mandatory to update the selected property manually, or use two-way binding
selected = event.detail;
}
}
<provenance-dropdown
id="html-provenance-dropdown"
name="html-provenance-dropdown"
[data]="data"
[selected]="selected"
optionLabel="label"
dataKey="value"
[freeze]="freeze"
[visualize]="visualize"
(provenanceChange)="provenanceChange($event)"
(selectedChange)="selectedChange($event)"
></provenance-dropdown>
import { DropdownComponent } from 'provenance-widgets';
import type { NgElement, WithProperties } from '@angular/elements'
// Create a new instance of the Dropdown
const dropdown = document.createElement("web-provenance-dropdown") as NgElement & WithProperties<DropdownComponent>;
const data = [
{ label: 'New York', value: 'New York' },
{ label: 'Rome', value: 'Rome' },
{ label: 'London', value: 'London' },
{ label: 'Istanbul', value: 'Istanbul' },
{ label: 'Paris', value: 'Paris' }
];
// Set the properties
dropdown.options = data;
dropdown.selected = data[0];
dropdown.optionLabel = 'label';
dropdown.dataKey = 'value';
dropdown.freeze = false;
dropdown.visualize = true;
dropdown.addEventListener('provenanceChange', (event) => {
console.log(event.detail);
});
dropdown.addEventListener('selectedChange', (event) => {
console.log(event.detail);
// Mandatory to update the selected property manually
dropdown.selected = event.detail;
});
// Append it to the DOM
document.body.appendChild(dropdown);
API
info
All widgets extend a third-party library component. See the extends
property below for more information about the base component's API.
Extends | p-dropdown |
Angular Selector | provenance-dropdown |
Web Component Tag | web-provenance-dropdown |
Properties
Name | Type | Default | Required | Description |
---|---|---|---|---|
id | string | "" | Yes | Unique identifier for the element. Used by ProvenanceWidgets for internal state management and visualizations. |
options | any[] | undefined | Yes | An array of objects to display as options |
optionLabel | string | Yes | Name of the label field in the option object | |
dataKey | string | Yes | Name of the value field in the option object | |
selected | any | No | The selected option. Two-way binding is supported. | |
freeze | boolean | false | No | Whether to freeze the provenance. If true , the widget will not record any provenance, and interactions will not create/update any visualizations. NOTE: The widget does not update when the property is changed. |
visualize | boolean | true | No | Whether to visualize the provenance. NOTE: The widget does not update when the property is changed. |
provenance | Provenance | undefined | No | The provenance of interactions recorded by the widget. Use this property to persist, restore, modify, or reconstruct the provenance of interactions for the widget. To override the provenance, revalidate must be set to true . Two-way binding is supported. |
Events
Name | EventEmitter<T> | Description |
---|---|---|
selectedChange | any | Emits the updated selected value when the dropdown selection changes. |
provenanceChange | <Provenance> | Emits the provenance when the dropdown selection changes. |