Improved theme update

This commit is contained in:
2018-11-23 16:05:48 +09:00
parent c6f9216367
commit 6052ffd1d5
2 changed files with 23 additions and 14 deletions

@ -1,4 +1,5 @@
import AnimeNotifier from "../AnimeNotifier" import AnimeNotifier from "../AnimeNotifier"
import { applyTheme } from "./Theme"
// Save new data from an input field // Save new data from an input field
export async function save(arn: AnimeNotifier, input: HTMLElement) { export async function save(arn: AnimeNotifier, input: HTMLElement) {
@ -38,8 +39,8 @@ export async function save(arn: AnimeNotifier, input: HTMLElement) {
// Update nickname based links on the page // Update nickname based links on the page
return arn.reloadPage() return arn.reloadPage()
} else if(apiEndpoint.startsWith("/api/settings/") && input.dataset.field === "Theme") { } else if(apiEndpoint.startsWith("/api/settings/") && input.dataset.field === "Theme") {
// Reload for the theme to take effect // Apply theme instantly
location.reload() applyTheme((input as HTMLInputElement).value)
} else { } else {
return arn.reloadContent() return arn.reloadContent()
} }

@ -105,16 +105,25 @@ export function nextTheme(arn: AnimeNotifier) {
for(let i = 0; i < themesSorted.length; i++) { for(let i = 0; i < themesSorted.length; i++) {
if(themesSorted[i] === currentThemeName) { if(themesSorted[i] === currentThemeName) {
let newIndex = (i + 1) % themesSorted.length let newIndex = (i + 1) % themesSorted.length
applyTheme(themesSorted[newIndex]) applyThemeAndPreview(arn, themesSorted[newIndex])
break break
} }
} }
}
// Apply theme and check for PRO accounts
export function applyThemeAndPreview(arn: AnimeNotifier, themeName: string) {
applyTheme(themeName)
// Clear preview timeout // Clear preview timeout
clearTimeout(previewTimeoutID) clearTimeout(previewTimeoutID)
// If it's the free light theme or a PRO user, nothing to do here
if(currentThemeName === "light" || (arn.user && arn.user.dataset.pro == "true")) {
return
}
// Show preview message // Show preview message
if(currentThemeName !== "light" && (!arn.user || arn.user.dataset.pro !== "true")) {
arn.statusMessage.showInfo(`Previewing "${currentThemeName}" theme for 30 seconds. If you would like to use it permanently, please support us.`, 5000) arn.statusMessage.showInfo(`Previewing "${currentThemeName}" theme for 30 seconds. If you would like to use it permanently, please support us.`, 5000)
// After 30 seconds, switch back to default theme if the user doesn't own a PRO account // After 30 seconds, switch back to default theme if the user doesn't own a PRO account
@ -124,7 +133,6 @@ export function nextTheme(arn: AnimeNotifier) {
arn.statusMessage.showInfo("Theme preview time has ended. If you would like to use it permanently, please support us.", 5000) arn.statusMessage.showInfo("Theme preview time has ended. If you would like to use it permanently, please support us.", 5000)
} }
}, 30000) }, 30000)
}
} }
// Apply theme // Apply theme