-
Notifications
You must be signed in to change notification settings - Fork 406
/
Copy pathto-be-visible.js
63 lines (56 loc) · 1.71 KB
/
to-be-visible.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
import {checkHtmlElement} from './utils'
function isStyleVisible(element) {
const {getComputedStyle} = element.ownerDocument.defaultView
const {display, visibility, opacity} = getComputedStyle(element)
return (
display !== 'none' &&
visibility !== 'hidden' &&
visibility !== 'collapse' &&
opacity !== '0' &&
opacity !== 0
)
}
function isAttributeVisible(element, previousElement) {
let detailsVisibility
if (previousElement) {
detailsVisibility =
element.nodeName === 'DETAILS' && previousElement.nodeName !== 'SUMMARY'
? element.hasAttribute('open')
: true
} else {
detailsVisibility =
element.nodeName === 'DETAILS' ? element.hasAttribute('open') : true
}
return !element.hasAttribute('hidden') && detailsVisibility
}
function isElementVisible(element, previousElement) {
return (
isStyleVisible(element) &&
isAttributeVisible(element, previousElement) &&
(!element.parentElement || isElementVisible(element.parentElement, element))
)
}
export function toBeVisible(element) {
checkHtmlElement(element, toBeVisible, this)
const isInDocument =
element.ownerDocument === element.getRootNode({composed: true})
const isVisible = isInDocument && isElementVisible(element)
return {
pass: isVisible,
message: () => {
const is = isVisible ? 'is' : 'is not'
return [
this.utils.matcherHint(
`${this.isNot ? '.not' : ''}.toBeVisible`,
'element',
'',
),
'',
`Received element ${is} visible${
isInDocument ? '' : ' (element is not in the document)'
}:`,
` ${this.utils.printReceived(element.cloneNode(false))}`,
].join('\n')
},
}
}