0.1.0 • Published 1 year ago

appcenter-file-upload-client v0.1.0

Weekly downloads
74,611
License
MIT
Repository
github
Last release
1 year ago

FileUploadClient - client to simplify upload process for AppCenter needs using Microsoft file upload service

Build

  1. npm install
  2. npm run build

Scripts

There are a bunch of scripts in package.json file. Here's what they are and what they do:

Script commandWhat it does
npm run buildCompiles the typescript into javascript, creates dist directory.
npm run cleanCleans up any compilation output.
npm run prepublishClean dist folder, compiles ts and moves js to dist folder.

There will be more over time.

Publish package updates to npm

If you don't already have a user account in npm, go to your terminal and type in npm adduser and follow the instructions to create an account.

Go to npmjs.com/package/appcenter-file-upload-client to view the list of admins.

Ask one of the current admins to add you to the package as an admin in npm.

Wait 30 minutes after getting added to the package and then go to your terminal and type.

npm run prepublish

npm publish

If you have auth issues when running these commands type npm login in your terminal and follow the instructions to log in.

JavaScript API Reference

After importing, file-upload-client module could be used by calling upload method, accepting the following object:

interface IFileUploadClientSettings {
  assetId: string;
  assetDomain: string;
  assetToken: string;
  filePath: string;
  useLogging?: boolean;

  onProgressChanged?(progress: IProgress): void;
  onMessage?(errorMessage: string, MessageLevel: MessageLevel): void;
  onStateChanged?(status: FileUploadServiceState): void;
}

NOTE: assetId/assetDomain/assetToken should be provided by File Upload Service.

The upload events adds useful hooks to track upload process.

File Upload client public methods avaliable:

  • upload: Uploads file by providing relevant information fetched from Upload Service:
const fileUploadData = {
  assetId: "",
  assetToken: "",
  assetUploadDomian: ""
};

Example Usage:

new FileUploadClient().upload(<IFileUploadClientSettings>{
  onMessage: (uploadMessage: string, messageLevel: MessageLevel) => {
    console.log(`Upload message:  ${uploadMessage}`);
  },
  onProgressChanged: (progressData: IProgress) => {
    console.log(`Upload progress: ${progressData.percentCompleted}`);
  },
  assetId: fileUploadData.assetId,
  assetDomain: fileUploadData.assetUploadDomian,
  assetToken: fileUploadData.assetToken,
  filePath: FILE_PATH
}).then((uploadResult: IUploadResults) => {
  console.log("Wow, upload completed, use this URL to download file: ", uploadResult.downloadUrl);
}).catch((error: FileUploadError) => {
  console.log('An error occured: ', error.message);
});
  • cancel: Cancel current upload:

Example Usage:

const uploadClient = new FileUploadClient({ ... });
uploadClient.upload( { ... });
uploadClient.cancel();

Example Usage:

const uploadClient = new FileUploadClient({ ... });
const isInProgress = uploadClient.isUploadInProgress();
0.1.0

1 year ago

0.0.24

4 years ago

0.0.23

4 years ago

0.0.22

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago