mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
58 lines
2.0 KiB
TypeScript
58 lines
2.0 KiB
TypeScript
import ngtoaster = require('ngtoaster');
|
|
import * as angular from 'angular';
|
|
|
|
class NgToasterTestController {
|
|
constructor(
|
|
public $scope: angular.IScope,
|
|
public $window: angular.IWindowService,
|
|
public toaster: ngtoaster.IToasterService
|
|
) {
|
|
this.bar = 'Hi';
|
|
}
|
|
bar: string;
|
|
|
|
pop(): void {
|
|
this.toaster.success({ title: 'title', body: 'text1' });
|
|
this.toaster.error('title', 'text2');
|
|
this.toaster.pop({
|
|
type: 'wait',
|
|
title: 'title',
|
|
body: 'text',
|
|
onShowCallback: (toast) => {
|
|
this.toaster.clear(null, toast.toastId);
|
|
}
|
|
});
|
|
this.toaster.pop('success', 'title', '<ul><li>Render html</li></ul>', 5000, 'trustedHtml');
|
|
this.toaster.pop('error', 'title', '<ul><li>Render html</li></ul>', null, 'trustedHtml');
|
|
this.toaster.pop('wait', 'title', null, null, 'template');
|
|
this.toaster.pop('warning', 'title', 'myTemplate.html', null, 'template');
|
|
this.toaster.pop('note', 'title', 'text');
|
|
this.toaster.pop('success', 'title', 'Its address is https://google.com.', 5000, 'trustedHtml', (toaster: ngtoaster.IToast): boolean => {
|
|
const match = toaster.body.match(/http[s]?:\/\/[^\s]+/);
|
|
if (match) {
|
|
this.$window.open(match[0]);
|
|
}
|
|
return true;
|
|
});
|
|
this.toaster.pop('warning', 'Hi ', `{template: 'myTemplateWithData.html', data: 'MyData'}`, 15000, 'templateWithData');
|
|
}
|
|
|
|
goToLink(toaster: ngtoaster.IToast): boolean {
|
|
const match = toaster.body.match(/http[s]?:\/\/[^\s]+/);
|
|
if (match) {
|
|
this.$window.open(match[0]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
clear(): void {
|
|
this.toaster.clear();
|
|
this.toaster.clear(1);
|
|
this.toaster.clear(null, 'mytoast');
|
|
}
|
|
}
|
|
|
|
angular
|
|
.module('main', ['ngAnimate', 'toaster'])
|
|
.controller('myController', NgToasterTestController);
|