You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
TypeScript
61 lines
1.3 KiB
TypeScript
export function push(options: {
|
|
title: string;
|
|
id?: string;
|
|
description?: string;
|
|
type?: 'success' | 'info' | 'warning' | 'error';
|
|
icon?: string;
|
|
shouldFade?: boolean;
|
|
}) {
|
|
window.pushToast(options);
|
|
}
|
|
|
|
export function pushLoadAttachmentFailure() {
|
|
window.pushToast({
|
|
title: window.i18n('unableToLoadAttachment'),
|
|
type: 'error',
|
|
id: 'unableToLoadAttachment',
|
|
});
|
|
}
|
|
|
|
|
|
export function pushDangerousFileError() {
|
|
window.pushToast({
|
|
title: window.i18n('dangerousFileType'),
|
|
type: 'error',
|
|
id: 'dangerousFileType',
|
|
});
|
|
}
|
|
|
|
export function pushFileSizeError(limit: number, units: string) {
|
|
window.pushToast({
|
|
title: window.i18n('fileSizeWarning'),
|
|
description: `Max size: ${limit} ${units}`,
|
|
type: 'error',
|
|
id: 'fileSizeWarning',
|
|
});
|
|
}
|
|
|
|
export function pushMultipleNonImageError() {
|
|
window.pushToast({
|
|
title: window.i18n('cannotMixImageAndNonImageAttachments'),
|
|
type: 'error',
|
|
id: 'cannotMixImageAndNonImageAttachments',
|
|
});
|
|
}
|
|
|
|
export function pushCannotMixError() {
|
|
window.pushToast({
|
|
title: window.i18n('oneNonImageAtATimeToast'),
|
|
type: 'error',
|
|
id: 'oneNonImageAtATimeToast',
|
|
});
|
|
}
|
|
|
|
export function pushMaximumAttachmentsError() {
|
|
window.pushToast({
|
|
title: window.i18n('maximumAttachments'),
|
|
type: 'error',
|
|
id: 'maximumAttachments',
|
|
});
|
|
}
|