Skip to content

Commit b613096

Browse files
authored
Merge pull request #592 from scala-js/topic/opaque-type
Use opaque types for Scala 3
2 parents af021a7 + 9ee3b46 commit b613096

File tree

72 files changed

+753
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+753
-34
lines changed

api-reports/2_12.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -13978,10 +13978,10 @@ IDBCursor[JC] def primaryKey: IDBKey
1397813978
IDBCursor[JC] def source: S
1397913979
IDBCursor[JC] def update(value: IDBValue): IDBRequest[S, IDBKey]
1398013980
IDBCursorDirection[JT]
13981-
IDBCursorDirection[SO] def next: IDBCursorDirection
13982-
IDBCursorDirection[SO] def nextunique: IDBCursorDirection
13983-
IDBCursorDirection[SO] def prev: IDBCursorDirection
13984-
IDBCursorDirection[SO] def prevunique: IDBCursorDirection
13981+
IDBCursorDirection[SO] val next: IDBCursorDirection
13982+
IDBCursorDirection[SO] val nextunique: IDBCursorDirection
13983+
IDBCursorDirection[SO] val prev: IDBCursorDirection
13984+
IDBCursorDirection[SO] val prevunique: IDBCursorDirection
1398513985
IDBCursorReadOnly[JC] def advance(count: Double): Unit
1398613986
IDBCursorReadOnly[JC] def continue(key: IDBKey?): Unit
1398713987
IDBCursorReadOnly[JC] def direction: IDBCursorDirection
@@ -14126,13 +14126,13 @@ IDBTransaction[JC] var onerror: js.Function1[Event, _]
1412614126
IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1412714127
IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
1412814128
IDBTransactionDurability[JT]
14129-
IDBTransactionDurability[SO] def default: IDBTransactionDurability
14130-
IDBTransactionDurability[SO] def relaxed: IDBTransactionDurability
14131-
IDBTransactionDurability[SO] def strict: IDBTransactionDurability
14129+
IDBTransactionDurability[SO] val default: IDBTransactionDurability
14130+
IDBTransactionDurability[SO] val relaxed: IDBTransactionDurability
14131+
IDBTransactionDurability[SO] val strict: IDBTransactionDurability
1413214132
IDBTransactionMode[JT]
14133-
IDBTransactionMode[SO] def readonly: IDBTransactionMode
14134-
IDBTransactionMode[SO] def readwrite: IDBTransactionMode
14135-
IDBTransactionMode[SO] def versionchange: IDBTransactionMode
14133+
IDBTransactionMode[SO] val readonly: IDBTransactionMode
14134+
IDBTransactionMode[SO] val readwrite: IDBTransactionMode
14135+
IDBTransactionMode[SO] val versionchange: IDBTransactionMode
1413614136
IDBTransactionOptions[JT] val durability: js.UndefOr[IDBTransactionDurability]
1413714137
IDBVersionChangeEvent[JC] def bubbles: Boolean
1413814138
IDBVersionChangeEvent[JC] def cancelBubble: Boolean

api-reports/2_13.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -13978,10 +13978,10 @@ IDBCursor[JC] def primaryKey: IDBKey
1397813978
IDBCursor[JC] def source: S
1397913979
IDBCursor[JC] def update(value: IDBValue): IDBRequest[S, IDBKey]
1398013980
IDBCursorDirection[JT]
13981-
IDBCursorDirection[SO] def next: IDBCursorDirection
13982-
IDBCursorDirection[SO] def nextunique: IDBCursorDirection
13983-
IDBCursorDirection[SO] def prev: IDBCursorDirection
13984-
IDBCursorDirection[SO] def prevunique: IDBCursorDirection
13981+
IDBCursorDirection[SO] val next: IDBCursorDirection
13982+
IDBCursorDirection[SO] val nextunique: IDBCursorDirection
13983+
IDBCursorDirection[SO] val prev: IDBCursorDirection
13984+
IDBCursorDirection[SO] val prevunique: IDBCursorDirection
1398513985
IDBCursorReadOnly[JC] def advance(count: Double): Unit
1398613986
IDBCursorReadOnly[JC] def continue(key: IDBKey?): Unit
1398713987
IDBCursorReadOnly[JC] def direction: IDBCursorDirection
@@ -14126,13 +14126,13 @@ IDBTransaction[JC] var onerror: js.Function1[Event, _]
1412614126
IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1412714127
IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
1412814128
IDBTransactionDurability[JT]
14129-
IDBTransactionDurability[SO] def default: IDBTransactionDurability
14130-
IDBTransactionDurability[SO] def relaxed: IDBTransactionDurability
14131-
IDBTransactionDurability[SO] def strict: IDBTransactionDurability
14129+
IDBTransactionDurability[SO] val default: IDBTransactionDurability
14130+
IDBTransactionDurability[SO] val relaxed: IDBTransactionDurability
14131+
IDBTransactionDurability[SO] val strict: IDBTransactionDurability
1413214132
IDBTransactionMode[JT]
14133-
IDBTransactionMode[SO] def readonly: IDBTransactionMode
14134-
IDBTransactionMode[SO] def readwrite: IDBTransactionMode
14135-
IDBTransactionMode[SO] def versionchange: IDBTransactionMode
14133+
IDBTransactionMode[SO] val readonly: IDBTransactionMode
14134+
IDBTransactionMode[SO] val readwrite: IDBTransactionMode
14135+
IDBTransactionMode[SO] val versionchange: IDBTransactionMode
1413614136
IDBTransactionOptions[JT] val durability: js.UndefOr[IDBTransactionDurability]
1413714137
IDBVersionChangeEvent[JC] def bubbles: Boolean
1413814138
IDBVersionChangeEvent[JC] def cancelBubble: Boolean

src/main/scala/org/scalajs/dom/IDBCursorDirection.scala src/main/scala-2/org/scalajs/dom/IDBCursorDirection.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ object IDBCursorDirection {
1616
/** The cursor shows all records, including duplicates. It starts at the upper bound of the key range and moves
1717
* downwards (monotonically decreasing in the order of keys).
1818
*/
19-
@inline def prev: IDBCursorDirection = "prev".asInstanceOf[IDBCursorDirection]
19+
val prev: IDBCursorDirection = "prev".asInstanceOf[IDBCursorDirection]
2020

2121
/** The cursor shows all records, excluding duplicates. If multiple records exist with the same key, only the first
2222
* one iterated is retrieved. It starts at the upper bound of the key range and moves downwards.
2323
*/
24-
@inline def prevunique: IDBCursorDirection = "prevunique".asInstanceOf[IDBCursorDirection]
24+
val prevunique: IDBCursorDirection = "prevunique".asInstanceOf[IDBCursorDirection]
2525

2626
/** The cursor shows all records, including duplicates. It starts at the lower bound of the key range and moves
2727
* upwards (monotonically increasing in the order of keys).
2828
*/
29-
@inline def next: IDBCursorDirection = "next".asInstanceOf[IDBCursorDirection]
29+
val next: IDBCursorDirection = "next".asInstanceOf[IDBCursorDirection]
3030

3131
/** The cursor shows all records, excluding duplicates. If multiple records exist with the same key, only the first
3232
* one iterated is retrieved. It starts at the lower bound of the key range and moves upwards.
3333
*/
34-
@inline def nextunique: IDBCursorDirection = "nextunique".asInstanceOf[IDBCursorDirection]
34+
val nextunique: IDBCursorDirection = "nextunique".asInstanceOf[IDBCursorDirection]
3535
}

src/main/scala/org/scalajs/dom/IDBTransactionDurability.scala src/main/scala-2/org/scalajs/dom/IDBTransactionDurability.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import scala.scalajs.js
1212
sealed trait IDBTransactionDurability extends js.Any
1313

1414
object IDBTransactionDurability {
15-
@inline def default: IDBTransactionDurability = "default".asInstanceOf[IDBTransactionDurability]
16-
@inline def strict: IDBTransactionDurability = "strict".asInstanceOf[IDBTransactionDurability]
17-
@inline def relaxed: IDBTransactionDurability = "relaxed".asInstanceOf[IDBTransactionDurability]
15+
val default: IDBTransactionDurability = "default".asInstanceOf[IDBTransactionDurability]
16+
val strict: IDBTransactionDurability = "strict".asInstanceOf[IDBTransactionDurability]
17+
val relaxed: IDBTransactionDurability = "relaxed".asInstanceOf[IDBTransactionDurability]
1818
}

src/main/scala/org/scalajs/dom/IDBTransactionMode.scala src/main/scala-2/org/scalajs/dom/IDBTransactionMode.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ sealed trait IDBTransactionMode extends js.Any
1717
object IDBTransactionMode {
1818

1919
/** Allows data to be read but not changed. It is the default transaction mode. */
20-
@inline def readonly: IDBTransactionMode = "readonly".asInstanceOf[IDBTransactionMode]
20+
val readonly: IDBTransactionMode = "readonly".asInstanceOf[IDBTransactionMode]
2121

2222
/** Allows any operation to be performed, including ones that delete and create object stores and indexes. This mode
2323
* is for updating the version number of transactions that were started using the setVersion() method of IDBDatabase
2424
* objects. Transactions of this mode cannot run concurrently with other transactions.
2525
*/
26-
@inline def versionchange: IDBTransactionMode = "versionchange".asInstanceOf[IDBTransactionMode]
26+
val versionchange: IDBTransactionMode = "versionchange".asInstanceOf[IDBTransactionMode]
2727

2828
/** Allows reading and writing of data in existing data stores to be changed. */
29-
@inline def readwrite: IDBTransactionMode = "readwrite".asInstanceOf[IDBTransactionMode]
29+
val readwrite: IDBTransactionMode = "readwrite".asInstanceOf[IDBTransactionMode]
3030
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
opaque type ClientType = String
6+
7+
object ClientType {
8+
val window: ClientType = "window"
9+
10+
val worker: ClientType = "worker"
11+
12+
val sharedworker: ClientType = "sharedworker"
13+
14+
val all: ClientType = "all"
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
opaque type FrameType = String
6+
7+
/** part of ServiceWorker
8+
* [[https://slightlyoff.github.io/ServiceWorker/spec/service_worker_1/#client-frametype ¶4.2.2 frameType]] of
9+
* serviceWorker spec
10+
*/
11+
object FrameType {
12+
13+
/** The window client's global object's browsing context is an auxiliary browsing context. */
14+
val auxiliary: FrameType = "auxiliary"
15+
16+
/** The window client's global object's browsing context is a top-level browsing context. */
17+
val `top-level`: FrameType = "top-level"
18+
19+
/** The window client's global object's browsing context is a nested browsing context. */
20+
val nested: FrameType = "nested"
21+
22+
val none: FrameType = "none"
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/** All documentation for facades is thanks to Mozilla Contributors at https://developer.mozilla.org/en-US/docs/Web/API
2+
* and available under the Creative Commons Attribution-ShareAlike v2.5 or later.
3+
* http://creativecommons.org/licenses/by-sa/2.5/
4+
*
5+
* Everything else is under the MIT License http://opensource.org/licenses/MIT
6+
*/
7+
package org.scalajs.dom
8+
9+
import scala.scalajs.js
10+
11+
opaque type IDBCursorDirection = js.Any
12+
13+
object IDBCursorDirection {
14+
15+
/** The cursor shows all records, including duplicates. It starts at the upper bound of the key range and moves
16+
* downwards (monotonically decreasing in the order of keys).
17+
*/
18+
val prev: IDBCursorDirection = "prev"
19+
20+
/** The cursor shows all records, excluding duplicates. If multiple records exist with the same key, only the first
21+
* one iterated is retrieved. It starts at the upper bound of the key range and moves downwards.
22+
*/
23+
val prevunique: IDBCursorDirection = "prevunique"
24+
25+
/** The cursor shows all records, including duplicates. It starts at the lower bound of the key range and moves
26+
* upwards (monotonically increasing in the order of keys).
27+
*/
28+
val next: IDBCursorDirection = "next"
29+
30+
/** The cursor shows all records, excluding duplicates. If multiple records exist with the same key, only the first
31+
* one iterated is retrieved. It starts at the lower bound of the key range and moves upwards.
32+
*/
33+
val nextunique: IDBCursorDirection = "nextunique"
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/** All documentation for facades is thanks to Mozilla Contributors at https://developer.mozilla.org/en-US/docs/Web/API
2+
* and available under the Creative Commons Attribution-ShareAlike v2.5 or later.
3+
* http://creativecommons.org/licenses/by-sa/2.5/
4+
*
5+
* Everything else is under the MIT License http://opensource.org/licenses/MIT
6+
*/
7+
package org.scalajs.dom
8+
9+
import scala.scalajs.js
10+
11+
opaque type IDBTransactionDurability = String
12+
13+
object IDBTransactionDurability {
14+
val default: IDBTransactionDurability = "default"
15+
val strict: IDBTransactionDurability = "strict"
16+
val relaxed: IDBTransactionDurability = "relaxed"
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/** All documentation for facades is thanks to Mozilla Contributors at https://developer.mozilla.org/en-US/docs/Web/API
2+
* and available under the Creative Commons Attribution-ShareAlike v2.5 or later.
3+
* http://creativecommons.org/licenses/by-sa/2.5/
4+
*
5+
* Everything else is under the MIT License http://opensource.org/licenses/MIT
6+
*/
7+
package org.scalajs.dom
8+
9+
import scala.scalajs.js
10+
11+
/** IndexedDB transaction mode Provides constants for IDB Transaction modes These constants have been removed from
12+
* browser support and replaced by String values
13+
*/
14+
opaque type IDBTransactionMode = String
15+
16+
object IDBTransactionMode {
17+
18+
/** Allows data to be read but not changed. It is the default transaction mode. */
19+
val readonly: IDBTransactionMode = "readonly"
20+
21+
/** Allows any operation to be performed, including ones that delete and create object stores and indexes. This mode
22+
* is for updating the version number of transactions that were started using the setVersion() method of IDBDatabase
23+
* objects. Transactions of this mode cannot run concurrently with other transactions.
24+
*/
25+
val versionchange: IDBTransactionMode = "versionchange"
26+
27+
/** Allows reading and writing of data in existing data stores to be changed. */
28+
val readwrite: IDBTransactionMode = "readwrite"
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
/** see [[http://www.w3.org/TR/WebCryptoAPI/#dfn-KeyFormat ¶14.2 Data Types]] in W3C spec */
6+
opaque type KeyFormat = String
7+
8+
object KeyFormat {
9+
10+
/** An unformatted sequence of bytes. Intended for secret keys. */
11+
val raw: KeyFormat = "raw"
12+
13+
/** The DER encoding of the PrivateKeyInfo structure from RFC 5208. */
14+
val pkcs8: KeyFormat = "pkcs8"
15+
16+
/** The DER encoding of the SubjectPublicKeyInfo structure from RFC 5280. */
17+
val spki: KeyFormat = "spki"
18+
19+
/** The key is a JsonWebKey dictionary encoded as a JavaScript object */
20+
val jwk: KeyFormat = "jwk"
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
/** see [[http://www.w3.org/TR/WebCryptoAPI/#cryptokey-interface ¶13 CryptoKey interface]] in W3C doc */
6+
opaque type KeyType = String
7+
8+
object KeyType {
9+
val public: KeyType = "public"
10+
val `private`: KeyType = "private"
11+
val secret: KeyType = "secret"
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
/** See [[http://www.w3.org/TR/WebCryptoAPI/#cryptokey-interface ¶ 13. CryptoKey Interface]] of w3c spec */
6+
opaque type KeyUsage = String
7+
8+
object KeyUsage {
9+
val encrypt: KeyUsage = "encrypt"
10+
val decrypt: KeyUsage = "decrypt"
11+
val sign: KeyUsage = "sign"
12+
val verify: KeyUsage = "verify"
13+
val deriveKey: KeyUsage = "deriveKey"
14+
val deriveBits: KeyUsage = "deriveBits"
15+
val wrapKey: KeyUsage = "wrapKey"
16+
val unwrapKey: KeyUsage = "unwrapKey"
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
opaque type MIMEType = String
6+
7+
object MIMEType {
8+
val `text/html`: MIMEType = "text/html"
9+
val `text/xml`: MIMEType = "text/xml"
10+
val `application/xml`: MIMEType = "application/xml"
11+
12+
val `application/xhtml+xml`: MIMEType =
13+
"application/xhtml+xml"
14+
val `image/svg+xml`: MIMEType = "image/svg+xml"
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/** https://www.w3.org/TR/2016/CR-mediacapture-streams-20160519/ */
2+
package org.scalajs.dom
3+
4+
import scala.scalajs.js
5+
6+
/** see [[https://www.w3.org/TR/2016/CR-mediacapture-streams-20160519/#idl-def-MediaDeviceKind]] in W3C spec */
7+
opaque type MediaDeviceKind = String
8+
9+
object MediaDeviceKind {
10+
11+
/** Represents an audio input device; for example a microphone. */
12+
val audioinput: MediaDeviceKind = "audioinput"
13+
14+
/** Represents an audio output device; for example a pair of headphones. */
15+
val audiooutput: MediaDeviceKind = "audiooutput"
16+
17+
/** Represents a video input device; for example a webcam. */
18+
val videoinput: MediaDeviceKind = "videoinput"
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/** https://www.w3.org/TR/2016/CR-mediacapture-streams-20160519/ */
2+
package org.scalajs.dom
3+
4+
import scala.scalajs.js
5+
6+
/** see [[https://www.w3.org/TR/2013/WD-mediacapture-streams-20130903/#widl-MediaStream-onended]] in W3C spec */
7+
opaque type MediaStreamTrackState = String
8+
9+
object MediaStreamTrackState {
10+
11+
/** The track is active (the track's underlying media source is making a best-effort attempt to provide data in real
12+
* time). The output of a track in the live state can be switched on and off with the enabled attribute.
13+
*/
14+
val live: MediaStreamTrackState = "live"
15+
16+
/** The track has ended (the track's underlying media source is no longer providing data, and will never provide more
17+
* data for this track). Once a track enters this state, it never exits it.
18+
*
19+
* For example, a video track in a MediaStream ends if the user unplugs the USB web camera that acts as the track's
20+
* media source.
21+
*/
22+
val ended: MediaStreamTrackState = "ended"
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
opaque type PermissionName = String
6+
7+
object PermissionName {
8+
val geolocation: PermissionName = "geolocation"
9+
val midi: PermissionName = "midi"
10+
val notifications: PermissionName = "notifications"
11+
val push: PermissionName = "push"
12+
13+
val `persistent-storage`: PermissionName =
14+
"persistent-storage"
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package org.scalajs.dom
2+
3+
import scala.scalajs.js
4+
5+
opaque type PermissionState = String
6+
7+
object PermissionState {
8+
val granted: PermissionState = "granted"
9+
val denied: PermissionState = "denied"
10+
val prompt: PermissionState = "prompt"
11+
}

0 commit comments

Comments
 (0)