mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
Convert common.js to ts
This commit is contained in:
parent
9688a561b3
commit
3a24019d96
@ -15,15 +15,15 @@ See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
import type {BlobHandle} from "../../platform/web/dom/BlobHandle.js";
|
||||
import {BlobHandle} from "../../platform/web/dom/BlobHandle.js";
|
||||
|
||||
export interface BlobBody {
|
||||
export interface IEncodedBody {
|
||||
mimeType: string;
|
||||
body: BlobHandle;
|
||||
body: BlobHandle | string;
|
||||
length: number;
|
||||
}
|
||||
|
||||
export function encodeQueryParams(queryParams) {
|
||||
export function encodeQueryParams(queryParams: object): string {
|
||||
return Object.entries(queryParams || {})
|
||||
.filter(([, value]) => value !== undefined)
|
||||
.map(([name, value]) => {
|
||||
@ -35,9 +35,10 @@ export function encodeQueryParams(queryParams) {
|
||||
.join("&");
|
||||
}
|
||||
|
||||
export function encodeBody(body) {
|
||||
if (body.nativeBlob && body.mimeType) {
|
||||
const blob = body;
|
||||
export function encodeBody(body: {}): IEncodedBody {
|
||||
// todo: code change here
|
||||
if (body instanceof BlobHandle) {
|
||||
const blob = body as BlobHandle;
|
||||
return {
|
||||
mimeType: blob.mimeType,
|
||||
body: blob, // will be unwrapped in request fn
|
||||
@ -48,8 +49,9 @@ export function encodeBody(body) {
|
||||
return {
|
||||
mimeType: "application/json",
|
||||
body: json,
|
||||
length: body.length
|
||||
};
|
||||
// todo: code change here; body.length is a mistake?
|
||||
length: json.length
|
||||
}
|
||||
} else {
|
||||
throw new Error("Unknown body type: " + body);
|
||||
}
|
||||
|
@ -15,12 +15,12 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
import type {RequestResult} from "../web/dom/request/fetch.js";
|
||||
import type {BlobBody} from "../../matrix/net/common";
|
||||
import type {IEncodedBody} from "../../matrix/net/common";
|
||||
|
||||
interface IRequestOptions {
|
||||
uploadProgress?: (loadedBytes: number) => void;
|
||||
timeout?: number;
|
||||
body?: string | BlobBody;
|
||||
body?: IEncodedBody;
|
||||
headers?: { [key: string]: number | string };
|
||||
cache?: boolean;
|
||||
method: string;
|
||||
|
Loading…
Reference in New Issue
Block a user