diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-06-02 14:07:03 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-12-13 17:09:13 +0100 |
| commit | d6a8bac147b196118d3e2ed56bd67522bc4c5da6 (patch) | |
| tree | f5e314d4ddae3ea12585d785275d9ca435c74c7e /src/InstallNotification.vue | |
| parent | 9fde9d573334805b7206b50b16797639097003d2 (diff) | |
| download | brokentalents-d6a8bac147b196118d3e2ed56bd67522bc4c5da6.tar.gz brokentalents-d6a8bac147b196118d3e2ed56bd67522bc4c5da6.zip | |
Convert images to jpg
Diffstat (limited to 'src/InstallNotification.vue')
| -rw-r--r-- | src/InstallNotification.vue | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/InstallNotification.vue b/src/InstallNotification.vue new file mode 100644 index 0000000..b1a0349 --- /dev/null +++ b/src/InstallNotification.vue @@ -0,0 +1,42 @@ +<template> + <div class="notification is-primary" v-show="deferredPrompt != undefined"> + <button class="delete" @click="deferredPrompt = undefined"></button> + <div class="has-text-centered">Add to your homescreen for fast and offline access?</div> + <div class="has-text-centered install-button"> + <button class="button is-medium" @click="deferredPrompt.prompt()"> + <span class="mdi mdi-download"></span> + <span> Install</span> + </button> + </div> + </div> +</template> + +<style scoped lang="scss"> +.install-button { + margin-top: 1em; + margin-bottom: 0.5em; +} +</style> + +<script> +import Vue from 'vue'; + +export default Vue.component('install-notification', { + data: function() { + return { + deferredPrompt: undefined, + }; + }, + methods: { + promptInstall: function(p) { + this.deferredPrompt = p; + }, + }, + created: function() { + window.addEventListener('beforeinstallprompt', this.promptInstall); + }, + destroyed: function() { + window.removeEventListener('beforeinstallprompt', this.promptInstall); + }, +}); +</script> |
