This package has been deprecated

Author message:

This package is no longer supported.

@8base/sdk
TypeScript icon, indicating that this package has built-in type declarations

0.0.83 • Public • Published

Example

import { FileUploadLink } from '@8base/file-server-sdk';

const link = ApolloLink.from([
  new FileUploadLink(),
  new HttpLink({ uri }),
]);

const client = new ApolloClient({
  networkInterface: link,
});

var file = document.getElementById("InputFile").files[0];
file.metadata = {...};
file.public = true; // if you want file to be publically accessible


client.mutate({
  mutation: gql`
    mutation SomeMutation($fileVariable: ID) {
      someMutation(file:$fileVariable) {
        fields
        ...
      }
    }`,
  variables: {
    fileVariable: file
  }
});

file.upload.onprogress = callbackProgress;
file.upload.onload = callbackLoad;

Image operations - add at the end of the file download URL:

 - /100x /x200 - resize

 - /200x100 - fit into rectangle (resize on the larger side)

 - /200x100! - force resize

 - /100x100:400x400 /100x100: /:400x400 - crop

 - /r90 /r-90 - rotate

 - /@2 - scale

 - /100x100:400x400/100x /r180/@2 - combine

Publish to NPM

(only user with access to master can release new updates) Use this when you need to update the library in NPM. The following command will automatically set the version, create a tag for it, build the package and publish it to NPM

git add -A
git commit -m 'version update'
npm run upload

Readme

Keywords

none

Package Sidebar

Install

npm i @8base/sdk

Weekly Downloads

10

Version

0.0.83

License

MIT

Unpacked Size

155 kB

Total Files

90

Last publish

Collaborators

  • dav1nx1
  • jorge.osorio
  • 8base-bot