mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 01:36:55 +01:00
quick refactoring
* abstract out button states * rewrite remaining jQuery in vanilla js * remove for(...) loops, use forEach
This commit is contained in:
parent
b6b5ca0441
commit
92784a08bd
@ -83,31 +83,39 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
|
|||||||
const driver = window.BigchainDB
|
const driver = window.BigchainDB
|
||||||
const API_PATH = proxyUrl + apiPath
|
const API_PATH = proxyUrl + apiPath
|
||||||
|
|
||||||
const form = document.getElementById('form-transaction')
|
|
||||||
const postButton = document.getElementById('post')
|
const postButton = document.getElementById('post')
|
||||||
|
const postButtonText = postButton.innerText
|
||||||
const messageInput = document.getElementById('message')
|
const messageInput = document.getElementById('message')
|
||||||
|
|
||||||
// nasty jquery inside of here, YOLO
|
// put a wrapper around original message, and empty it
|
||||||
$(".highlight code:contains('Blockchain all the things!')").html(function(_, html) {
|
function addMessageWrapper() {
|
||||||
return html.replace(/(Blockchain all the things!)/g, '<strong class="code-example__message">$1</strong>');
|
const codeExamples = document.querySelectorAll('.highlight code')
|
||||||
})
|
|
||||||
|
|
||||||
const codeMessages = document.querySelectorAll('.code-example__message')
|
codeExamples.forEach(function (codeExample) {
|
||||||
|
if (codeExample.innerText.includes('Blockchain all the things!')) {
|
||||||
function updateMessage(content) {
|
let html = codeExample.innerHTML
|
||||||
const escapedContent = content.replace(/'/g, "\\'")
|
html = html.replace('Blockchain all the things!', '<strong class="code-example__message"></strong>')
|
||||||
for (var codeMessage of codeMessages) {
|
codeExample.innerHTML = html
|
||||||
codeMessage.textContent = escapedContent
|
}
|
||||||
}
|
})
|
||||||
|
}
|
||||||
|
addMessageWrapper()
|
||||||
|
|
||||||
|
// update message helper function
|
||||||
|
function updateMessage(content) {
|
||||||
|
const codeMessages = document.querySelectorAll('.code-example__message')
|
||||||
|
const escapedContent = content.replace(/'/g, "\\'")
|
||||||
|
|
||||||
|
codeMessages.forEach(function(codeMessage) {
|
||||||
|
codeMessage.textContent = escapedContent
|
||||||
|
})
|
||||||
}
|
}
|
||||||
// empty default message
|
|
||||||
updateMessage('')
|
|
||||||
|
|
||||||
// quick form validation, live update code example with user input
|
// quick form validation, live update code example with user input
|
||||||
messageInput.addEventListener('input', function() {
|
messageInput.addEventListener('input', function() {
|
||||||
if (messageInput.value === '') {
|
if (messageInput.value === '') {
|
||||||
postButton.setAttribute('disabled', '')
|
postButton.setAttribute('disabled', '')
|
||||||
// empty message again
|
// empty message
|
||||||
updateMessage('')
|
updateMessage('')
|
||||||
} else {
|
} else {
|
||||||
postButton.removeAttribute('disabled')
|
postButton.removeAttribute('disabled')
|
||||||
@ -119,13 +127,27 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
|
|||||||
|
|
||||||
postButton.style.width = `${postButton.offsetWidth}px`
|
postButton.style.width = `${postButton.offsetWidth}px`
|
||||||
|
|
||||||
|
function buttonStateLoading() {
|
||||||
|
postButton.classList.add('disabled')
|
||||||
|
postButton.innerHTML = '<span class="loader loader--dark"></span>'
|
||||||
|
}
|
||||||
|
|
||||||
|
function buttonStateSuccess() {
|
||||||
|
postButton.style.opacity = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
function buttonStateFail() {
|
||||||
|
postButton.classList.remove('disabled')
|
||||||
|
postButton.removeAttribute('disabled')
|
||||||
|
postButton.innerHTML = postButtonText
|
||||||
|
}
|
||||||
|
|
||||||
postButton.addEventListener('click', function(e) {
|
postButton.addEventListener('click', function(e) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
|
|
||||||
const message = messageInput.value
|
buttonStateLoading()
|
||||||
postButton.classList.add('disabled')
|
|
||||||
postButton.innerHTML = '<span class="loader loader--dark"></span>'
|
|
||||||
|
|
||||||
|
const message = messageInput.value
|
||||||
const alice = new driver.Ed25519Keypair()
|
const alice = new driver.Ed25519Keypair()
|
||||||
const tx = driver.Transaction.makeCreateTransaction(
|
const tx = driver.Transaction.makeCreateTransaction(
|
||||||
{ message: message },
|
{ message: message },
|
||||||
@ -150,14 +172,11 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
|
|||||||
responseArea.classList.remove('hide')
|
responseArea.classList.remove('hide')
|
||||||
messageSuccess.classList.remove('hide')
|
messageSuccess.classList.remove('hide')
|
||||||
|
|
||||||
console.log(response)
|
|
||||||
|
|
||||||
const outputContent = JSON.stringify(response, null, 2) // indented with 2 spaces
|
const outputContent = JSON.stringify(response, null, 2) // indented with 2 spaces
|
||||||
output.textContent = outputContent
|
output.textContent = outputContent
|
||||||
|
|
||||||
transactionLink.href = bigchaindbUrl + apiPath + 'transactions/' + response.id
|
transactionLink.href = bigchaindbUrl + apiPath + 'transactions/' + response.id
|
||||||
|
|
||||||
postButton.style.opacity = 0
|
buttonStateSuccess()
|
||||||
|
|
||||||
}, reason => { // Error!
|
}, reason => { // Error!
|
||||||
console.log(reason)
|
console.log(reason)
|
||||||
@ -169,8 +188,7 @@ window.addEventListener('DOMContentLoaded', function domload(event) {
|
|||||||
const outputContent = reason.status + ' ' + reason.statusText
|
const outputContent = reason.status + ' ' + reason.statusText
|
||||||
output.textContent = outputContent
|
output.textContent = outputContent
|
||||||
|
|
||||||
postButton.classList.remove('disabled')
|
buttonStateFail()
|
||||||
postButton.innerHTML = 'Off you go'
|
|
||||||
}).then((res) => console.log('Transaction status:', res.status))
|
}).then((res) => console.log('Transaction status:', res.status))
|
||||||
|
|
||||||
}, false)
|
}, false)
|
||||||
|
Loading…
Reference in New Issue
Block a user