本文整理汇总了TypeScript中@angular/material.MatSnackBar.open方法的典型用法代码示例。如果您正苦于以下问题:TypeScript MatSnackBar.open方法的具体用法?TypeScript MatSnackBar.open怎么用?TypeScript MatSnackBar.open使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@angular/material.MatSnackBar
的用法示例。
在下文中一共展示了MatSnackBar.open方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: startUpload
async startUpload(event: FileList) {
const file = event.item(0);
// Client-side validation: Must be an image and smaller than 10MB.
if (file.type.split('/')[0] !== 'image') {
return this.snackBar.open('Unsupported File Type', '', { duration: 3000, panelClass: 'snackbar-error' });
}
// Must be smaller than 20MB, http://www.unitconversion.org/data-storage/megabytes-to-bytes-conversion.html
if (file.size > 10485760) {
return this.snackBar.open('Images must be smaller than 10MB', '', { duration: 5000, panelClass: 'snackbar-error' });
}
const dictionary = await this.dictionariesService.getDictionary();
// Replace spaces w/ underscores in dict name, remove special characters from lexeme so image converter can accept filename
const _dictName = dictionary.name.replace(/\s+/g, '_');
const _lexeme = this.entry.lx.replace(/[^a-z0-9+]+/gi, '_');
const fileTypeSuffix = file.name.match(/\.[0-9a-z]+$/i)[0];
const path = `images/${_dictName}_${dictionary.id}/${_lexeme}_${this.entry.id}_${new Date().getTime()}${fileTypeSuffix}`;
// optional metadata
const { displayName, uid } = await this.auth.getUser();
const customMetadata = { uploadedBy: displayName };
this.task = this.storage.upload(path, file, { customMetadata });
this.percentage = this.task.percentageChanges();
this.task.then(snap => {
if (snap.state === 'success') { this.savePhoto(path, displayName, uid, this.entry.lx, dictionary.id); }
}).catch(() => {
this.snackBar.open('Image Upload Failed', '', { duration: 3000, panelClass: 'snackbar-error' });
});
}
示例2: copySource
/**
* Copy the source
*
* @param {string} text
*/
copySource(text: string): void
{
if ( this._fuseCopierService.copyText(text) )
{
this._matSnackBar.open('Code copied', '', {duration: 2500});
}
else
{
this._matSnackBar.open('Copy failed. Please try again!', '', {duration: 2500});
}
}
示例3: setTimeout
setTimeout(() => {
this.matSnackBar.open('');
this.matSnackBar.open(
this.translate.instant('The link is broken. Please contact your system administrator.'),
this.translate.instant('OK'),
{
duration: 0
}
);
this.router.navigate(['/login']);
});
示例4: map
map(connected =>
connected
? this.snackBar.open(`Connected to Dotstar`, '', {
panelClass: ['bgc-green', 'c-black'],
duration: 3000,
verticalPosition: 'top',
})
: this.snackBar.open(`Connection closed`, 'Reconnect', {
duration: 3000,
verticalPosition: 'top',
})
示例5:
d => {
if (d.success) {
this.snackBar.open(d.msg, '', {
duration: 5000,
});
} else {
this.snackBar.open(d.msg, '', {
duration: 5000,
});
this.loadEmail = true;
}
}, (err) => {
示例6: toggleSetting
public async toggleSetting(setting: string, value: boolean) {
try {
const newSetting = { [setting]: !value };
const dictionary = await this.dictionariesService.currentDictionary.pipe(first()).toPromise();
await this.afs.doc(`dictionaries/${dictionary.id}/config/settings`).set(newSetting, { merge: true });
this.snackBar.open('Setting updated', '', { duration: 2000 });
} catch (err) {
this.snackBar.open('Failed to update setting.', '', {
panelClass: 'snackbar-error',
duration: 3000
});
}
}
示例7: displaySimpleAlert
public displaySimpleAlert(alert: SimpleAlert) {
this.snackBar.open(alert.message, alert.action || 'OK', {
duration: alert.duration || 500,
verticalPosition: "top"
});
}
示例8: onSubmit
onSubmit() {
// this method is called if the contact is valid and dirty (no point updating if no changes made)
this.snackBar.open('Contact created.', '', {duration: 3000});
this.contact.photo = 'https://robohash.org/etquasiqui.jpg?size=250x250&set=set1';
this.contactService.createContact(this.contact);
this.router.navigate(['contacts']);
}
示例9: displayErrorMessage
displayErrorMessage(error: string, duration: number = 4000, action?: string): void {
this.snackBar.open(error, action, {
announcementMessage: error,
duration,
panelClass: 'error-snackbar'
});
}