Reformatting code. Replaced alerts.

This commit is contained in:
Vincenzo Cestone 2022-04-28 15:55:38 +02:00
parent 91d6e6abc6
commit 000e790e64
1 changed files with 51 additions and 90 deletions

View File

@ -22,16 +22,15 @@ window.customElements.define('d4s-social-posts', class extends HTMLElement {
fetchPosts() {
const url = this.#basepath + '/2/posts/get-posts-vre'
this.#boot.secureFetch(url).then(
reply=>{
this.#boot.secureFetch(url).then(reply => {
if(reply.status !== 200) throw "Unable to fetch posts";
return reply.json()
}
).then(data => {
}).then(data => {
this.#data = data
this.renderPosts()
}).catch(err=>alert("Unable to fetch posts " + err))
}).catch(err => console.error("Unable to fetch posts " + err))
}
renderPosts() {
@ -98,41 +97,3 @@ window.customElements.define('d4s-social-posts', class extends HTMLElement {
}
})
window.customElements.define('d4s-social-search', class extends HTMLElement {
constructor() {
super()
}
connectedCallback() {
//console.log(typeof d4s)
//console.log(this)
//this.attachShadow({mode: "open"})
//console.log(this.shadowRoot.querySelector("*[name=search]"))
//const shadowRoot = this.attachShadow({mode: 'open'})
//console.log(shadowRoot.innerHTML)
console.log("d4s-social-search connectedCallback")
var d4s = document.querySelector('d4s-boot-2')
/*
d4s.service(
'https://api.dev.d4science.org/rest/2/full-text-search/search-by-query?query=d4science',
'GET', null,
(resp) => {
document.getElementById('output').innerText = resp
},
() => { alert('Forbidden') }
)
d4s.service(
'https://api.dev.d4science.org/rest/2/posts/get-posts-user-quantity',
'GET', null,
(resp) => {
document.getElementById('output').innerText = resp
},
() => { alert('Forbidden') }
)
*/
}
})