open-vault/ui/lib/core/addon/components/tool-tip.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

35 lines
755 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
import { action } from '@ember/object';
import { debounce } from '@ember/runloop';
export default class ToolTipComponent extends Component {
get delay() {
return this.args.delay || 200;
}
get horizontalPosition() {
return this.args.horizontalPosition || 'auto-right';
}
toggleState({ dropdown, action }) {
dropdown.actions[action]();
}
@action
open(dropdown) {
debounce(this, 'toggleState', { dropdown, action: 'open' }, this.delay);
}
@action
close(dropdown) {
debounce(this, 'toggleState', { dropdown, action: 'close' }, this.delay);
}
@action
prevent() {
return false;
}
}