mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 07:03:40 +08:00
47cabdc6d2
- adds a `@groupIdentifier` property which will ensure that two menus of the same group are not expanded at the same time - adds a `@class` property which will be applied to the trigger and the content - adds a `@triggerClass` property which will be applied to the trigger - adds a `@contentClass` property which will be applied to the trigger - removes `extraClassName`
91 lines
2.8 KiB
Plaintext
91 lines
2.8 KiB
Plaintext
import Component from "@glimmer/component";
|
|
import { concat, hash } from "@ember/helper";
|
|
import { htmlSafe } from "@ember/template";
|
|
import { modifier as modifierFn } from "ember-modifier";
|
|
import concatClass from "discourse/helpers/concat-class";
|
|
import closeOnClickOutside from "discourse/modifiers/close-on-click-outside";
|
|
import TrapTab from "discourse/modifiers/trap-tab";
|
|
import DFloatPortal from "float-kit/components/d-float-portal";
|
|
import { getScrollParent } from "float-kit/lib/get-scroll-parent";
|
|
import FloatKitApplyFloatingUi from "float-kit/modifiers/apply-floating-ui";
|
|
import FloatKitCloseOnEscape from "float-kit/modifiers/close-on-escape";
|
|
|
|
export default class DFloatBody extends Component {
|
|
closeOnScroll = modifierFn(() => {
|
|
const firstScrollParent = getScrollParent(this.trigger);
|
|
|
|
const handler = () => {
|
|
this.args.instance.close();
|
|
};
|
|
|
|
firstScrollParent.addEventListener("scroll", handler, { passive: true });
|
|
|
|
return () => {
|
|
firstScrollParent.removeEventListener("scroll", handler);
|
|
};
|
|
});
|
|
|
|
get supportsCloseOnClickOutside() {
|
|
return this.args.instance.expanded && this.options.closeOnClickOutside;
|
|
}
|
|
|
|
get supportsCloseOnEscape() {
|
|
return this.args.instance.expanded && this.options.closeOnEscape;
|
|
}
|
|
|
|
get supportsCloseOnScroll() {
|
|
return this.args.instance.expanded && this.options.closeOnScroll;
|
|
}
|
|
|
|
get trigger() {
|
|
return this.args.instance?.trigger;
|
|
}
|
|
|
|
get content() {
|
|
return this.args.instance?.content;
|
|
}
|
|
|
|
get options() {
|
|
return this.args.instance.options;
|
|
}
|
|
|
|
<template>
|
|
<DFloatPortal
|
|
@inline={{@inline}}
|
|
@portalOutletElement={{@instance.portalOutletElement}}
|
|
>
|
|
<div
|
|
class={{concatClass
|
|
@mainClass
|
|
(if this.options.animated "-animated")
|
|
(if @instance.expanded "-expanded")
|
|
}}
|
|
data-identifier={{this.options.identifier}}
|
|
data-content
|
|
aria-labelledby={{@instance.id}}
|
|
aria-expanded={{if @instance.expanded "true" "false"}}
|
|
role={{@role}}
|
|
{{FloatKitApplyFloatingUi this.trigger this.options @instance}}
|
|
{{(if @trapTab (modifier TrapTab autofocus=this.options.autofocus))}}
|
|
{{(if
|
|
this.supportsCloseOnClickOutside
|
|
(modifier
|
|
closeOnClickOutside @instance.close (hash target=this.content)
|
|
)
|
|
)}}
|
|
{{(if
|
|
this.supportsCloseOnEscape
|
|
(modifier FloatKitCloseOnEscape @instance.close)
|
|
)}}
|
|
{{(if this.supportsCloseOnScroll (modifier this.closeOnScroll))}}
|
|
style={{htmlSafe (concat "max-width: " this.options.maxWidth "px")}}
|
|
...attributes
|
|
>
|
|
<div class={{@innerClass}}>
|
|
{{yield}}
|
|
</div>
|
|
</div>
|
|
</DFloatPortal>
|
|
</template>
|
|
}
|