Skip to content
New issue

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

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

Already on GitHub? # to your account

Cleanups, part 1. #458

Merged
merged 16 commits into from
Sep 3, 2021
Merged
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
47,667 changes: 23,858 additions & 23,809 deletions api-reports/2_12.txt

Large diffs are not rendered by default.

47,667 changes: 23,858 additions & 23,809 deletions api-reports/2_13.txt

Large diffs are not rendered by default.

44 changes: 16 additions & 28 deletions example/src/main/scala/example/Example.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package example

import scala.scalajs.js
import scala.scalajs.js.annotation._

import org.scalajs.dom
Expand Down Expand Up @@ -125,21 +126,25 @@ object EventHandler{
}
}

@JSExportTopLevel("ExampleXMLHttpRequest")
object XMLHttpRequest{
@JSExportTopLevel("ExampleFetch")
object Fetch {
@JSExport
def main(pre: html.Pre) = {
val xhr = new dom.XMLHttpRequest()
xhr.open("GET",
import scala.concurrent
.ExecutionContext
.Implicits
.global
import js.Thenable.Implicits._
val url =
"https://www.boredapi.com/api/activity"
)
xhr.onload = { (e: dom.Event) =>
if (xhr.status == 200) {
pre.textContent =
xhr.responseText
}
val responseText = for {
response <- dom.fetch(url)
text <- response.text()
} yield {
text
}
xhr.send()
for (text <- responseText)
pre.textContent = text
}
}

Expand All @@ -162,20 +167,3 @@ object Websocket {
}
}
}

@JSExportTopLevel("ExampleAjaxExtension")
object AjaxExtension {
@JSExport
def main(pre: html.Pre) = {
import dom.ext.Ajax
import scala.concurrent
.ExecutionContext
.Implicits
.global
val url =
"https://www.boredapi.com/api/activity"
Ajax.get(url).foreach { case xhr =>
pre.textContent = xhr.responseText
}
}
}
27 changes: 4 additions & 23 deletions readme/Index.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@
autorun=true
)

@sect{dom.XMLHttpRequest}
@sect{dom.Fetch}
@pair(
"XMLHttpRequest",
"Fetch",
Seq(
pre("output")
)
Expand Down Expand Up @@ -145,38 +145,19 @@
@li
Deprecated properties/methods/types will not be present.
@li
IE-only, Chrome-only, FF-only, and in general browser-specific attributes will only be found under the @hl.scala{experimental} package.
IE-only, Chrome-only, FF-only, and in general browser-specific attributes will typically not be present.
@li
The name of a Scala type should map directly to the name of the corresponding Javascript type.
@li
Any type which is a Javascript type (e.g. you can @hl.scala{instanceof} in javascript) should be a Scala @hl.scala{class}; any other interface which isn't a Javascript type should be a @hl.scala{trait}.
@li
Read-only members should be @hl.scala{def}, and not-directly-instantiable classes should have @hl.scala{private} constructors.

@sect{Extensions}

@p
Apart from @hl.scala{Color}, Scala-js-dom contains some useful helpers and implicit classes in @hl.scala{org.scalajs.dom.ext} that serve no purpose other than to make your use of the DOM more pleasant.

@p
Examples include the @hl.scala{Ajax.get} and @hl.scala{Ajax.post} methods which let you avoid messing with @hl.scala{dom.XMLHttpRequest} directly, or @hl.scala{KeyCodes} which provides a nice list of the keycodes that result from pressing various keys on the keyboard.
@pair(
"AjaxExtension",
Seq(
pre("output")
)
)

@p
See also @a("roll", href:="https://github.com/lihaoyi/roll") (@a("live demo", href:="http://lihaoyi.github.io/roll/")) and @a("scala-js-games", href:="https://github.com/lihaoyi/scala-js-games") for an example of its use. @a("Scala-js-fiddle", href:="http://www.scala-js-fiddle.com/") also contains a pile of @a("fun examples", href:="(http://www.scala-js-fiddle.com/gist/9405209/Oscilloscope.scala") that demonstrate its usage. Pull requests/forks are welcome!

@sect{Contributing}
@p
Scala-js-dom is a work in progress. The current code base is a hodgepodge of auto-generated/scraped/hand-tweaked code, and is full of rough edges. If you see something that you think can be improved, feel free to send a pull request. These could include:
The DOM API is always evolving, and scala-js-dom is a hodgepodge of auto-generated/scraped/hand-tweaked code full of rough edges. If you see something that you think can be improved, feel free to send a pull request. These could include:
@ul
@li
Improved doc-comments; who doesn't love better docs?
@li
Missing methods/properties/classes; send the PR adding it in including it together with a link to an authoritative source (e.g. MDN) and it should get merged.
@li
Additional extensions (in @hl.scala{org.scalajs.dom.ext}). These currently represent an arbitrary collection of helpers that have been needed so far. If there's some implicit that you find you need and you think other people will to, send a pull request and we can talk about it.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package org.scalajs.dom.ext
package org.scalajs.dom

import org.scalajs.dom._
import scala.collection.mutable

class NamedNodeMapMap private[ext] (namedNodeMap: NamedNodeMap)
private[dom] class NamedNodeMapMap(namedNodeMap: NamedNodeMap)
extends mutable.Map[String, Attr] {
self =>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package org.scalajs.dom.ext
package org.scalajs.dom

import org.scalajs.dom._
import scala.collection.mutable

class NamedNodeMapMap private[ext] (namedNodeMap: NamedNodeMap)
private[dom] class NamedNodeMapMap(namedNodeMap: NamedNodeMap)
extends mutable.Map[String, Attr] {
self =>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.scalajs.dom.experimental
package org.scalajs.dom

import org.scalajs.dom.raw.EventTarget
import scala.scalajs.js
import scala.scalajs.js.annotation.JSGlobal

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Everything else is under the MIT License
* http://opensource.org/licenses/MIT
*/
package org.scalajs.dom.raw
package org.scalajs.dom

import org.scalajs.dom.experimental.mediastream.MediaStream
import scala.scalajs.js
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Everything else is under the MIT License
* http://opensource.org/licenses/MIT
*/
package org.scalajs.dom.raw
package org.scalajs.dom

import scala.scalajs.js
import scala.scalajs.js.annotation._
Expand Down Expand Up @@ -501,7 +501,9 @@ class CSSPageRule extends CSSRule {
*/
@js.native
@JSGlobal
class CSSRuleList extends DOMList[CSSRule]
class CSSRuleList private[this] () extends DOMList[CSSRule] {
def item(index: Int): CSSRule = js.native
}

/**
* The CSSKeyframesRule interface describes an object representing a complete set
Expand Down
36 changes: 36 additions & 0 deletions src/main/scala/org/scalajs/dom/DeprecatedCSSAliases.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package org.scalajs.dom

import org.scalajs.dom

/**
* Short aliases of all the dom.CSSThing classes
*/
@deprecated("directly use the dom.CSS* types and values instead", "2.0.0")
object DeprecatedCSSAliases {
@deprecated("use dom.CSS instead", "2.0.0")
@inline def CSS = dom.CSS
@deprecated("use dom.FontFaceRule instead", "2.0.0")
type FontFaceRule = CSSFontFaceRule
@deprecated("use dom.ImportRule instead", "2.0.0")
type ImportRule = CSSImportRule
@deprecated("use dom.KeyframeRule instead", "2.0.0")
type KeyframeRule = CSSKeyframeRule
@deprecated("use dom.MediaRule instead", "2.0.0")
type MediaRule = CSSMediaRule
@deprecated("use dom.NamespaceRule instead", "2.0.0")
type NamespaceRule = CSSNamespaceRule
@deprecated("use dom.PageRule instead", "2.0.0")
type PageRule = CSSPageRule
@deprecated("use dom.Rule instead", "2.0.0")
type Rule = CSSRule
@deprecated("use dom.Rule instead", "2.0.0")
@inline def Rule = CSSRule
@deprecated("use dom.RuleList instead", "2.0.0")
type RuleList = CSSRuleList
@deprecated("use dom.StyleDeclaration instead", "2.0.0")
type StyleDeclaration = CSSStyleDeclaration
@deprecated("use dom.StyleSheet instead", "2.0.0")
type StyleSheet = CSSStyleSheet
@deprecated("use dom.StyleRule instead", "2.0.0")
type StyleRule = CSSStyleRule
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package org.scalajs.dom.experimental
package org.scalajs.dom

import org.scalajs.dom.Blob
import org.scalajs.dom.raw.FormData
import scala.scalajs.js
import scala.scalajs.js.annotation._
import scala.scalajs.js.typedarray.{ArrayBuffer, Uint8Array}
Expand Down Expand Up @@ -183,17 +181,6 @@ trait ResponseInit extends js.Object {
var headers: HeadersInit
}

object ResponseInit {
def apply(_status: Int = 200, _statusText: ByteString = "OK",
_headers: HeadersInit = js.Dictionary[String]()): ResponseInit = {
new ResponseInit {
var status = _status
var statusText = _statusText
var headers = _headers
}
}
}

/**
* See [[https://fetch.spec.whatwg.org/#body body interface]] in whatwg Fetch spec.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Everything else is under the MIT License
* http://opensource.org/licenses/MIT
*/
package org.scalajs.dom.raw
package org.scalajs.dom

import org.scalajs.dom.experimental.mediastream.{MediaSource, MediaStream}
import scala.scalajs.js
Expand Down Expand Up @@ -1161,7 +1161,8 @@ abstract class HTMLMenuElement extends HTMLElement {
*/
@js.native
@JSGlobal
abstract class HTMLCollection extends DOMList[Element] {
class HTMLCollection private[this] () extends DOMList[Element] {
def item(index: Int): Element = js.native

/**
* Returns the specific node whose ID or, as a fallback, name matches the string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Everything else is under the MIT License
* http://opensource.org/licenses/MIT
*/
package org.scalajs.dom.raw
package org.scalajs.dom

import scala.scalajs.js
import scala.scalajs.js.annotation._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.scalajs.dom.ext
package org.scalajs.dom

/**
* The KeyboardEvent.key attribute of an event must always contain one of these control key or character values (even if
Expand Down Expand Up @@ -738,3 +738,85 @@ object KeyValue {
final val ZoomToggle = "ZoomToggle"
}
}

/**
* A list of the codes returned by KeyEvents.
*/
object KeyCode {
final val Backspace = 8
final val Tab = 9
final val Enter = 13
final val Shift = 16
final val Ctrl = 17
final val Alt = 18
final val Pause = 19
final val CapsLock = 20
final val Escape = 27
final val Space = 32
final val PageUp = 33
final val PageDown = 34
final val End = 35
final val Home = 36
final val Left = 37
final val Up = 38
final val Right = 39
final val Down = 40
final val Insert = 45
final val Delete = 46
final val Num0 = 48
final val Num1 = 49
final val Num2 = 50
final val Num3 = 51
final val Num4 = 52
final val Num5 = 53
final val Num6 = 54
final val Num7 = 55
final val Num8 = 56
final val Num9 = 57
final val A = 65
final val B = 66
final val C = 67
final val D = 68
final val E = 69
final val F = 70
final val G = 71
final val H = 72
final val I = 73
final val J = 74
final val K = 75
final val L = 76
final val M = 77
final val N = 78
final val O = 79
final val P = 80
final val Q = 81
final val R = 82
final val S = 83
final val T = 84
final val U = 85
final val V = 86
final val W = 87
final val X = 88
final val Y = 89
final val Z = 90
final val F1 = 112
final val F2 = 113
final val F3 = 114
final val F4 = 115
final val F5 = 116
final val F6 = 117
final val F7 = 118
final val F8 = 119
final val F9 = 120
final val F10 = 121
final val F11 = 122
final val F12 = 123
}

/** Aliases for DOM_KEY_LOCATION_* constants from [[KeyboardEvent]] */
object KeyLocation {
final val Standard = KeyboardEvent.DOM_KEY_LOCATION_STANDARD
final val Left = KeyboardEvent.DOM_KEY_LOCATION_LEFT
final val Right = KeyboardEvent.DOM_KEY_LOCATION_RIGHT
final val NumPad = KeyboardEvent.DOM_KEY_LOCATION_NUMPAD
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.scalajs.dom.experimental
package org.scalajs.dom

import org.scalajs.dom.raw.EventTarget
import scala.scalajs.js
import scala.scalajs.js.annotation._

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.scalajs.dom.raw
package org.scalajs.dom

import scala.scalajs.js
import scala.scalajs.js.annotation.JSGlobal
Expand Down
Loading