-
Notifications
You must be signed in to change notification settings - Fork 161
Added FileReaderSync to dom.experimental #424
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
src/main/scala/org/scalajs/dom/experimental/FileReaderSync.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package org.scalajs.dom.experimental | ||
|
||
import org.scalajs.dom.raw.Blob | ||
|
||
import scala.scalajs.js | ||
import scala.scalajs.js.annotation._ | ||
import scala.scalajs.js.typedarray.ArrayBuffer | ||
|
||
/** | ||
* The FileReaderSync interface allows to read File or Blob objects synchronously. | ||
* | ||
* This interface is only available in workers as it enables synchronous I/O that could potentially block. | ||
* | ||
* MDN | ||
*/ | ||
@js.native | ||
@JSGlobal | ||
class FileReaderSync() extends js.Object { | ||
|
||
/** | ||
* The readAsArrayBuffer method is used to starts reading the contents of the | ||
* specified Blob or File. When the read operation is finished, the readyState | ||
* becomes DONE, and the loadend is triggered. At that time, the result attribute | ||
* contains an ArrayBuffer representing the file's data. | ||
* | ||
* MDN | ||
*/ | ||
def readAsArrayBuffer(blob: Blob): ArrayBuffer = js.native | ||
|
||
/** | ||
* The readAsDataURL method is used to starts reading the contents of the specified | ||
* Blob or File. When the read operation is finished, the readyState becomes DONE, and | ||
* the loadend is triggered. At that time, the result attribute contains a data: URL | ||
* representing the file's data as base64 encoded string. | ||
* | ||
* MDN | ||
*/ | ||
def readAsDataURL(blob: Blob): URL = js.native | ||
|
||
/** | ||
* The readAsText method is used to read the contents of the specified Blob or File. | ||
* When the read operation is complete, the readyState is changed to DONE, the loadend | ||
* is triggered, and the result attribute contains the contents of the file as a text string. | ||
* | ||
* MDN | ||
*/ | ||
def readAsText(blob: Blob, encoding: String = "UTF-8"): String = js.native | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.