2020-12-31 04:29:10 +08:00
|
|
|
@import "badges";
|
|
|
|
@import "banner";
|
|
|
|
@import "bookmark-list";
|
|
|
|
@import "bookmark-modal";
|
|
|
|
@import "buttons";
|
2022-02-01 22:18:13 +08:00
|
|
|
@import "color-input";
|
2023-02-20 19:06:43 +08:00
|
|
|
@import "char-counter";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "conditional-loading-section";
|
2023-08-11 11:05:44 +08:00
|
|
|
@import "calendar-date-time-input";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "convert-to-public-topic-modal";
|
2023-07-13 15:06:17 +08:00
|
|
|
@import "d-lightbox";
|
2023-02-10 03:36:27 +08:00
|
|
|
@import "d-toggle-switch";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "date-input";
|
|
|
|
@import "date-picker";
|
|
|
|
@import "date-time-input-range";
|
|
|
|
@import "date-time-input";
|
|
|
|
@import "footer-nav";
|
2023-06-09 03:49:18 +08:00
|
|
|
@import "form-template-field";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "group-member-dropdown";
|
|
|
|
@import "groups-form-membership-fields";
|
|
|
|
@import "hashtag";
|
2022-10-25 07:22:02 +08:00
|
|
|
@import "horizontal-overflow-nav";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "iframed-html";
|
|
|
|
@import "ignored-user-list";
|
|
|
|
@import "keyboard_shortcuts";
|
2023-08-18 01:37:11 +08:00
|
|
|
@import "more-topics";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "navs";
|
2023-06-06 00:08:04 +08:00
|
|
|
@import "offline-indicator";
|
2021-07-17 01:50:50 +08:00
|
|
|
@import "pick-files-button";
|
2021-02-15 18:44:30 +08:00
|
|
|
@import "relative-time-picker";
|
2023-09-14 16:50:50 +08:00
|
|
|
@import "add-pm-participants";
|
2021-10-06 11:11:52 +08:00
|
|
|
@import "download-calendar";
|
2023-07-04 09:45:21 +08:00
|
|
|
@import "sidebar/edit-navigation-menu/categories-modal";
|
|
|
|
@import "sidebar/edit-navigation-menu/modal";
|
|
|
|
@import "sidebar/edit-navigation-menu/tags-modal";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "svg";
|
|
|
|
@import "tap-tile";
|
|
|
|
@import "time-input";
|
2021-02-03 08:13:32 +08:00
|
|
|
@import "time-shortcut-picker";
|
2023-03-03 09:46:21 +08:00
|
|
|
@import "topic-query-filter";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "user-card";
|
|
|
|
@import "user-info";
|
2022-07-29 01:12:48 +08:00
|
|
|
@import "user-status-message";
|
2022-06-22 22:15:33 +08:00
|
|
|
@import "user-status-picker";
|
2020-12-31 04:29:10 +08:00
|
|
|
@import "user-stream-item";
|
|
|
|
@import "user-stream";
|
|
|
|
@import "widget-dropdown";
|
DEV: FloatKit (#23650)
This PR introduces three new concepts to Discourse codebase through an addon called "FloatKit":
- menu
- tooltip
- toast
## Tooltips
### Component
Simple cases can be express with an API similar to DButton:
```hbs
<DTooltip
@Label={{i18n "foo.bar"}}
@ICON="check"
@content="Something"
/>
```
More complex cases can use blocks:
```hbs
<DTooltip>
<:trigger>
{{d-icon "check"}}
<span>{{i18n "foo.bar"}}</span>
</:trigger>
<:content>
Something
</:content>
</DTooltip>
```
### Service
You can manually show a tooltip using the `tooltip` service:
```javascript
const tooltipInstance = await this.tooltip.show(
document.querySelector(".my-span"),
options
)
// and later manual close or destroy it
tooltipInstance.close();
tooltipInstance.destroy();
// you can also just close any open tooltip through the service
this.tooltip.close();
```
The service also allows you to register event listeners on a trigger, it removes the need for you to manage open/close of a tooltip started through the service:
```javascript
const tooltipInstance = this.tooltip.register(
document.querySelector(".my-span"),
options
)
// when done you can destroy the instance to remove the listeners
tooltipInstance.destroy();
```
Note that the service also allows you to use a custom component as content which will receive `@data` and `@close` as args:
```javascript
const tooltipInstance = await this.tooltip.show(
document.querySelector(".my-span"),
{
component: MyComponent,
data: { foo: 1 }
}
)
```
## Menus
Menus are very similar to tooltips and provide the same kind of APIs:
### Component
```hbs
<DMenu @ICON="plus" @Label={{i18n "foo.bar"}}>
<ul>
<li>Foo</li>
<li>Bat</li>
<li>Baz</li>
</ul>
</DMenu>
```
They also support blocks:
```hbs
<DMenu>
<:trigger>
{{d-icon "plus"}}
<span>{{i18n "foo.bar"}}</span>
</:trigger>
<:content>
<ul>
<li>Foo</li>
<li>Bat</li>
<li>Baz</li>
</ul>
</:content>
</DMenu>
```
### Service
You can manually show a menu using the `menu` service:
```javascript
const menuInstance = await this.menu.show(
document.querySelector(".my-span"),
options
)
// and later manual close or destroy it
menuInstance.close();
menuInstance.destroy();
// you can also just close any open tooltip through the service
this.menu.close();
```
The service also allows you to register event listeners on a trigger, it removes the need for you to manage open/close of a tooltip started through the service:
```javascript
const menuInstance = this.menu.register(
document.querySelector(".my-span"),
options
)
// when done you can destroy the instance to remove the listeners
menuInstance.destroy();
```
Note that the service also allows you to use a custom component as content which will receive `@data` and `@close` as args:
```javascript
const menuInstance = await this.menu.show(
document.querySelector(".my-span"),
{
component: MyComponent,
data: { foo: 1 }
}
)
```
## Toasts
Interacting with toasts is made only through the `toasts` service.
A default component is provided (DDefaultToast) and can be used through dedicated service methods:
- this.toasts.success({ ... });
- this.toasts.warning({ ... });
- this.toasts.info({ ... });
- this.toasts.error({ ... });
- this.toasts.default({ ... });
```javascript
this.toasts.success({
data: {
title: "Foo",
message: "Bar",
actions: [
{
label: "Ok",
class: "btn-primary",
action: (componentArgs) => {
// eslint-disable-next-line no-alert
alert("Closing toast:" + componentArgs.data.title);
componentArgs.close();
},
}
]
},
});
```
You can also provide your own component:
```javascript
this.toasts.show(MyComponent, {
autoClose: false,
class: "foo",
data: { baz: 1 },
})
```
Co-authored-by: Martin Brennan <mjrbrennan@gmail.com>
Co-authored-by: Isaac Janzen <50783505+janzenisaac@users.noreply.github.com>
Co-authored-by: David Taylor <david@taylorhq.com>
Co-authored-by: Jarek Radosz <jradosz@gmail.com>
2023-09-26 19:39:52 +08:00
|
|
|
@import "admin-post-menu";
|