perform startup initialization

This commit is contained in:
Lauchmelder 2022-03-21 14:03:34 +01:00
parent 335d611e57
commit fc6122c99c
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
2 changed files with 22 additions and 11 deletions

View file

@ -1,3 +1,14 @@
chrome.storage.local.get("token", (data) => {
if(data.token !== undefined)
return
chrome.storage.local.set({
"enabled": true,
"enabledVocab": true,
"enabledKanji": true
})
})
// Query a WaniKani API endpoint with the given token
const query = (token, url) =>
new Promise(async (resolve, reject) => {

View file

@ -64,17 +64,17 @@ submitButton.addEventListener( "click", () => {
// Sync with wanikani
chrome.runtime.sendMessage("", {type: "sync"}, response => {
if(response.success)
{
statusField.innerHTML = String.fromCodePoint(0x2705)
errorField.innerHTML = ""
}
else
{
statusField.innerHTML = String.fromCodePoint(0x2757)
errorField.innerHTML = response.error
}
})
if(response.success)
{
statusField.innerHTML = String.fromCodePoint(0x2705)
errorField.innerHTML = ""
}
else
{
statusField.innerHTML = String.fromCodePoint(0x2757)
errorField.innerHTML = response.error
}
})
})
// Set settings event listeners