| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 | // @flow
import { Component } from 'react';
import { NOTIFICATION_TYPE } from '../constants';
export type Props = {
    /**
     * Display appearance for the component, passed directly to the
     * notification.
     */
    appearance: string,
    /**
     * The text to display in the body of the notification. If not passed
     * in, the passed in descriptionKey will be used.
     */
    defaultTitleKey: string,
    /**
     * A description string that can be used in addition to the prop
     * descriptionKey.
     */
    description: string,
    /**
     * The translation arguments that may be necessary for the description.
     */
    descriptionArguments: Object,
    /**
     * The translation key to use as the body of the notification.
     */
    descriptionKey: string,
    /**
     * Whether the support link should be hidden in the case of an error
     * message.
     */
    hideErrorSupportLink: boolean,
    /**
     * Whether or not the dismiss button should be displayed.
     */
    isDismissAllowed: boolean,
    /**
     * Callback invoked when the user clicks to dismiss the notification.
     */
    onDismissed: Function,
    /**
     * Invoked to obtain translated strings.
     */
    t: Function,
    /**
     * The text to display at the top of the notification. If not passed in,
     * the passed in titleKey will be used.
     */
    title: string,
    /**
     * The translation arguments that may be necessary for the title.
     */
    titleArguments: Object,
    /**
     * The translation key to display as the title of the notification if
     * no title is provided.
     */
    titleKey: string,
    /**
     * The unique identifier for the notification.
     */
    uid: number
};
/**
 * Abstract class for {@code Notification} component.
 *
 * @extends Component
 */
export default class AbstractNotification<P: Props> extends Component<P> {
    /**
     * Default values for {@code Notification} component's properties.
     *
     * @static
     */
    static defaultProps = {
        appearance: NOTIFICATION_TYPE.NORMAL,
        isDismissAllowed: true
    };
    /**
     * Initializes a new {@code Notification} instance.
     *
     * @param {Object} props - The read-only properties with which the new
     * instance is to be initialized.
     */
    constructor(props: P) {
        super(props);
        // Bind event handler so it is only bound once for every instance.
        this._onDismissed = this._onDismissed.bind(this);
    }
    _getDescription: () => Array<string>
    /**
     * Returns the description array to be displayed.
     *
     * @protected
     * @returns {Array<string>}
     */
    _getDescription() {
        const {
            description,
            descriptionArguments,
            descriptionKey,
            t
        } = this.props;
        const descriptionArray = [];
        descriptionKey
            && descriptionArray.push(t(descriptionKey, descriptionArguments));
        description && descriptionArray.push(description);
        return descriptionArray;
    }
    _onDismissed: () => void;
    /**
     * Callback to dismiss the notification.
     *
     * @private
     * @returns {void}
     */
    _onDismissed() {
        this.props.onDismissed(this.props.uid);
    }
}
 |