Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prototype type safe query selector #63

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/DOMAPI/Document.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/DOMAPI/Document.res
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ Returns the first element that is a descendant of node that matches selectors.
@send
external querySelector: (document, string) => Null.t<element> = "querySelector"

/**
Invoke querySelector and checks if the element is an HTMLHeadingElement.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Document/querySelector)
*/
let querySelectorAsHeading = (document, selector): option<htmlHeadingElement> => {
switch querySelector(document, selector) {
| Value(element) if HTMLHeadingElement.isInstanceOf(element) => Some(element->Obj.magic)
| _ => None
}
}

/**
Returns all element descendants of node that match selectors.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Document/querySelectorAll)
Expand Down
15 changes: 15 additions & 0 deletions src/DOMAPI/HTMLHeadingElement.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions src/DOMAPI/HTMLHeadingElement.res
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@ open DOMAPI
include HTMLElement.Impl({
type t = htmlHeadingElement
})

let isInstanceOf = (_: 't): bool => %raw(`param instanceof HTMLHeadingElement`)

let tryParse = (element: 't): option<htmlHeadingElement> =>
if isInstanceOf(element) {
Some(element->Obj.magic)
} else {
None
}
15 changes: 15 additions & 0 deletions tests/DOMAPI/QuerySelector__test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions tests/DOMAPI/QuerySelector__test.res
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Option 1
Global.document
->Document.querySelectorAsHeading("h2")
->Option.forEach(heading => {
heading.style.color = "red"
})

// Option 2
Global.document
->Document.querySelectorAsHeading("h2")
->Option.flatMap(HTMLHeadingElement.tryParse)
->Option.forEach(heading => {
heading.style.color = "red"
})
Loading