refactor + documentation

This commit is contained in:
Lauchmelder 2022-03-20 01:12:51 +01:00
parent 0a69f12cb7
commit 97a173ad47
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
2 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,7 @@
// Get stored word list from chrome storage
chrome.storage.local.get(["vocabulary", "kanji", "validUserLevel"], (data) => {
// The users level is not valid, e.g. it exceeds the maximum allowed level
// WaniKani requires that devs check if users are actually allowed to access content of this level
if(!data.validUserLevel)
return

View file

@ -1,10 +1,12 @@
const submitButton = document.getElementById("submit-token")
const inputField = document.getElementById("token");
// Set the wanikani token
submitButton.addEventListener( "click", () => {
chrome.storage.local.set({"token": inputField.value})
})
// Sync local data with wanikani
const downloadButton = document.getElementById("download")
downloadButton.addEventListener("click", async () => {
var loadingText = document.getElementById("loading")
@ -18,6 +20,7 @@ downloadButton.addEventListener("click", async () => {
})
})
// Display currently used wanikani level
chrome.storage.local.get("level", (data) => {
const levelSpan = document.getElementById("level")
levelSpan.innerHTML = data.level