- Update banner on settings page with 2 options: go to releases page on this GitHub repository or to skip this update (unrecommended) - You can now skip updates (again, unrecommended) - Added "Reset to Default" button on all options modals on the settings page which will reset that setting's specific options to their defaults. - Removed element IDs from the "Modify Navbar" feature options modal (they were there due to the old way options modals worked before release) - Renamed polyplus-settings.js to settings.js - Updated all "IRL Price with Brick Count" display code to have different variable names - "IRL Price with Brick Count" is more accurate by parsing abbreviated numbers into their full number (fixing odd bugs that would happen with things such as a user's networth) - it is still not super accurate when it comes to users' networth but it's way better than before - You can now clear specific data locations (chrome.storage.sync and chrome.storage.local) on the extension's debug page - Updated update notifier code - The profile page now uses the utilities to calculate the "IRL Price with Brick Count" result rather than using the old repetitive code - Added another extension icon for when the extension has an update available - it currently isn't used anywhere due to the code for it not working for some reason
106 lines
No EOL
4 KiB
JavaScript
Executable file
106 lines
No EOL
4 KiB
JavaScript
Executable file
const UserID = JSON.parse(window.localStorage.getItem('account_info')).ID
|
|
|
|
var Settings;
|
|
|
|
var Utilities;
|
|
(async () => {
|
|
Utilities = await import(chrome.runtime.getURL('/js/resources/utils.js'));
|
|
Utilities = Utilities.default
|
|
|
|
Update()
|
|
})();
|
|
|
|
const ItemGrid = document.getElementById('assets')
|
|
var Inventory = [];
|
|
|
|
chrome.storage.sync.get(['PolyPlus_Settings'], function(result){
|
|
Settings = result.PolyPlus_Settings || Utilities.DefaultSettings;
|
|
console.log(Settings)
|
|
});
|
|
|
|
function Update() {
|
|
if (Settings.IRLPriceWithCurrencyOn === true) {
|
|
Array.from(ItemGrid.children).forEach(element => {
|
|
LoadIRLPrices(element)
|
|
});
|
|
}
|
|
|
|
if (Settings.StoreOwnTagOn === true) {
|
|
Array.from(ItemGrid.children).forEach(element => {
|
|
LoadOwnedTags(element)
|
|
});
|
|
}
|
|
}
|
|
|
|
const observer = new MutationObserver(async function (list){
|
|
for (const record of list) {
|
|
for (const element of record.addedNodes) {
|
|
if (element.tagName === "DIV" && element.classList.value === 'mb-3 itemCardCont') {
|
|
if (Settings.IRLPriceWithCurrencyOn === true) {LoadIRLPrices(element)}
|
|
if (Settings.StoreOwnTagOn === true) {
|
|
if (Inventory.length === 0) {
|
|
await fetch("https://api.polytoria.com/v1/users/:id/inventory".replace(':id', UserID))
|
|
.then(response => {
|
|
if (!response.ok) {
|
|
throw new Error('Network not ok')
|
|
}
|
|
return response.json()
|
|
})
|
|
.then(data => {
|
|
Inventory = data.data;
|
|
LoadOwnedTags(element)
|
|
return
|
|
})
|
|
.catch(error => {
|
|
console.log(error)
|
|
});
|
|
} else {
|
|
LoadOwnedTags(element)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
observer.observe(ItemGrid, {attributes: false,childList: true,subtree: false});
|
|
}
|
|
});
|
|
|
|
observer.observe(ItemGrid, {attributes: false,childList: true,subtree: false});
|
|
|
|
async function LoadIRLPrices(element) {
|
|
if (element.tagName != "DIV") {return}
|
|
if (element.querySelector('small.text-primary')) {return}
|
|
const Parent = element.getElementsByTagName('small')[1]
|
|
if (Parent.innerText === "") { return }
|
|
const Span = document.createElement('span')
|
|
Span.classList = 'text-muted polyplus-price-tag'
|
|
Span.style.fontSize = '0.7rem'
|
|
const Price = Parent.innerText.split(' ')[1]
|
|
const IRLResult = await Utilities.CalculateIRL(Price, Settings.IRLPriceWithCurrencyCurrency)
|
|
Span.innerText = "($" + IRLResult.result + " " + IRLResult.display + ")"
|
|
Parent.appendChild(Span)
|
|
}
|
|
|
|
function LoadOwnedTags(element) {
|
|
let Item = CheckInventory(parseInt(element.querySelector('[href^="/store/"]').getAttribute('href').split('/')[2]))
|
|
if (Item.id) {
|
|
var Tag = document.createElement('span')
|
|
Tag.classList = 'badge bg-primary polyplus-own-tag'
|
|
Tag.setAttribute('style', 'position: absolute;font-size: 0.7rem;top: 0px;left: 0px;padding: 5.5px;border-top-left-radius: var(--bs-border-radius-lg)!important;border-top-right-radius: 0px;border-bottom-left-radius: 0px;font-size: 0.65rem;')
|
|
if (Item.asset.isLimited === false) {
|
|
Tag.innerText = "owned"
|
|
} else {
|
|
Tag.innerHTML = 'owned<br><span class="text-muted" style="font-size: 0.65rem;">#' + Item.serial
|
|
}
|
|
element.getElementsByTagName('img')[0].parentElement.appendChild(Tag)
|
|
}
|
|
}
|
|
|
|
function CheckInventory(id) {
|
|
let Item = {}
|
|
Inventory.forEach(element => {
|
|
if (element.asset.id === id) {
|
|
Item = element
|
|
}
|
|
})
|
|
return Item
|
|
} |