mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Switch plugin version menu to div and style by JS (#1540)
Replace the select options for the plugin versions with one managed purely using div tags and style primarily using JavaScript so the entire menu can be managed from loading from a single script. Retain a simple base style in the generated css file to facilitate switching themes.
This commit is contained in:
@@ -3,7 +3,10 @@ const storage = buildWebStorage(sessionStorage, 'axios-cache:');
|
|||||||
const axiosCached = setupCache(axios.create(), { storage });
|
const axiosCached = setupCache(axios.create(), { storage });
|
||||||
|
|
||||||
changeVersion = function handleVersionedDocs(repository_nwo, basePath) {
|
changeVersion = function handleVersionedDocs(repository_nwo, basePath) {
|
||||||
async function loadOptions(selectElement) {
|
menuBackgroundImageClosed = "url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 6 9 12 15 18'%3E%3C/polyline%3E%3C/svg%3E\")";
|
||||||
|
menuBackgroundImageOpen = "url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E\")";
|
||||||
|
|
||||||
|
async function loadOptions(menu, dropdown) {
|
||||||
const defaultBranchPromise = axiosCached.get(
|
const defaultBranchPromise = axiosCached.get(
|
||||||
`https://api.github.com/repos/${repository_nwo}`,
|
`https://api.github.com/repos/${repository_nwo}`,
|
||||||
).then(res => {
|
).then(res => {
|
||||||
@@ -44,47 +47,97 @@ changeVersion = function handleVersionedDocs(repository_nwo, basePath) {
|
|||||||
const defaultBranch = await defaultBranchPromise;
|
const defaultBranch = await defaultBranchPromise;
|
||||||
options.unshift({ value: 'latest', text: defaultBranch });
|
options.unshift({ value: 'latest', text: defaultBranch });
|
||||||
|
|
||||||
options.forEach( item => {
|
var current = "";
|
||||||
var opt = document.createElement('option');
|
|
||||||
opt.value = item.value;
|
|
||||||
opt.innerHTML = item.text;
|
|
||||||
|
|
||||||
selectElement.appendChild(opt);
|
|
||||||
});
|
|
||||||
|
|
||||||
const path = window.location.pathname.toLowerCase();
|
|
||||||
const versionPath = `${basePath}/version/`;
|
const versionPath = `${basePath}/version/`;
|
||||||
|
const path = window.location.pathname.toLowerCase();
|
||||||
if (path.startsWith(versionPath)) {
|
if (path.startsWith(versionPath)) {
|
||||||
const start = versionPath.length;
|
const start = versionPath.length;
|
||||||
const end = path.indexOf('/', start);
|
const end = path.indexOf('/', start);
|
||||||
selectElement.value = path.substring(start, end);
|
current = path.substring(start, end);
|
||||||
} else {
|
} else {
|
||||||
selectElement.value = 'latest';
|
current = defaultBranch;
|
||||||
}
|
}
|
||||||
|
menu.innerHTML = `Plugin Version: ${current}`;
|
||||||
|
menu.appendChild(dropdown);
|
||||||
|
|
||||||
|
options.forEach( item => {
|
||||||
|
var opt = document.createElement('a');
|
||||||
|
opt.href = item.value === 'latest' ? '' : `${versionPath}/${item.value}`;
|
||||||
|
opt.innerHTML = item.text;
|
||||||
|
opt.style.cssText = `
|
||||||
|
padding-left: 1rem;
|
||||||
|
`
|
||||||
|
|
||||||
|
if (item.value === options[0].value) {
|
||||||
|
opt.className = "plugin-version-selected"
|
||||||
|
}
|
||||||
|
|
||||||
|
dropdown.appendChild(opt);
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
function changeVersion(selectElement) {
|
function showMenu(menu, dropdown) {
|
||||||
const targetVersionPath =
|
dropdown.style.display = 'block';
|
||||||
selectElement.value === 'latest' ? '' : `/version/${selectElement.value}`;
|
menu.style.backgroundImage = menuBackgroundImageOpen;
|
||||||
|
}
|
||||||
|
|
||||||
const path = window.location.pathname.toLowerCase();
|
function hideMenu(menu, dropdown) {
|
||||||
|
dropdown.style.display = 'none';
|
||||||
|
menu.style.backgroundImage = menuBackgroundImageClosed;
|
||||||
|
}
|
||||||
|
|
||||||
const versionPath = `${basePath}/version/`;
|
function toggleMenu(menu, dropdown) {
|
||||||
const startIdx = path.startsWith(`${basePath}/version/`) ? versionPath.length : basePath.length;
|
if (dropdown.style.display == 'none') {
|
||||||
const endIdx = path.indexOf('/', startIdx);
|
showMenu(menu, dropdown);
|
||||||
const targetPath =
|
} else {
|
||||||
basePath + targetVersionPath + window.location.pathname.substring(endIdx);
|
hideMenu(menu, dropdown);
|
||||||
window.location.pathname = targetPath;
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
var pluginVersionMenuElement = document.getElementById("plugin-version-menu")
|
function toggleMenuDisplay(menuElement, dropDownElement, e) {
|
||||||
pluginVersionMenuElement.innerHTML = "Plugin Version: "
|
if (dropDownElement.contains(e.target)) {
|
||||||
var selectElement = document.createElement('select');
|
return;
|
||||||
selectElement.id = "plugin-version"
|
}
|
||||||
selectElement.addEventListener('change', function() {changeVersion(this); });
|
|
||||||
pluginVersionMenuElement.appendChild(selectElement);
|
|
||||||
|
|
||||||
loadOptions(selectElement);
|
if (menuElement.contains(e.target)) {
|
||||||
|
toggleMenu(menuElement, dropDownElement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return changeVersion;
|
// get main menu element and style as needed
|
||||||
|
menuElement = document.getElementById("plugin-version-menu");
|
||||||
|
menuElement.style.backgroundImage = menuBackgroundImageOpen; // preload open image so no delay in rendering
|
||||||
|
menuElement.className = 'plugin-version-menu-background-fonts-style';
|
||||||
|
menuElement.style.cssText = `
|
||||||
|
position: relative;
|
||||||
|
width: 180px;
|
||||||
|
border: 1px solit transparent;
|
||||||
|
padding: 1rem 1rem;
|
||||||
|
background-image: ${menuBackgroundImageClosed};
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: 90% 40%;
|
||||||
|
`;
|
||||||
|
|
||||||
|
dropdown = document.createElement('div');
|
||||||
|
dropdown.id = "plugin-version-dropdown";
|
||||||
|
dropdown.className = 'plugin-version-menu-background-fonts-style';
|
||||||
|
dropdown.style.cssText = `
|
||||||
|
position: absolute;
|
||||||
|
min-width: 145px;
|
||||||
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||||
|
padding: 12px 16px;
|
||||||
|
z-index: 1;
|
||||||
|
`;
|
||||||
|
// ensure initial style of drop down menu is set
|
||||||
|
toggleMenu(menuElement, dropdown);
|
||||||
|
|
||||||
|
// populate menu with available options and current version
|
||||||
|
loadOptions(menuElement, dropdown);
|
||||||
|
menuElement.addEventListener('click', function(e) {toggleMenuDisplay(menuElement, dropdown, e);})
|
||||||
|
window.addEventListener('click', function(e){
|
||||||
|
if (!menuElement.contains(e.target)){
|
||||||
|
// Clicked outside the drop down menu
|
||||||
|
hideMenu(menuElement, dropdown);
|
||||||
|
}
|
||||||
|
});
|
||||||
}(repository_nwo, basePath);
|
}(repository_nwo, basePath);
|
||||||
|
|||||||
@@ -82,3 +82,11 @@ ul#toc li {
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.plugin-version-menu-background-fonts-style {
|
||||||
|
@include fs-2;
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
background-color: $grey-dk-300;
|
||||||
|
color: $grey-dk-000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user