mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: As per https://github.com/facebook/react-native/issues/41079, we're outputting ASCII encoded data URIs to `FileReader.readAsDataURL` due to lack of native `ArrayBuffer` support and unclear use of encoding to align with web. I'll revisit this at a later point with a better testing strategy once we have a good idea of how this should behave internally. Aside from purely reverting https://github.com/facebook/react-native/issues/39276, I've kept the use of `ArrayBuffer.isView(part)` to the previous `part instanceof global.ArrayBufferView` since it is more correct. ## Changelog: [INTERNAL] [REMOVED] - Revert Blob from ArrayBuffer Pull Request resolved: https://github.com/facebook/react-native/pull/41170 Test Plan: Run the following at the project root to selectively test changes: `jest packages/react-native/Libraries/Blob` Reviewed By: cipolleschi Differential Revision: D50601036 Pulled By: dmytrorykun fbshipit-source-id: 0ef5c960c253db255c2f8532ea1f44111093706c
56 lines
1.1 KiB
JavaScript
56 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {BlobOptions} from './BlobTypes';
|
|
|
|
const Blob = require('./Blob');
|
|
const invariant = require('invariant');
|
|
|
|
/**
|
|
* The File interface provides information about files.
|
|
*/
|
|
class File extends Blob {
|
|
/**
|
|
* Constructor for JS consumers.
|
|
*/
|
|
constructor(
|
|
parts: Array<Blob | string>,
|
|
name: string,
|
|
options?: BlobOptions,
|
|
) {
|
|
invariant(
|
|
parts != null && name != null,
|
|
'Failed to construct `File`: Must pass both `parts` and `name` arguments.',
|
|
);
|
|
|
|
super(parts, options);
|
|
this.data.name = name;
|
|
}
|
|
|
|
/**
|
|
* Name of the file.
|
|
*/
|
|
get name(): string {
|
|
invariant(this.data.name != null, 'Files must have a name set.');
|
|
return this.data.name;
|
|
}
|
|
|
|
/*
|
|
* Last modified time of the file.
|
|
*/
|
|
get lastModified(): number {
|
|
return this.data.lastModified || 0;
|
|
}
|
|
}
|
|
|
|
module.exports = File;
|