mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-04-23 11:27:52 +00:00
fix query
This commit is contained in:
parent
7934c88782
commit
acdf276e7c
@ -213,13 +213,13 @@ class ShowPlugin extends connect(store)(LitElement) {
|
|||||||
class="add-tab-button"
|
class="add-tab-button"
|
||||||
title="Add Tab"
|
title="Add Tab"
|
||||||
@click=${() => {
|
@click=${() => {
|
||||||
const lengthOfTabs = this.tabs.length
|
const lengthOfTabs = this.tabs.length
|
||||||
this.addTab({
|
this.addTab({
|
||||||
url: "",
|
url: "",
|
||||||
id: this.uid()
|
id: this.uid()
|
||||||
})
|
})
|
||||||
this.currentTab = lengthOfTabs
|
this.currentTab = lengthOfTabs
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
+
|
+
|
||||||
</button>
|
</button>
|
||||||
@ -490,6 +490,12 @@ class NavBar extends connect(store)(LitElement) {
|
|||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
|
getApiKey() {
|
||||||
|
const apiNode = window.parent.reduxStore.getState().app.nodeConfig.knownNodes[window.parent.reduxStore.getState().app.nodeConfig.node]
|
||||||
|
let apiKey = apiNode.apiKey
|
||||||
|
return apiKey
|
||||||
|
}
|
||||||
|
|
||||||
async extractComponents(url) {
|
async extractComponents(url) {
|
||||||
if (!url.startsWith("qortal://")) {
|
if (!url.startsWith("qortal://")) {
|
||||||
return null
|
return null
|
||||||
@ -509,11 +515,11 @@ class NavBar extends connect(store)(LitElement) {
|
|||||||
// Check if a resource exists with this service, name and identifier combination
|
// Check if a resource exists with this service, name and identifier combination
|
||||||
const myNode = store.getState().app.nodeConfig.knownNodes[store.getState().app.nodeConfig.node]
|
const myNode = store.getState().app.nodeConfig.knownNodes[store.getState().app.nodeConfig.node]
|
||||||
const nodeUrl = myNode.protocol + '://' + myNode.domain + ':' + myNode.port
|
const nodeUrl = myNode.protocol + '://' + myNode.domain + ':' + myNode.port
|
||||||
let responseObj = await parentEpml.request('apiCall', {
|
const url = `${nodeUrl}/arbitrary/resource/status/${service}/${name}/${identifier}?apiKey=${myNode.apiKey}}`
|
||||||
url: `${nodeUrl}/arbitrary/resource/status/${service}/${name}/${identifier}?apiKey=${myNode.apiKey}}`
|
|
||||||
})
|
|
||||||
|
|
||||||
if (responseObj.totalChunkCount > 0) {
|
const res = await fetch(url);
|
||||||
|
const data = await res.json();
|
||||||
|
if (data.totalChunkCount > 0) {
|
||||||
// Identifier exists, so don't include it in the path
|
// Identifier exists, so don't include it in the path
|
||||||
parts.shift()
|
parts.shift()
|
||||||
}
|
}
|
||||||
@ -536,6 +542,11 @@ class NavBar extends connect(store)(LitElement) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async getQuery(value) {
|
async getQuery(value) {
|
||||||
|
try {
|
||||||
|
|
||||||
|
} catch (error) {
|
||||||
|
|
||||||
|
}
|
||||||
let newQuery = value
|
let newQuery = value
|
||||||
if (newQuery.endsWith('/')) {
|
if (newQuery.endsWith('/')) {
|
||||||
newQuery = newQuery.slice(0, -1)
|
newQuery = newQuery.slice(0, -1)
|
||||||
@ -554,27 +565,50 @@ class NavBar extends connect(store)(LitElement) {
|
|||||||
query = query + `&path=${path}`
|
query = query + `&path=${path}`
|
||||||
}
|
}
|
||||||
|
|
||||||
this.changePage({
|
if (service === "APP") {
|
||||||
"url": "qapp",
|
this.changePage({
|
||||||
"domain": "core",
|
"url": "qapp",
|
||||||
"page": `qdn/browser/index.html${query}`,
|
"domain": "core",
|
||||||
"title": "Q-App",
|
"page": `qdn/browser/index.html${query}`,
|
||||||
"icon": "vaadin:external-browser",
|
"title": "Q-App",
|
||||||
"mwcicon": "open_in_browser",
|
"icon": "vaadin:external-browser",
|
||||||
"menus": [],
|
"mwcicon": "open_in_browser",
|
||||||
"parent": false
|
"menus": [],
|
||||||
})
|
"parent": false
|
||||||
|
})
|
||||||
|
} else if (service === "WEBSITE") {
|
||||||
|
this.changePage({
|
||||||
|
"url": "websites",
|
||||||
|
"domain": "core",
|
||||||
|
"page": `qdn/browser/index.html${query}`,
|
||||||
|
"title": "Website",
|
||||||
|
"icon": "vaadin:desktop",
|
||||||
|
"mwcicon": "desktop_mac",
|
||||||
|
"menus": [],
|
||||||
|
"parent": false
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async handlePasteLink(e) {
|
async handlePasteLink(e) {
|
||||||
const value = this.shadowRoot.getElementById('linkInput').value
|
try {
|
||||||
this.getQuery(value)
|
const value = this.shadowRoot.getElementById('linkInput').value
|
||||||
|
this.getQuery(value)
|
||||||
|
} catch (error) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async _handleKeyDown(e) {
|
async _handleKeyDown(e) {
|
||||||
if (e.key === 'Enter') {
|
if (e.key === 'Enter') {
|
||||||
const value = this.shadowRoot.getElementById('linkInput').value
|
try {
|
||||||
this.getQuery(value)
|
const value = this.shadowRoot.getElementById('linkInput').value
|
||||||
|
this.getQuery(value)
|
||||||
|
} catch (error) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user