rust/util/gh-pages/script.js

632 lines
23 KiB
JavaScript
Raw Normal View History

2022-04-26 17:22:37 -05:00
(function () {
function scrollToLint(lintId) {
const target = document.getElementById(lintId);
2022-04-26 17:22:37 -05:00
if (!target) {
return;
}
target.scrollIntoView();
}
function scrollToLintByURL($scope, $location) {
const removeListener = $scope.$on('ngRepeatFinished', function (ngRepeatFinishedEvent) {
scrollToLint($location.path().substring(1));
2022-04-26 17:22:37 -05:00
removeListener();
});
}
function selectGroup($scope, selectedGroup) {
const groups = $scope.groups;
for (const group in groups) {
2022-04-26 17:22:37 -05:00
if (groups.hasOwnProperty(group)) {
groups[group] = group === selectedGroup;
2022-04-26 17:22:37 -05:00
}
}
}
angular.module("clippy", [])
.directive('filterDropdown', function ($document) {
return {
restrict: 'A',
link: function ($scope, $element, $attr) {
$element.bind('click', function (event) {
if (event.target.closest('button')) {
$element.toggleClass('open');
} else {
$element.addClass('open');
}
$element.addClass('open-recent');
});
$document.bind('click', function () {
if (!$element.hasClass('open-recent')) {
$element.removeClass('open');
}
$element.removeClass('open-recent');
})
}
}
})
.directive('onFinishRender', function ($timeout) {
return {
restrict: 'A',
link: function (scope, element, attr) {
if (scope.$last === true) {
$timeout(function () {
scope.$emit(attr.onFinishRender);
});
}
}
};
})
.controller("lintList", function ($scope, $http, $location, $timeout) {
2022-04-26 17:22:37 -05:00
// Level filter
const LEVEL_FILTERS_DEFAULT = {allow: true, warn: true, deny: true, none: true};
$scope.levels = { ...LEVEL_FILTERS_DEFAULT };
2022-04-26 17:22:37 -05:00
$scope.byLevels = function (lint) {
return $scope.levels[lint.level];
};
2022-10-09 09:35:52 -05:00
const GROUPS_FILTER_DEFAULT = {
2022-04-26 17:22:37 -05:00
cargo: true,
complexity: true,
correctness: true,
nursery: true,
pedantic: true,
perf: true,
restriction: true,
style: true,
suspicious: true,
deprecated: false,
2022-10-09 09:35:52 -05:00
}
$scope.groups = {
...GROUPS_FILTER_DEFAULT
2022-04-26 17:22:37 -05:00
};
2022-10-09 09:35:52 -05:00
2022-05-05 17:27:56 -05:00
$scope.versionFilters = {
"≥": {enabled: false, minorVersion: null },
"≤": {enabled: false, minorVersion: null },
"=": {enabled: false, minorVersion: null },
2022-04-26 17:22:37 -05:00
};
// Map the versionFilters to the query parameters in a way that is easier to work with in a URL
const versionFilterKeyMap = {
"≥": "gte",
"≤": "lte",
"=": "eq"
};
const reverseVersionFilterKeyMap = Object.fromEntries(
Object.entries(versionFilterKeyMap).map(([key, value]) => [value, key])
);
const APPLICABILITIES_FILTER_DEFAULT = {
MachineApplicable: true,
MaybeIncorrect: true,
HasPlaceholders: true,
Unspecified: true,
2024-04-04 19:02:42 -05:00
};
$scope.applicabilities = {
...APPLICABILITIES_FILTER_DEFAULT
}
2024-04-04 19:02:42 -05:00
// loadFromURLParameters retrieves filter settings from the URL parameters and assigns them
// to corresponding $scope variables.
function loadFromURLParameters() {
// Extract parameters from URL
const urlParameters = $location.search();
// Define a helper function that assigns URL parameters to a provided scope variable
const handleParameter = (parameter, scopeVariable, defaultValues) => {
if (urlParameters[parameter]) {
const items = urlParameters[parameter].split(',');
for (const key in scopeVariable) {
if (scopeVariable.hasOwnProperty(key)) {
scopeVariable[key] = items.includes(key);
}
}
} else if (defaultValues) {
for (const key in defaultValues) {
if (scopeVariable.hasOwnProperty(key)) {
scopeVariable[key] = defaultValues[key];
}
}
}
};
handleParameter('levels', $scope.levels, LEVEL_FILTERS_DEFAULT);
handleParameter('groups', $scope.groups, GROUPS_FILTER_DEFAULT);
handleParameter('applicabilities', $scope.applicabilities, APPLICABILITIES_FILTER_DEFAULT);
// Handle 'versions' parameter separately because it needs additional processing
if (urlParameters.versions) {
const versionFilters = urlParameters.versions.split(',');
for (const versionFilter of versionFilters) {
const [key, minorVersion] = versionFilter.split(':');
const parsedMinorVersion = parseInt(minorVersion);
// Map the key from the URL parameter to its original form
const originalKey = reverseVersionFilterKeyMap[key];
if (originalKey in $scope.versionFilters && !isNaN(parsedMinorVersion)) {
$scope.versionFilters[originalKey].enabled = true;
$scope.versionFilters[originalKey].minorVersion = parsedMinorVersion;
}
}
}
// Load the search parameter from the URL path
const searchParameter = $location.path().substring(1); // Remove the leading slash
if (searchParameter) {
$scope.search = searchParameter;
$scope.open[searchParameter] = true;
scrollToLintByURL($scope, $location);
}
}
// updateURLParameter updates the URL parameter with the given key to the given value
function updateURLParameter(filterObj, urlKey, defaultValue = {}, processFilter = filter => filter) {
const parameter = Object.keys(filterObj)
.filter(filter => filterObj[filter])
.sort()
.map(processFilter)
.filter(Boolean) // Filters out any falsy values, including null
.join(',');
const defaultParameter = Object.keys(defaultValue)
.filter(filter => defaultValue[filter])
.sort()
.map(processFilter)
.filter(Boolean) // Filters out any falsy values, including null
.join(',');
// if we ended up back at the defaults, just remove it from the URL
if (parameter === defaultParameter) {
$location.search(urlKey, null);
} else {
$location.search(urlKey, parameter || null);
}
}
// updateVersionURLParameter updates the version URL parameter with the given version filters
function updateVersionURLParameter(versionFilters) {
updateURLParameter(
versionFilters,
'versions', {},
versionFilter => versionFilters[versionFilter].enabled && versionFilters[versionFilter].minorVersion != null
? `${versionFilterKeyMap[versionFilter]}:${versionFilters[versionFilter].minorVersion}`
: null
);
}
// updateAllURLParameters updates all the URL parameters with the current filter settings
function updateAllURLParameters() {
updateURLParameter($scope.levels, 'levels', LEVEL_FILTERS_DEFAULT);
updateURLParameter($scope.groups, 'groups', GROUPS_FILTER_DEFAULT);
updateVersionURLParameter($scope.versionFilters);
updateURLParameter($scope.applicabilities, 'applicabilities', APPLICABILITIES_FILTER_DEFAULT);
}
// Add $watches to automatically update URL parameters when the data changes
$scope.$watch('levels', function (newVal, oldVal) {
if (newVal !== oldVal) {
updateURLParameter(newVal, 'levels', LEVEL_FILTERS_DEFAULT);
}
}, true);
$scope.$watch('groups', function (newVal, oldVal) {
if (newVal !== oldVal) {
updateURLParameter(newVal, 'groups', GROUPS_FILTER_DEFAULT);
}
}, true);
$scope.$watch('versionFilters', function (newVal, oldVal) {
if (newVal !== oldVal) {
updateVersionURLParameter(newVal);
}
}, true);
$scope.$watch('applicabilities', function (newVal, oldVal) {
if (newVal !== oldVal) {
updateURLParameter(newVal, 'applicabilities', APPLICABILITIES_FILTER_DEFAULT)
}
}, true);
// Watch for changes in the URL path and update the search and lint display
$scope.$watch(function () { return $location.path(); }, function (newPath) {
const searchParameter = newPath.substring(1);
if ($scope.search !== searchParameter) {
$scope.search = searchParameter;
$scope.open[searchParameter] = true;
scrollToLintByURL($scope, $location);
}
});
let debounceTimeout;
$scope.$watch('search', function (newVal, oldVal) {
if (newVal !== oldVal) {
if (debounceTimeout) {
$timeout.cancel(debounceTimeout);
}
debounceTimeout = $timeout(function () {
$location.path(newVal);
}, 1000);
}
});
$scope.$watch(function () { return $location.search(); }, function (newParameters) {
loadFromURLParameters();
}, true);
$scope.updatePath = function () {
if (debounceTimeout) {
$timeout.cancel(debounceTimeout);
}
$location.path($scope.search);
}
2022-04-26 17:22:37 -05:00
$scope.toggleLevels = function (value) {
const levels = $scope.levels;
for (const key in levels) {
if (levels.hasOwnProperty(key)) {
levels[key] = value;
}
}
};
$scope.toggleGroups = function (value) {
const groups = $scope.groups;
for (const key in groups) {
if (groups.hasOwnProperty(key)) {
groups[key] = value;
}
}
};
2022-10-09 09:35:52 -05:00
$scope.toggleApplicabilities = function (value) {
const applicabilities = $scope.applicabilities;
for (const key in applicabilities) {
if (applicabilities.hasOwnProperty(key)) {
applicabilities[key] = value;
}
}
}
2022-10-09 09:35:52 -05:00
$scope.resetGroupsToDefault = function () {
$scope.groups = {
...GROUPS_FILTER_DEFAULT
};
2022-10-09 09:35:52 -05:00
};
2022-04-26 17:22:37 -05:00
$scope.selectedValuesCount = function (obj) {
return Object.values(obj).filter(x => x).length;
}
$scope.clearVersionFilters = function () {
for (const filter in $scope.versionFilters) {
$scope.versionFilters[filter] = { enabled: false, minorVersion: null };
2022-05-05 17:27:56 -05:00
}
2022-04-26 17:22:37 -05:00
}
2022-04-29 18:57:16 -05:00
$scope.versionFilterCount = function(obj) {
return Object.values(obj).filter(x => x.enabled).length;
2022-04-26 17:22:37 -05:00
}
$scope.updateVersionFilters = function() {
for (const filter in $scope.versionFilters) {
const minorVersion = $scope.versionFilters[filter].minorVersion;
2022-04-26 17:22:37 -05:00
// 1.29.0 and greater
if (minorVersion && minorVersion > 28) {
$scope.versionFilters[filter].enabled = true;
2022-05-15 10:30:00 -05:00
continue;
}
2022-04-26 17:22:37 -05:00
$scope.versionFilters[filter].enabled = false;
}
}
2022-04-26 17:22:37 -05:00
$scope.byVersion = function(lint) {
const filters = $scope.versionFilters;
2022-04-26 17:22:37 -05:00
for (const filter in filters) {
if (filters[filter].enabled) {
const minorVersion = filters[filter].minorVersion;
// Strip the "pre " prefix for pre 1.29.0 lints
const lintVersion = lint.version.startsWith("pre ") ? lint.version.substring(4, lint.version.length) : lint.version;
const lintMinorVersion = lintVersion.substring(2, 4);
switch (filter) {
2022-05-15 10:30:00 -05:00
// "=" gets the highest priority, since all filters are inclusive
case "=":
return (lintMinorVersion == minorVersion);
case "≥":
2022-05-15 10:30:00 -05:00
if (lintMinorVersion < minorVersion) { return false; }
break;
case "≤":
2022-05-15 10:30:00 -05:00
if (lintMinorVersion > minorVersion) { return false; }
break;
default:
return true
}
2022-04-26 17:22:37 -05:00
}
}
return true;
}
$scope.byGroups = function (lint) {
return $scope.groups[lint.group];
};
$scope.byApplicabilities = function (lint) {
return $scope.applicabilities[lint.applicability];
};
// Show details for one lint
$scope.openLint = function (lint) {
$scope.open[lint.id] = true;
$location.path(lint.id);
};
2024-04-04 16:47:05 -05:00
$scope.toggleExpansion = function(lints, isExpanded) {
lints.forEach(lint => {
$scope.open[lint.id] = isExpanded;
});
}
2022-05-18 09:19:50 -05:00
$scope.copyToClipboard = function (lint) {
const clipboard = document.getElementById("clipboard-" + lint.id);
if (clipboard) {
let resetClipboardTimeout = null;
const resetClipboardIcon = clipboard.innerHTML;
2022-05-18 09:19:50 -05:00
function resetClipboard() {
resetClipboardTimeout = null;
2022-05-18 14:37:05 -05:00
clipboard.innerHTML = resetClipboardIcon;
2022-05-18 09:19:50 -05:00
}
navigator.clipboard.writeText("clippy::" + lint.id);
2022-05-18 14:37:05 -05:00
clipboard.innerHTML = "&#10003;";
2022-05-18 09:19:50 -05:00
if (resetClipboardTimeout !== null) {
clearTimeout(resetClipboardTimeout);
}
resetClipboardTimeout = setTimeout(resetClipboard, 1000);
}
}
2022-04-26 17:22:37 -05:00
// Get data
$scope.open = {};
$scope.loading = true;
2022-04-26 17:22:37 -05:00
// This will be used to jump into the source code of the version that this documentation is for.
$scope.docVersion = window.location.pathname.split('/')[2] || "master";
// Set up the filters from the URL parameters before we start loading the data
loadFromURLParameters();
2022-04-26 17:22:37 -05:00
const selectedGroup = getQueryVariable("sel");
if (selectedGroup) {
selectGroup($scope, selectedGroup.toLowerCase());
}
2022-04-26 17:22:37 -05:00
scrollToLintByURL($scope, $location);
2022-04-26 17:22:37 -05:00
setTimeout(function () {
const el = document.getElementById('filter-input');
if (el) { el.focus() }
}, 0);
2022-04-26 17:22:37 -05:00
});
})();
function getQueryVariable(variable) {
const query = window.location.search.substring(1);
const vars = query.split('&');
for (const entry of vars) {
const pair = entry.split('=');
2022-04-26 17:22:37 -05:00
if (decodeURIComponent(pair[0]) == variable) {
return decodeURIComponent(pair[1]);
}
}
}
window.searchState = {
timeout: null,
inputElem: document.getElementById("search-input"),
2024-08-13 13:47:54 -05:00
lastSearch: '',
clearInput: () => {
searchState.inputElem.value = "";
searchState.filterLints();
},
clearInputTimeout: () => {
if (searchState.timeout !== null) {
clearTimeout(searchState.timeout);
searchState.timeout = null
}
},
resetInputTimeout: () => {
searchState.clearInputTimeout();
setTimeout(searchState.filterLints, 50);
},
filterLints: () => {
2024-08-13 13:47:54 -05:00
searchState.clearInputTimeout();
let searchStr = searchState.inputElem.value.trim().toLowerCase();
if (searchStr.startsWith("clippy::")) {
searchStr = searchStr.slice(8);
}
2024-08-13 13:47:54 -05:00
if (searchState.lastSearch === searchStr) {
return;
}
searchState.lastSearch = searchStr;
const terms = searchStr.split(" ");
onEachLazy(document.querySelectorAll("article"), lint => {
// Search by id
if (lint.id.indexOf(searchStr.replaceAll("-", "_")) !== -1) {
2024-08-13 13:47:54 -05:00
lint.style.display = "";
return;
}
// Search the description
// The use of `for`-loops instead of `foreach` enables us to return early
2024-08-13 13:47:54 -05:00
const docsLowerCase = lint.textContent.toLowerCase();
for (index = 0; index < terms.length; index++) {
// This is more likely and will therefore be checked first
if (docsLowerCase.indexOf(terms[index]) !== -1) {
2024-08-13 13:47:54 -05:00
return;
}
if (lint.id.indexOf(terms[index]) !== -1) {
2024-08-13 13:47:54 -05:00
return;
}
2024-08-13 13:47:54 -05:00
lint.style.display = "none";
}
});
},
};
function handleInputChanged(event) {
if (event.target !== document.activeElement) {
return;
}
searchState.resetInputTimeout();
}
2024-07-30 10:31:42 -05:00
function storeValue(settingName, value) {
try {
localStorage.setItem(`clippy-lint-list-${settingName}`, value);
} catch (e) { }
}
function loadValue(settingName) {
return localStorage.getItem(`clippy-lint-list-${settingName}`);
}
2022-04-26 17:22:37 -05:00
function setTheme(theme, store) {
let enableHighlight = false;
let enableNight = false;
let enableAyu = false;
2022-05-19 17:33:16 -05:00
switch(theme) {
case "ayu":
enableAyu = true;
break;
case "coal":
case "navy":
enableNight = true;
break;
case "rust":
enableHighlight = true;
break;
default:
enableHighlight = true;
theme = "light";
break;
2022-04-26 17:22:37 -05:00
}
2022-05-19 17:33:16 -05:00
2022-04-26 17:22:37 -05:00
document.getElementsByTagName("body")[0].className = theme;
2022-05-17 11:12:31 -05:00
document.getElementById("githubLightHighlight").disabled = enableNight || !enableHighlight;
document.getElementById("githubDarkHighlight").disabled = !enableNight && !enableAyu;
2022-04-26 17:22:37 -05:00
document.getElementById("styleHighlight").disabled = !enableHighlight;
document.getElementById("styleNight").disabled = !enableNight;
document.getElementById("styleAyu").disabled = !enableAyu;
if (store) {
2024-07-30 10:31:42 -05:00
storeValue("theme", theme);
2024-08-06 14:38:14 -05:00
} else {
document.getElementById(`theme-choice`).value = theme;
2022-04-26 17:22:37 -05:00
}
}
function handleShortcut(ev) {
2024-07-30 10:31:42 -05:00
if (ev.ctrlKey || ev.altKey || ev.metaKey || disableShortcuts) {
return;
}
if (document.activeElement.tagName === "INPUT") {
if (ev.key === "Escape") {
document.activeElement.blur();
}
} else {
switch (ev.key) {
case "s":
case "S":
case "/":
ev.preventDefault(); // To prevent the key to be put into the input.
document.getElementById("search-input").focus();
break;
default:
break;
}
}
}
document.addEventListener("keypress", handleShortcut);
document.addEventListener("keydown", handleShortcut);
2024-07-30 10:31:42 -05:00
function changeSetting(elem) {
if (elem.id === "disable-shortcuts") {
disableShortcuts = elem.checked;
storeValue(elem.id, elem.checked);
}
}
2024-08-06 14:38:14 -05:00
function onEachLazy(lazyArray, func) {
const arr = Array.prototype.slice.call(lazyArray);
for (const el of arr) {
func(el);
}
}
function handleBlur(event) {
const parent = document.getElementById("settings-dropdown");
if (!parent.contains(document.activeElement) &&
!parent.contains(event.relatedTarget)
) {
parent.classList.remove("open");
}
}
function generateSettings() {
const settings = document.getElementById("settings-dropdown");
const settingsButton = settings.querySelector(".settings-icon")
settingsButton.onclick = () => settings.classList.toggle("open");
settingsButton.onblur = handleBlur;
const settingsMenu = settings.querySelector(".settings-menu");
settingsMenu.onblur = handleBlur;
onEachLazy(
settingsMenu.querySelectorAll("input"),
el => el.onblur = handleBlur,
);
}
2024-08-13 13:47:54 -05:00
function generateSearch() {
searchState.inputElem.addEventListener("change", handleInputChanged);
searchState.inputElem.addEventListener("input", handleInputChanged);
searchState.inputElem.addEventListener("keydown", handleInputChanged);
searchState.inputElem.addEventListener("keyup", handleInputChanged);
searchState.inputElem.addEventListener("paste", handleInputChanged);
}
2024-08-06 14:38:14 -05:00
generateSettings();
2024-08-13 13:47:54 -05:00
generateSearch();
2024-08-06 14:38:14 -05:00
2022-04-26 17:22:37 -05:00
// loading the theme after the initial load
2022-05-19 17:33:16 -05:00
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)");
2024-07-30 10:31:42 -05:00
const theme = loadValue('theme');
2022-05-19 17:33:16 -05:00
if (prefersDark.matches && !theme) {
setTheme("coal", false);
} else {
setTheme(theme, false);
}
2024-07-30 10:31:42 -05:00
let disableShortcuts = loadValue('disable-shortcuts') === "true";
document.getElementById("disable-shortcuts").checked = disableShortcuts;
hljs.highlightAll();