forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay-platform-specific-content.js
87 lines (72 loc) · 2.79 KB
/
display-platform-specific-content.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import parseUserAgent from './user-agent'
const supportedPlatforms = ['mac', 'windows', 'linux']
const detectedPlatforms = new Set()
// Emphasize content for the visitor's OS (inferred from user agent string)
export default function displayPlatformSpecificContent () {
let platform = getDefaultPlatform() || parseUserAgent().os
// adjust platform names to fit existing mac/windows/linux scheme
if (!platform) platform = 'linux'
if (platform === 'ios') platform = 'mac'
const platformsInContent = findPlatformSpecificContent(platform)
hideSwitcherLinks(platformsInContent)
showContentForPlatform(platform)
// configure links for switching platform content
switcherLinks().forEach(link => {
link.addEventListener('click', (event) => {
event.preventDefault()
showContentForPlatform(event.target.dataset.platform)
findPlatformSpecificContent(event.target.dataset.platform)
})
})
}
function showContentForPlatform (platform) {
// (de)activate switcher link appearances
switcherLinks().forEach(link => {
(link.dataset.platform === platform)
? link.classList.add('selected')
: link.classList.remove('selected')
})
}
function findPlatformSpecificContent (platform) {
// find all platform-specific *block* elements and hide or show as appropriate
// example: {{ #mac }} block content {{/mac}}
Array.from(document.querySelectorAll('.extended-markdown'))
.filter(el => supportedPlatforms.some(platform => el.classList.contains(platform)))
.forEach(el => {
detectPlatforms(el)
el.style.display = el.classList.contains(platform)
? ''
: 'none'
})
// find all platform-specific *inline* elements and hide or show as appropriate
// example: <span class="platform-mac">inline content</span>
Array.from(document.querySelectorAll('.platform-mac, .platform-windows, .platform-linux'))
.forEach(el => {
detectPlatforms(el)
el.style.display = el.classList.contains('platform-' + platform)
? ''
: 'none'
})
return Array.from(detectedPlatforms)
}
// hide links for any platform-specific sections that are not present
function hideSwitcherLinks (platformsInContent) {
Array.from(document.querySelectorAll('a.platform-switcher'))
.forEach(link => {
if (platformsInContent.includes(link.dataset.platform)) return
link.style.display = 'none'
})
}
function detectPlatforms (el) {
el.classList.forEach(elClass => {
const value = elClass.replace(/platform-/, '')
if (supportedPlatforms.includes(value)) detectedPlatforms.add(value)
})
}
function getDefaultPlatform () {
const el = document.querySelector('[data-default-platform]')
if (el) return el.dataset.defaultPlatform
}
function switcherLinks () {
return Array.from(document.querySelectorAll('a.platform-switcher'))
}