Newer
Older
alert / js / node_modules / flarum / forum / components / ComposerBody.d.ts
@Réz István Réz István on 18 Nov 2021 1 KB first commit
/**
 * The `ComposerBody` component handles the body, or the content, of the
 * composer. Subclasses should implement the `onsubmit` method and override
 * `headerTimes`.
 *
 * ### Attrs
 *
 * - `composer`
 * - `originalContent`
 * - `submitLabel`
 * - `placeholder`
 * - `user`
 * - `confirmExit`
 * - `disabled`
 *
 * @abstract
 */
export default class ComposerBody extends Component<import("../../common/Component").ComponentAttrs> {
    composer: any;
    /**
     * Whether or not the component is loading.
     *
     * @type {Boolean}
     */
    loading: boolean;
    /**
     * Check if there is any unsaved data.
     *
     * @return {String}
     */
    hasChanges(): string;
    /**
     * Build an item list for the composer's header.
     *
     * @return {ItemList}
     */
    headerItems(): ItemList;
    /**
     * Handle the submit event of the text editor.
     *
     * @abstract
     */
    onsubmit(): void;
    /**
     * Stop loading.
     */
    loaded(): void;
}
import Component from "../../common/Component";
import ItemList from "../../common/utils/ItemList";