mail UI fixes
This commit is contained in:
parent
f99ff27006
commit
3277192bc7
@ -77,11 +77,18 @@ function openReply(bHash, quote, subject){
|
|||||||
function openThread(bHash, sender, date, sigBool, pubkey, subjectLine){
|
function openThread(bHash, sender, date, sigBool, pubkey, subjectLine){
|
||||||
addUnknownContact.style.display = 'none'
|
addUnknownContact.style.display = 'none'
|
||||||
var messageDisplay = document.getElementById('threadDisplay')
|
var messageDisplay = document.getElementById('threadDisplay')
|
||||||
var blockContent = httpGet('/getblockbody/' + bHash)
|
//var blockContent = httpGet('/getblockbody/' + bHash)
|
||||||
|
|
||||||
|
fetch('/getblockbody/' + bHash, {
|
||||||
|
"method": "get",
|
||||||
|
headers: {
|
||||||
|
"token": webpass
|
||||||
|
}})
|
||||||
|
.then((resp) => resp.text())
|
||||||
|
.then(function(resp) {
|
||||||
document.getElementById('fromUser').value = sender || 'Anonymous'
|
document.getElementById('fromUser').value = sender || 'Anonymous'
|
||||||
document.getElementById('subjectView').innerText = subjectLine
|
document.getElementById('subjectView').innerText = subjectLine
|
||||||
messageDisplay.innerText = blockContent
|
messageDisplay.innerText = resp
|
||||||
var sigEl = document.getElementById('sigValid')
|
var sigEl = document.getElementById('sigValid')
|
||||||
var sigMsg = 'signature'
|
var sigMsg = 'signature'
|
||||||
|
|
||||||
@ -111,6 +118,7 @@ function openThread(bHash, sender, date, sigBool, pubkey, subjectLine){
|
|||||||
}
|
}
|
||||||
addContact(pubkey, friendName)
|
addContact(pubkey, friendName)
|
||||||
}
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function setActiveTab(tabName){
|
function setActiveTab(tabName){
|
||||||
@ -139,7 +147,7 @@ function deleteMessage(bHash){
|
|||||||
headers: {
|
headers: {
|
||||||
"token": webpass
|
"token": webpass
|
||||||
}})
|
}})
|
||||||
.then((resp) => resp.text()) // Transform the data into json
|
.then((resp) => resp.text())
|
||||||
.then(function(resp) {
|
.then(function(resp) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -185,17 +193,25 @@ function loadInboxEntries(bHash){
|
|||||||
humanDate.setUTCSeconds(resp['meta']['time'])
|
humanDate.setUTCSeconds(resp['meta']['time'])
|
||||||
humanDate = humanDate.toString()
|
humanDate = humanDate.toString()
|
||||||
validSig.style.display = 'none'
|
validSig.style.display = 'none'
|
||||||
|
|
||||||
if (typeof resp['meta']['signer'] != 'undefined' && resp['meta']['signer'] != ''){
|
if (typeof resp['meta']['signer'] != 'undefined' && resp['meta']['signer'] != ''){
|
||||||
let name = httpGet('/friends/getinfo/' + resp['meta']['signer'] + '/name')
|
fetch('/friends/getinfo/' + resp['meta']['signer'] + '/name', {
|
||||||
if (name.length == 0){
|
headers: {
|
||||||
|
"token": webpass
|
||||||
|
}})
|
||||||
|
.then(function(resp2){
|
||||||
|
if (!resp2.ok){
|
||||||
setHumanReadableValue(senderInput, resp['meta']['signer'])
|
setHumanReadableValue(senderInput, resp['meta']['signer'])
|
||||||
entry.setAttribute('data-nameSet', false)
|
entry.setAttribute('data-nameSet', false)
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
resp2 => resp2.text()
|
||||||
loadHumanReadableToCache(resp['meta']['signer'])
|
loadHumanReadableToCache(resp['meta']['signer'])
|
||||||
senderInput.value = name
|
senderInput.value = resp2
|
||||||
entry.setAttribute('data-nameSet', true)
|
entry.setAttribute('data-nameSet', true)
|
||||||
}
|
}
|
||||||
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
senderInput.value = 'Anonymous'
|
senderInput.value = 'Anonymous'
|
||||||
@ -347,7 +363,7 @@ fetch('/mail/getinbox', {
|
|||||||
headers: {
|
headers: {
|
||||||
"token": webpass
|
"token": webpass
|
||||||
}})
|
}})
|
||||||
.then((resp) => resp.text()) // Transform the data into json
|
.then((resp) => resp.text())
|
||||||
.then(function(data) {
|
.then(function(data) {
|
||||||
pms = data.split(',').reverse()
|
pms = data.split(',').reverse()
|
||||||
if (pms.length > 0){
|
if (pms.length > 0){
|
||||||
|
@ -15,7 +15,8 @@ function setHumanReadableValue(el, key){
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
setTimeout(function(){setHumanReadableValue(el, key)})
|
loadHumanReadableToCache(key)
|
||||||
|
setTimeout(function(){setHumanReadableValue(el, key)}, 100)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user