<!DOCTYPE html>
<html>
<head>
<base href="." />
<script type="text/javascript" charset="utf-8">
window.AngularVersionForThisPlunker = 'latest'
</script>
<title>angular playground</title>
<link rel="stylesheet" href="https://unpkg.com/sweetalert2/dist/sweetalert2.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/zone.js/dist/zone.js"></script>
<script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
<script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
<script src="config.js"></script>
<script>
System.import('app').catch(console.error.bind(console));
</script>
</head>
<body>
<sweetalert-app>loading...</sweetalert-app>
</body>
</html>
var angularVersion;
if(window.AngularVersionForThisPlunker === 'latest'){
angularVersion = ''; //picks up latest
} else {
angularVersion = '@' + window.AngularVersionForThisPlunker;
}
System.config({
//use typescript for compilation
transpiler: 'typescript',
//typescript compiler options
typescriptOptions: {
emitDecoratorMetadata: true
},
paths: {
'npm:': 'https://unpkg.com/'
},
//map tells the System loader where to look for things
map: {
'app': './src',
'@angular/core': 'npm:@angular/core'+ angularVersion + '/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common' + angularVersion + '/bundles/common.umd.js',
'@angular/common/http': 'npm:@angular/common' + angularVersion + '/bundles/common-http.umd.js',
'@angular/compiler': 'npm:@angular/compiler' + angularVersion + '/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic' + angularVersion + '/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http' + angularVersion + '/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router' + angularVersion +'/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms' + angularVersion + '/bundles/forms.umd.js',
'@angular/animations': 'npm:@angular/animations' + angularVersion + '/bundles/animations.umd.js',
'@angular/platform-browser/animations': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser-animations.umd.js',
'@angular/animations/browser': 'npm:@angular/animations' + angularVersion + '/bundles/animations-browser.umd.js',
'@angular/core/testing': 'npm:@angular/core' + angularVersion + '/bundles/core-testing.umd.js',
'@angular/common/testing': 'npm:@angular/common' + angularVersion + '/bundles/common-testing.umd.js',
'@angular/common/http/testing': 'npm:@angular/common' + angularVersion + '/bundles/common-http-testing.umd.js',
'@angular/compiler/testing': 'npm:@angular/compiler' + angularVersion + '/bundles/compiler-testing.umd.js',
'@angular/platform-browser/testing': 'npm:@angular/platform-browser' + angularVersion + '/bundles/platform-browser-testing.umd.js',
'@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic' + angularVersion + '/bundles/platform-browser-dynamic-testing.umd.js',
'@angular/http/testing': 'npm:@angular/http' + angularVersion + '/bundles/http-testing.umd.js',
'@angular/router/testing': 'npm:@angular/router' + angularVersion + '/bundles/router-testing.umd.js',
'@toverux/ngsweetalert2': 'npm:@toverux/ngsweetalert2/dist/ng-sweetalert2.umd.js',
'sweetalert2': 'npm:sweetalert2/dist/sweetalert2.js',
'tslib': 'npm:tslib@1.6.1',
'rxjs': 'npm:rxjs',
'typescript': 'npm:typescript@2.2.1/lib/typescript.js'
},
//packages defines our app package
packages: {
app: {
main: './main.ts',
defaultExtension: 'ts'
},
rxjs: {
defaultExtension: 'js'
}
}
});
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app';
platformBrowserDynamic().bootstrapModule(AppModule);
import { Component, NgModule, ViewChild, VERSION } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { SweetAlert2Module, SwalComponent } from '@toverux/ngsweetalert2';
import swal from 'sweetalert2';
@Component({
selector: 'sweetalert-app',
template: `
<div>
<h2>NgSweetAlert2 Demo</h2>
<!-- DELETE FILE USING [swal] -->
<button [swal]="{ title: 'Delete?', text: 'This cannot be undone.', type: 'question', showCancelButton: true }"
(confirm)="confirmDeleteFile()"
(cancel)="fileNotDeletedSwal.show()">
Delete the imaginary file (using [swal])
</button>
<br><br>
<!-- DELETE FILE USING <swal> -->
<button (click)="confirmFileDeletionSwal.show()">
Delete the imaginary file (using <swal>)
</button>
<swal #confirmFileDeletionSwal
title="Delete?" text="This cannot be undone" type="question"
[options]="{ showCancelButton: true }"
(confirm)="confirmDeleteFile()"
(cancel)="fileNotDeletedSwal.show()"></swal>
<!-- FILE DELETED / NOT DELETED SWALS -->
<swal #fileDeletedSwal title="Deleted!" text="Your file has been deleted!" type="success"></swal>
<swal #fileNotDeletedSwal title="Deletion cancelled" text="Your file is safe. But do not abuse of dialogs -- that's what you're doing here" type="info"></swal>
<swal #fileDeletionErrorSwal title="Error deleting your file" text="An error occurred while deleting the file, please retry later." type="error"></swal>
</div>
`,
})
export class App {
@ViewChild('fileDeletedSwal')
public fileDeletedSwal: SwalComponent;
@ViewChild('fileDeletionErrorSwal')
public fileDeletionErrorSwal: SwalComponent;
public confirmDeleteFile(): void {
// we could also use try/catch and "await deleteFile()" but a classic approach is much simpler here
this.deleteFile()
// on success or error, display the appropriate alert
.then(() => this.fileDeletedSwal.show(), () => this.fileDeletionErrorSwal.show())
// ignore the promise rejection when the success or error alert is dismissed
.catch(swal.noop);
}
public deleteFile(): Promise<void> {
return new Promise<void>((resolve, reject) => {
setTimeout(() => resolve()), 2000);
});
}
}
@NgModule({
imports: [
BrowserModule,
// set default SweetAlert options
SweetAlert2Module.forRoot({
confirmButtonText: 'Ok!'
})
],
declarations: [App],
bootstrap: [App]
})
export class AppModule {}