framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
44 lines (42 loc) • 849 B
JavaScript
import Utils from '../../utils/utils';
import Toast from './toast-class';
import ModalMethods from '../../utils/modal-methods';
export default {
name: 'toast',
static: {
Toast,
},
create() {
const app = this;
app.toast = Utils.extend(
{},
ModalMethods({
app,
constructor: Toast,
defaultSelector: '.toast.modal-in',
}),
{
// Shortcuts
show(params) {
Utils.extend(params, {
destroyOnClose: true,
});
return new Toast(app, params).open();
},
}
);
},
params: {
toast: {
icon: null,
text: null,
position: 'bottom',
closeButton: false,
closeButtonColor: null,
closeButtonText: 'Ok',
closeTimeout: null,
cssClass: null,
render: null,
},
},
};