Adding review reminder banner
Appears every 5 loads of settings page, and if the user hasn't dismissed itpull/148/head
parent
ae605177f1
commit
24189fff29
|
@ -90,6 +90,15 @@
|
||||||
color: #3174f1;
|
color: #3174f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* NOTIFICATIONS */
|
||||||
|
#notificationBanner {
|
||||||
|
display: none;
|
||||||
|
background-color: #f8f3d6;
|
||||||
|
font-size: .9em;
|
||||||
|
line-height: 1.2em;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
/* GLOBAL SETTINGS SECTION */
|
/* GLOBAL SETTINGS SECTION */
|
||||||
.options {
|
.options {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
@ -271,6 +280,17 @@
|
||||||
>Source Code</a
|
>Source Code</a
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="notificationBanner">
|
||||||
|
Enjoying Indie Wiki Buddy? Please leave a review!
|
||||||
|
<br />
|
||||||
|
<a target="_blank" href="https://chrome.google.com/webstore/detail/indie-wiki-buddy/fkagelmloambgokoeokbpihmgpkbgbfm">Chrome</a>
|
||||||
|
|
|
||||||
|
<a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/indie-wiki-buddy/">Firefox</a>
|
||||||
|
|
|
||||||
|
<a id="hideReviewReminderLink" href="#">Hide this message</a>
|
||||||
|
<br /><br />
|
||||||
|
Having issues or ideas for improvement? Please <a href="https://getindie.wiki/#contact">contact me</a>!
|
||||||
|
</div>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<h2>Global settings</h2>
|
<h2>Global settings</h2>
|
||||||
<div class="options">
|
<div class="options">
|
||||||
|
|
21
settings.js
21
settings.js
|
@ -436,6 +436,27 @@ function setBreezeWiki(setting) {
|
||||||
|
|
||||||
// Main function that runs on-load
|
// Main function that runs on-load
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
|
// Count number of times settings have been opened
|
||||||
|
// Purposefully using local storage instead of sync
|
||||||
|
chrome.storage.local.get({ 'countSettingsOpened': 0 }, function (item) {
|
||||||
|
const countSettingsOpened = item.countSettingsOpened;
|
||||||
|
chrome.storage.local.set({ 'countSettingsOpened': countSettingsOpened + 1 });
|
||||||
|
|
||||||
|
// Show review reminder every 5 opens,
|
||||||
|
// and if the banner hasn't been previously dismissed
|
||||||
|
chrome.storage.local.get({ 'hideReviewReminder': false }, function (item) {
|
||||||
|
if (!item.hideReviewReminder && ((countSettingsOpened - 1) % 5 === 0)) {
|
||||||
|
document.getElementById('notificationBanner').style.display = 'block';
|
||||||
|
|
||||||
|
// Hide review reminder if user clicks 'hide' link:
|
||||||
|
document.getElementById('hideReviewReminderLink').addEventListener('click', function () {
|
||||||
|
chrome.storage.local.set({ 'hideReviewReminder': true });
|
||||||
|
document.getElementById('notificationBanner').style.display = 'none';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// Adding version to popup:
|
// Adding version to popup:
|
||||||
const version = chrome.runtime.getManifest().version;
|
const version = chrome.runtime.getManifest().version;
|
||||||
document.getElementById('version').textContent = 'v' + version;
|
document.getElementById('version').textContent = 'v' + version;
|
||||||
|
|
Loading…
Reference in New Issue