Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Commit

Permalink
temporarily disable dynamic bgs for build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Apr 22, 2022
1 parent 5020ce9 commit b2f1946
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions resources/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,17 @@ async function displayGenshinFolder() {
async function setBackgroundImage() {
const config = await getCfg()

const privImages = (await filesystem.readDirectory(NL_CWD + '/resources/bg/private')).filter(file => file.type === 'FILE' && !file.entry.includes('default'))
const privImage = privImages[Math.floor(Math.random() * privImages.length)].entry

// Set default image, it will change if the bg folder exists
document.querySelector('#firstHalf').style.backgroundImage = `url("https://webstatic.hoyoverse.com/upload/event/2020/11/04/7fd661b5184e1734f91f628b6f89a31f_7367318474207189623.png")`

return

// Set the background image
document.querySelector('#secondHalf').style.backgroundImage = `url("../bg/private/${privImage}")`

// Check if resources folder exists
const mainDir = await filesystem.readDirectory(NL_CWD)
if (!mainDir.find(dir => dir.entry === 'resources')) {
Expand All @@ -193,9 +204,6 @@ async function setBackgroundImage() {
await filesystem.createDirectory(NL_CWD + '/resources/bg/official')
}

// Set default image, it will change if the bg folder exists
document.querySelector('#firstHalf').style.backgroundImage = `url("https://webstatic.hoyoverse.com/upload/event/2020/11/04/7fd661b5184e1734f91f628b6f89a31f_7367318474207189623.png")`

if (config.genshinImpactFolder) {
// See if bg folder exists in parent dir
const parentDir = await filesystem.readDirectory(config.genshinImpactFolder + '/..')
Expand Down Expand Up @@ -227,12 +235,6 @@ async function setBackgroundImage() {
}
}
}

const privImages = (await filesystem.readDirectory(NL_CWD + '/resources/bg/private')).filter(file => file.type === 'FILE' && !file.entry.includes('default'))
const privImage = privImages[Math.floor(Math.random() * privImages.length)].entry

// Set the background image
document.querySelector('#secondHalf').style.backgroundImage = `url("../bg/private/${privImage}")`
}

/**
Expand Down

0 comments on commit b2f1946

Please sign in to comment.