diff options
author | Indrajith K L | 2017-12-19 14:21:29 +0530 |
---|---|---|
committer | Indrajith K L | 2017-12-19 14:21:29 +0530 |
commit | c0eb82f55a40f64025800c0ad2b6a05290576337 (patch) | |
tree | cce2a386dea2508de10d6a6bb58f492329173434 /src/yo/vanilla.yo.notification.ts | |
parent | ab0d224a293dfb2e6f2f70fd1f8180f6957c15be (diff) | |
download | vanilla-yo-notification-c0eb82f55a40f64025800c0ad2b6a05290576337.tar.gz vanilla-yo-notification-c0eb82f55a40f64025800c0ad2b6a05290576337.tar.bz2 vanilla-yo-notification-c0eb82f55a40f64025800c0ad2b6a05290576337.zip |
Now supports
* type arguments,
* positional parameters and
* html as content
* Documentation updates
Diffstat (limited to 'src/yo/vanilla.yo.notification.ts')
-rw-r--r-- | src/yo/vanilla.yo.notification.ts | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/yo/vanilla.yo.notification.ts b/src/yo/vanilla.yo.notification.ts new file mode 100644 index 0000000..00c0583 --- /dev/null +++ b/src/yo/vanilla.yo.notification.ts @@ -0,0 +1,83 @@ +// Import stylesheets +import '../styles/style.css'; +import { Config } from '../interfaces/config.interface'; + + +export default class VYN { + + private notificationTemplate: string; + private defaultConfig: Config; + private notifInner: any; + private container: any; + + constructor(config: Config) { + this.defaultConfig = { + content: config.content ? config.content : '', + footer: config.footer ? config.footer : '', + timeout: config.timeout ? config.timeout : 3000, + title: config.title ? config.title : '', + type: config.type ? config.type : 'success', + position: (config.position && config.position.length == 2) ? config.position : ['bottom', 'right'] + } + this.init(); + } + + private init() { + + this.buildContainers(); + + + } + + buildContainers() { + this.container = document.createElement('div'); + this.container.className = `notif-mainContainer ${this.defaultConfig.position.join('-')}`; + + this.notifInner = document.createElement('div'); + this.notifInner.className = "notif-inner"; + + this.container.appendChild(this.notifInner); + document.body.appendChild(this.container); + } + + + show(config: Config) { + + let notifContainer = document.createElement('div'); + notifContainer.className = `vanilla-yo-notification ${config.type ? config.type : this.defaultConfig.type}`; + + this.notificationTemplate = ` + <div class="notification_container"> + <div class="notification_header"> + ${config.title ? config.title : this.defaultConfig.title} + </div> + <div class="notification_body"> + ${config.content ? config.content : this.defaultConfig.content} + </div> + <div class="notification_footer"> + ${config.footer ? config.footer : this.defaultConfig.footer} + </div> + </div> + `; + + + notifContainer.innerHTML = (this.notificationTemplate); + this.notifInner.appendChild(notifContainer); + + + setTimeout(() => { + notifContainer.className = notifContainer.className + ' close'; + this.destroyNotification(notifContainer); + }, (config.timeout ? config.timeout : this.defaultConfig.timeout)); + + + } + + private destroyNotification(container: Node) { + setTimeout(()=>{ + this.notifInner.removeChild(container); + },100); + + } +} + |