mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-11 17:55:51 +00:00
Fix page counter
This commit is contained in:
parent
8952736357
commit
f0897e2982
@ -760,7 +760,7 @@ class QApps extends LitElement {
|
|||||||
} else {
|
} else {
|
||||||
offset = 0
|
offset = 0
|
||||||
}
|
}
|
||||||
this.getData(offset);
|
this.getData(offset)
|
||||||
const selectedPage = parseInt(this.pagesControl.querySelector('[selected]').textContent)
|
const selectedPage = parseInt(this.pagesControl.querySelector('[selected]').textContent)
|
||||||
this.updateItemsFromPage(selectedPage - 1)
|
this.updateItemsFromPage(selectedPage - 1)
|
||||||
})
|
})
|
||||||
@ -776,7 +776,7 @@ class QApps extends LitElement {
|
|||||||
} else {
|
} else {
|
||||||
offset = 0
|
offset = 0
|
||||||
}
|
}
|
||||||
this.getData(offset);
|
this.getData(offset)
|
||||||
this.updateItemsFromPage(parseInt(e.target.textContent))
|
this.updateItemsFromPage(parseInt(e.target.textContent))
|
||||||
})
|
})
|
||||||
if (pageNumber === page) {
|
if (pageNumber === page) {
|
||||||
@ -793,7 +793,7 @@ class QApps extends LitElement {
|
|||||||
} else {
|
} else {
|
||||||
offset = 0
|
offset = 0
|
||||||
}
|
}
|
||||||
this.getData(offset);
|
this.getData(offset)
|
||||||
const selectedPage = parseInt(this.pagesControl.querySelector('[selected]').textContent)
|
const selectedPage = parseInt(this.pagesControl.querySelector('[selected]').textContent)
|
||||||
this.updateItemsFromPage(selectedPage + 1)
|
this.updateItemsFromPage(selectedPage + 1)
|
||||||
})
|
})
|
||||||
@ -831,6 +831,12 @@ class QApps extends LitElement {
|
|||||||
await this.updateItemsFromPage(1, true)
|
await this.updateItemsFromPage(1, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async refreshapps() {
|
||||||
|
await this.getData(0)
|
||||||
|
await this.getArbitraryResources()
|
||||||
|
await this.updateItemsFromPage(1, true)
|
||||||
|
}
|
||||||
|
|
||||||
doSearch(e) {
|
doSearch(e) {
|
||||||
this.searchResult()
|
this.searchResult()
|
||||||
}
|
}
|
||||||
@ -1008,7 +1014,7 @@ class QApps extends LitElement {
|
|||||||
this.followedNames.push(name)
|
this.followedNames.push(name)
|
||||||
this.getFollowedNamesRefresh()
|
this.getFollowedNamesRefresh()
|
||||||
this.getFollowedNamesResource()
|
this.getFollowedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshapps()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err3string = get("appspage.schange22")
|
let err3string = get("appspage.schange22")
|
||||||
@ -1037,7 +1043,7 @@ class QApps extends LitElement {
|
|||||||
this.followedNames = this.followedNames.filter(item => item != name)
|
this.followedNames = this.followedNames.filter(item => item != name)
|
||||||
this.getFollowedNamesRefresh()
|
this.getFollowedNamesRefresh()
|
||||||
this.getFollowedNamesResource()
|
this.getFollowedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshapps()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err4string = get("appspage.schange23")
|
let err4string = get("appspage.schange23")
|
||||||
@ -1067,7 +1073,7 @@ class QApps extends LitElement {
|
|||||||
this.blockedNames.push(name)
|
this.blockedNames.push(name)
|
||||||
this.getBlockedNamesRefresh()
|
this.getBlockedNamesRefresh()
|
||||||
this.getBlockedNamesResource()
|
this.getBlockedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshapps()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err5string = get("appspage.schange24")
|
let err5string = get("appspage.schange24")
|
||||||
@ -1096,7 +1102,7 @@ class QApps extends LitElement {
|
|||||||
this.blockedNames = this.blockedNames.filter(item => item != name)
|
this.blockedNames = this.blockedNames.filter(item => item != name)
|
||||||
this.getBlockedNamesRefresh()
|
this.getBlockedNamesRefresh()
|
||||||
this.getBlockedNamesResource()
|
this.getBlockedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshapps()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err6string = get("appspage.schange25")
|
let err6string = get("appspage.schange25")
|
||||||
|
@ -676,6 +676,12 @@ class Websites extends LitElement {
|
|||||||
await this.updateItemsFromPage(1, true)
|
await this.updateItemsFromPage(1, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async refreshWebsites() {
|
||||||
|
await this.getData(0)
|
||||||
|
await this.getArbitraryResources()
|
||||||
|
await this.updateItemsFromPage(1, true)
|
||||||
|
}
|
||||||
|
|
||||||
doSearch(e) {
|
doSearch(e) {
|
||||||
this.searchResult()
|
this.searchResult()
|
||||||
}
|
}
|
||||||
@ -753,7 +759,7 @@ class Websites extends LitElement {
|
|||||||
this.followedNames.push(name)
|
this.followedNames.push(name)
|
||||||
this.getFollowedNamesRefresh()
|
this.getFollowedNamesRefresh()
|
||||||
this.getFollowedNamesResource()
|
this.getFollowedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshWebsites()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err3string = get("websitespage.schange22")
|
let err3string = get("websitespage.schange22")
|
||||||
@ -783,7 +789,7 @@ class Websites extends LitElement {
|
|||||||
this.followedNames = this.followedNames.filter(item => item != name)
|
this.followedNames = this.followedNames.filter(item => item != name)
|
||||||
this.getFollowedNamesRefresh()
|
this.getFollowedNamesRefresh()
|
||||||
this.getFollowedNamesResource()
|
this.getFollowedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshWebsites()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err4string = get("websitespage.schange23")
|
let err4string = get("websitespage.schange23")
|
||||||
@ -816,7 +822,7 @@ class Websites extends LitElement {
|
|||||||
this.blockedNames.push(name)
|
this.blockedNames.push(name)
|
||||||
this.getBlockedNamesRefresh()
|
this.getBlockedNamesRefresh()
|
||||||
this.getBlockedNamesResource()
|
this.getBlockedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshWebsites()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err5string = get("websitespage.schange24")
|
let err5string = get("websitespage.schange24")
|
||||||
@ -846,7 +852,7 @@ class Websites extends LitElement {
|
|||||||
this.blockedNames = this.blockedNames.filter(item => item != name)
|
this.blockedNames = this.blockedNames.filter(item => item != name)
|
||||||
this.getBlockedNamesRefresh()
|
this.getBlockedNamesRefresh()
|
||||||
this.getBlockedNamesResource()
|
this.getBlockedNamesResource()
|
||||||
this.getArbitraryResources()
|
this.refreshWebsites()
|
||||||
this.updateComplete.then(() => this.requestUpdate())
|
this.updateComplete.then(() => this.requestUpdate())
|
||||||
} else {
|
} else {
|
||||||
let err6string = get("websitespage.schange25")
|
let err6string = get("websitespage.schange25")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user