зеркало из https://github.com/github/docs.git
remove individual image toggle code
This commit is contained in:
Родитель
b776d7a6ff
Коммит
d976323089
|
@ -1,6 +1,4 @@
|
||||||
<button class="toggle-images tooltipped tooltipped-nw tooltipped-no-delay" id="js-toggle-images" hidden>
|
<button class="toggle-images tooltipped tooltipped-nw tooltipped-no-delay" id="js-toggle-images" hidden>
|
||||||
<span id="js-off-icon" aria-label="{% data ui.toggle_images.off %}" hidden>{% octicon "eye-closed" %}</span>
|
<span id="js-off-icon" aria-label="{% data ui.toggle_images.off %}" hidden>{% octicon "eye-closed" %}</span>
|
||||||
<span id="js-on-icon" aria-label="{% data ui.toggle_images.on %}" hidden>{% octicon "eye" %}</span>
|
<span id="js-on-icon" aria-label="{% data ui.toggle_images.on %}" hidden>{% octicon "eye" %}</span>
|
||||||
<span id="js-hide-single-image" aria-label="{% data ui.toggle_images.hide_single %}" hidden></span>
|
|
||||||
<span id="js-show-single-image" aria-label="{% data ui.toggle_images.show_single %}" hidden></span>
|
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -8,9 +8,7 @@ const hideImagesByDefault = false
|
||||||
const placeholderImagePath = '/assets/images/octicons/image.svg'
|
const placeholderImagePath = '/assets/images/octicons/image.svg'
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This module does two main things:
|
* This module adds a new icon button in the margin to toggle all images on the page.
|
||||||
* 1. Wraps every image in a button so they can be toggled individually.
|
|
||||||
* 2. Adds a new icon button in the margin to toggle all images on the page.
|
|
||||||
* It uses cookies to keep track of a user's selected image preference.
|
* It uses cookies to keep track of a user's selected image preference.
|
||||||
*/
|
*/
|
||||||
export default function () {
|
export default function () {
|
||||||
|
@ -29,57 +27,11 @@ export default function () {
|
||||||
// Look for a cookie with image visibility preference; otherwise, use the default.
|
// Look for a cookie with image visibility preference; otherwise, use the default.
|
||||||
const hideImagesPreferred = (Cookies.get('hideImagesPreferred') === 'true') || hideImagesByDefault
|
const hideImagesPreferred = (Cookies.get('hideImagesPreferred') === 'true') || hideImagesByDefault
|
||||||
|
|
||||||
/*
|
// Hide the image if that is the preference.
|
||||||
* 1. INDIVIDUAL IMAGE HANDLING
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Get the aria-labels from the span elements containing the hide/show tooltips for single images.
|
|
||||||
// (We do it this way instead of hardcoding text in JS for localization friendliness.)
|
|
||||||
const tooltipHideSingle = document.getElementById('js-hide-single-image').getAttribute('aria-label')
|
|
||||||
const tooltipShowSingle = document.getElementById('js-show-single-image').getAttribute('aria-label')
|
|
||||||
|
|
||||||
// For every image...
|
|
||||||
for (const img of images) {
|
|
||||||
const parentSpan = img.parentNode
|
|
||||||
// Create a button and add some attributes.
|
|
||||||
const parentButton = document.createElement('button')
|
|
||||||
parentButton.classList.add('tooltipped', 'tooltipped-nw', 'tooltipped-no-delay', 'btn-toggle-image')
|
|
||||||
// Wrap the image in the button.
|
|
||||||
parentButton.appendChild(img)
|
|
||||||
// Replace the image's parent span with the new button.
|
|
||||||
// This mostly applies to images in ordered lists nested in spans (via lib/render-content/create-processor.js).
|
|
||||||
// It will have no effect with images that are not in ordered lists.
|
|
||||||
parentSpan.parentNode.replaceChild(parentButton, parentSpan)
|
|
||||||
|
|
||||||
// Set the relevant tooltip text, and hide the image if that is the preference.
|
|
||||||
if (hideImagesPreferred) {
|
if (hideImagesPreferred) {
|
||||||
parentButton.setAttribute('aria-label', tooltipShowSingle)
|
toggleImages(images, 'hide')
|
||||||
toggleImage(img, 'hide', tooltipShowSingle)
|
|
||||||
} else {
|
|
||||||
parentButton.setAttribute('aria-label', tooltipHideSingle)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// On any individual image button click...
|
|
||||||
parentButton.addEventListener('click', (e) => {
|
|
||||||
// Determine current state.
|
|
||||||
const hideOnNextClick = parentButton.getAttribute('aria-label') === tooltipShowSingle
|
|
||||||
|
|
||||||
// Hide or show the image!
|
|
||||||
if (hideOnNextClick) {
|
|
||||||
toggleImage(img, 'show', tooltipHideSingle)
|
|
||||||
} else {
|
|
||||||
toggleImage(img, 'hide', tooltipShowSingle)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove focus from the button after click so the tooltip does not stay displayed.
|
|
||||||
parentButton.blur()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* 2. PAGE-WIDE TOGGLE BUTTON HANDLING
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Get the span elements containing the off and on icons.
|
// Get the span elements containing the off and on icons.
|
||||||
const offIcon = document.getElementById('js-off-icon')
|
const offIcon = document.getElementById('js-off-icon')
|
||||||
const onIcon = document.getElementById('js-on-icon')
|
const onIcon = document.getElementById('js-on-icon')
|
||||||
|
@ -107,13 +59,13 @@ export default function () {
|
||||||
offIcon.removeAttribute('hidden')
|
offIcon.removeAttribute('hidden')
|
||||||
onIcon.setAttribute('hidden', true)
|
onIcon.setAttribute('hidden', true)
|
||||||
toggleImagesBtn.setAttribute('aria-label', tooltipImagesOff)
|
toggleImagesBtn.setAttribute('aria-label', tooltipImagesOff)
|
||||||
toggleImages(images, 'hide', tooltipShowSingle)
|
toggleImages(images, 'hide')
|
||||||
} else {
|
} else {
|
||||||
// Button should say "Images are on" on another click
|
// Button should say "Images are on" on another click
|
||||||
offIcon.setAttribute('hidden', true)
|
offIcon.setAttribute('hidden', true)
|
||||||
onIcon.removeAttribute('hidden')
|
onIcon.removeAttribute('hidden')
|
||||||
toggleImagesBtn.setAttribute('aria-label', tooltipImagesOn)
|
toggleImagesBtn.setAttribute('aria-label', tooltipImagesOn)
|
||||||
toggleImages(images, 'show', tooltipHideSingle)
|
toggleImages(images, 'show')
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove focus from the button after click so the tooltip does not stay displayed.
|
// Remove focus from the button after click so the tooltip does not stay displayed.
|
||||||
|
@ -130,30 +82,28 @@ export default function () {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleImages (images, action, tooltipText) {
|
function toggleImages (images, action) {
|
||||||
for (const img of images) {
|
for (const img of images) {
|
||||||
toggleImage(img, action, tooltipText)
|
toggleImage(img, action)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleImage (img, action, tooltipText) {
|
function toggleImage (img, action) {
|
||||||
const parentButton = img.parentNode
|
const parentEl = img.parentNode
|
||||||
|
|
||||||
// Style the parent button and image depending on the state.
|
// Style the parent element and image depending on the state.
|
||||||
if (action === 'show') {
|
if (action === 'show') {
|
||||||
img.src = img.getAttribute('originalSrc')
|
img.src = img.getAttribute('originalSrc')
|
||||||
img.style.border = '2px solid var(--color-auto-gray-2)'
|
img.style.border = '2px solid var(--color-auto-gray-2)'
|
||||||
parentButton.setAttribute('aria-label', tooltipText)
|
parentEl.style.display = 'block'
|
||||||
parentButton.style.display = 'block'
|
parentEl.style['margin-top'] = '20px'
|
||||||
parentButton.style['margin-top'] = '20px'
|
parentEl.style.padding = '10px 0'
|
||||||
parentButton.style.padding = '10px 0'
|
|
||||||
} else {
|
} else {
|
||||||
if (!img.getAttribute('originalSrc')) img.setAttribute('originalSrc', img.src)
|
if (!img.getAttribute('originalSrc')) img.setAttribute('originalSrc', img.src)
|
||||||
img.src = placeholderImagePath
|
img.src = placeholderImagePath
|
||||||
img.style.border = 'none'
|
img.style.border = 'none'
|
||||||
parentButton.setAttribute('aria-label', tooltipText)
|
parentEl.style.display = 'inline'
|
||||||
parentButton.style.display = 'inline'
|
parentEl.style['margin-top'] = '0'
|
||||||
parentButton.style['margin-top'] = '0'
|
parentEl.style.padding = '1px 6px'
|
||||||
parentButton.style.padding = '1px 6px'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
display: block;
|
display: block;
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
margin: 20px auto 0 auto;
|
margin: 20px auto 0 auto;
|
||||||
|
border: none;
|
||||||
|
max-width: calc(100% - 32px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.procedural-image-wrapper img {
|
.procedural-image-wrapper img {
|
||||||
|
@ -10,6 +12,7 @@
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// make sure images that contain emoji render at the expected size
|
// make sure images that contain emoji render at the expected size
|
||||||
|
@ -20,21 +23,6 @@ img[src*="https://github.githubassets.com/images/icons/emoji"] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.markdown-body img {
|
.markdown-body img {
|
||||||
max-height: 600px;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdown-body button.btn-toggle-image {
|
|
||||||
border: none;
|
|
||||||
margin-top: 20px;
|
|
||||||
padding: 10px 0;
|
|
||||||
max-width: calc(100% - 32px);
|
|
||||||
background-color: transparent;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.markdown-body button.btn-toggle-image img {
|
|
||||||
padding: 0;
|
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
border: 2px solid var(--color-auto-gray-2);
|
padding: 0;
|
||||||
}
|
}
|
Загрузка…
Ссылка в новой задаче