Post Web Assets v2 upgrade UI fixes and improvements #114
@ -1,99 +1,101 @@
|
||||
// Create function btnBack
|
||||
function btnBack() {
|
||||
const btnBack = document.querySelectorAll('.js-btn-back');
|
||||
(function() {
|
||||
// Create function btnBack
|
||||
function btnBack() {
|
||||
const btnBack = document.querySelectorAll('.js-btn-back');
|
||||
|
||||
btnBack.forEach(function(item) {
|
||||
item.addEventListener('click', function(e) {
|
||||
e.preventDefault();
|
||||
window.history.back();
|
||||
btnBack.forEach(function(item) {
|
||||
item.addEventListener('click', function(e) {
|
||||
e.preventDefault();
|
||||
window.history.back();
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Create finction commentForm
|
||||
function commentForm() {
|
||||
const commentForm = document.querySelector('.js-comment-form');
|
||||
if (!commentForm) {
|
||||
return;
|
||||
}
|
||||
|
||||
const commentFormSelect = commentForm.querySelector('select');
|
||||
if (!commentFormSelect) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Create event comment form select change
|
||||
commentFormSelect.addEventListener('change', function(e) {
|
||||
let value = e.target.value;
|
||||
let verb = 'Comment';
|
||||
const activitySubmitButton = document.getElementById('activity-submit');
|
||||
activitySubmitButton.classList.remove('btn-success', 'btn-warning');
|
||||
|
||||
// Hide or show comment form msg on change
|
||||
if (value == 'AWC') {
|
||||
verb = 'Set as Awaiting Changes';
|
||||
activitySubmitButton.classList.add('btn-warning');
|
||||
} else if (value == 'AWR') {
|
||||
verb = 'Set as Awaiting Review';
|
||||
} else if (value == 'APR') {
|
||||
verb = 'Approve!';
|
||||
activitySubmitButton.classList.add('btn-success');
|
||||
}
|
||||
|
||||
activitySubmitButton.querySelector('span').textContent = verb;
|
||||
});
|
||||
}
|
||||
|
||||
// Create function copyInstallUrl
|
||||
function copyInstallUrl() {
|
||||
function init() {
|
||||
// Create variables
|
||||
const btnInstall = document.querySelector('.js-btn-install');
|
||||
const btnInstallAction = document.querySelector('.js-btn-install-action');
|
||||
const btnInstallGroup = document.querySelector('.js-btn-install-group');
|
||||
const btnInstallDrag = document.querySelector('.js-btn-install-drag');
|
||||
const btnInstallDragGroup = document.querySelector('.js-btn-install-drag-group');
|
||||
|
||||
if (btnInstall == null) {
|
||||
// Create finction commentForm
|
||||
function commentForm() {
|
||||
const commentForm = document.querySelector('.js-comment-form');
|
||||
if (!commentForm) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Get data install URL
|
||||
const btnInstallUrl = btnInstall.getAttribute('data-install-url');
|
||||
const commentFormSelect = commentForm.querySelector('select');
|
||||
if (!commentFormSelect) {
|
||||
return;
|
||||
}
|
||||
|
||||
btnInstall.addEventListener('click', function() {
|
||||
// Hide btnInstallGroup
|
||||
btnInstallGroup.classList.add('d-none');
|
||||
// Create event comment form select change
|
||||
commentFormSelect.addEventListener('change', function(e) {
|
||||
let value = e.target.value;
|
||||
let verb = 'Comment';
|
||||
const activitySubmitButton = document.getElementById('activity-submit');
|
||||
activitySubmitButton.classList.remove('btn-success', 'btn-warning');
|
||||
|
||||
// Show btnInstallAction
|
||||
btnInstallAction.classList.add('show');
|
||||
});
|
||||
// Hide or show comment form msg on change
|
||||
if (value == 'AWC') {
|
||||
verb = 'Set as Awaiting Changes';
|
||||
activitySubmitButton.classList.add('btn-warning');
|
||||
} else if (value == 'AWR') {
|
||||
verb = 'Set as Awaiting Review';
|
||||
} else if (value == 'APR') {
|
||||
verb = 'Approve!';
|
||||
activitySubmitButton.classList.add('btn-success');
|
||||
}
|
||||
|
||||
// Drag btnInstallUrl
|
||||
btnInstallDrag.addEventListener('dragstart', function(e) {
|
||||
// Set data install URL to be transferred during drag
|
||||
e.dataTransfer.setData('text/plain', btnInstallUrl);
|
||||
|
||||
// Set drag area active
|
||||
btnInstallDragGroup.classList.add('opacity-50');
|
||||
});
|
||||
|
||||
// Undrag btnInstallUrl
|
||||
btnInstallDrag.addEventListener('dragend', function() {
|
||||
// Set drag area inactive
|
||||
btnInstallDragGroup.classList.remove('opacity-50');
|
||||
activitySubmitButton.querySelector('span').textContent = verb;
|
||||
});
|
||||
}
|
||||
|
||||
init();
|
||||
}
|
||||
// Create function init
|
||||
function init() {
|
||||
btnBack();
|
||||
commentForm();
|
||||
copyInstallUrl();
|
||||
}
|
||||
// Create function copyInstallUrl
|
||||
function copyInstallUrl() {
|
||||
function init() {
|
||||
// Create variables
|
||||
const btnInstall = document.querySelector('.js-btn-install');
|
||||
const btnInstallAction = document.querySelector('.js-btn-install-action');
|
||||
const btnInstallGroup = document.querySelector('.js-btn-install-group');
|
||||
const btnInstallDrag = document.querySelector('.js-btn-install-drag');
|
||||
const btnInstallDragGroup = document.querySelector('.js-btn-install-drag-group');
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
init();
|
||||
});
|
||||
if (btnInstall == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Get data install URL
|
||||
const btnInstallUrl = btnInstall.getAttribute('data-install-url');
|
||||
|
||||
btnInstall.addEventListener('click', function() {
|
||||
// Hide btnInstallGroup
|
||||
btnInstallGroup.classList.add('d-none');
|
||||
|
||||
// Show btnInstallAction
|
||||
btnInstallAction.classList.add('show');
|
||||
});
|
||||
|
||||
// Drag btnInstallUrl
|
||||
btnInstallDrag.addEventListener('dragstart', function(e) {
|
||||
// Set data install URL to be transferred during drag
|
||||
e.dataTransfer.setData('text/plain', btnInstallUrl);
|
||||
|
||||
// Set drag area active
|
||||
btnInstallDragGroup.classList.add('opacity-50');
|
||||
});
|
||||
|
||||
// Undrag btnInstallUrl
|
||||
btnInstallDrag.addEventListener('dragend', function() {
|
||||
// Set drag area inactive
|
||||
btnInstallDragGroup.classList.remove('opacity-50');
|
||||
});
|
||||
}
|
||||
|
||||
init();
|
||||
}
|
||||
// Create function init
|
||||
function init() {
|
||||
btnBack();
|
||||
commentForm();
|
||||
copyInstallUrl();
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
init();
|
||||
});
|
||||
}())
|
||||
|
Loading…
Reference in New Issue
Block a user