2020-07-04 11:53:02 -04:00
|
|
|
import {onSelect} from "../services/dom";
|
2022-11-16 08:04:22 -05:00
|
|
|
import {Component} from "./component";
|
2020-07-04 11:53:02 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* EventEmitSelect
|
|
|
|
* Component will simply emit an event when selected.
|
|
|
|
*
|
|
|
|
* Has one required option: "name".
|
|
|
|
* A name of "hello" will emit a component DOM event of
|
|
|
|
* "event-emit-select-name"
|
|
|
|
*
|
|
|
|
* All options will be set as the "detail" of the event with
|
|
|
|
* their values included.
|
|
|
|
*/
|
2022-11-16 08:04:22 -05:00
|
|
|
export class EventEmitSelect extends Component{
|
2020-07-04 11:53:02 -04:00
|
|
|
setup() {
|
|
|
|
this.container = this.$el;
|
|
|
|
this.name = this.$opts.name;
|
|
|
|
|
|
|
|
|
|
|
|
onSelect(this.$el, () => {
|
|
|
|
this.$emit(this.name, this.$opts);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-16 08:04:22 -05:00
|
|
|
}
|