[static assets] add them to git so we can forget to call "collectstatic" before we just serve
This commit is contained in:
parent
003baf931d
commit
77ae66b015
141 changed files with 34703 additions and 0 deletions
109
static/debug_toolbar/js/history.js
Normal file
109
static/debug_toolbar/js/history.js
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
import { $$, ajaxForm, replaceToolbarState } from "./utils.js";
|
||||
|
||||
const djDebug = document.getElementById("djDebug");
|
||||
|
||||
function difference(setA, setB) {
|
||||
const _difference = new Set(setA);
|
||||
for (const elem of setB) {
|
||||
_difference.delete(elem);
|
||||
}
|
||||
return _difference;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an array of dataset properties from a NodeList.
|
||||
*/
|
||||
function pluckData(nodes, key) {
|
||||
const data = [];
|
||||
nodes.forEach(function (obj) {
|
||||
data.push(obj.dataset[key]);
|
||||
});
|
||||
return data;
|
||||
}
|
||||
|
||||
function refreshHistory() {
|
||||
const formTarget = djDebug.querySelector(".refreshHistory");
|
||||
const container = document.getElementById("djdtHistoryRequests");
|
||||
const oldIds = new Set(
|
||||
pluckData(container.querySelectorAll("tr[data-store-id]"), "storeId")
|
||||
);
|
||||
|
||||
ajaxForm(formTarget)
|
||||
.then(function (data) {
|
||||
// Remove existing rows first then re-populate with new data
|
||||
container
|
||||
.querySelectorAll("tr[data-store-id]")
|
||||
.forEach(function (node) {
|
||||
node.remove();
|
||||
});
|
||||
data.requests.forEach(function (request) {
|
||||
container.innerHTML = request.content + container.innerHTML;
|
||||
});
|
||||
})
|
||||
.then(function () {
|
||||
const allIds = new Set(
|
||||
pluckData(
|
||||
container.querySelectorAll("tr[data-store-id]"),
|
||||
"storeId"
|
||||
)
|
||||
);
|
||||
const newIds = difference(allIds, oldIds);
|
||||
const lastRequestId = newIds.values().next().value;
|
||||
return {
|
||||
allIds,
|
||||
newIds,
|
||||
lastRequestId,
|
||||
};
|
||||
})
|
||||
.then(function (refreshInfo) {
|
||||
refreshInfo.newIds.forEach(function (newId) {
|
||||
const row = container.querySelector(
|
||||
`tr[data-store-id="${newId}"]`
|
||||
);
|
||||
row.classList.add("flash-new");
|
||||
});
|
||||
setTimeout(() => {
|
||||
container
|
||||
.querySelectorAll("tr[data-store-id]")
|
||||
.forEach((row) => {
|
||||
row.classList.remove("flash-new");
|
||||
});
|
||||
}, 2000);
|
||||
});
|
||||
}
|
||||
|
||||
function switchHistory(newStoreId) {
|
||||
const formTarget = djDebug.querySelector(
|
||||
".switchHistory[data-store-id='" + newStoreId + "']"
|
||||
);
|
||||
const tbody = formTarget.closest("tbody");
|
||||
|
||||
const highlighted = tbody.querySelector(".djdt-highlighted");
|
||||
if (highlighted) {
|
||||
highlighted.classList.remove("djdt-highlighted");
|
||||
}
|
||||
formTarget.closest("tr").classList.add("djdt-highlighted");
|
||||
|
||||
ajaxForm(formTarget).then(function (data) {
|
||||
if (Object.keys(data).length === 0) {
|
||||
const container = document.getElementById("djdtHistoryRequests");
|
||||
container.querySelector(
|
||||
'button[data-store-id="' + newStoreId + '"]'
|
||||
).innerHTML = "Switch [EXPIRED]";
|
||||
}
|
||||
replaceToolbarState(newStoreId, data);
|
||||
});
|
||||
}
|
||||
|
||||
$$.on(djDebug, "click", ".switchHistory", function (event) {
|
||||
event.preventDefault();
|
||||
switchHistory(this.dataset.storeId);
|
||||
});
|
||||
|
||||
$$.on(djDebug, "click", ".refreshHistory", function (event) {
|
||||
event.preventDefault();
|
||||
refreshHistory();
|
||||
});
|
||||
// We don't refresh the whole toolbar each fetch or ajax request,
|
||||
// so we need to refresh the history when we open the panel
|
||||
$$.onPanelRender(djDebug, "HistoryPanel", refreshHistory);
|
||||
Loading…
Add table
Add a link
Reference in a new issue