components

Upload component

The upload component allows you to upload directly from your site. The only thing you need is our component library and a generated JWT token.

<mave-upload token="<token>"></mave-upload>

The token required is a generated JWT (JSON Web Token) using the API key provided by mave.

Depending on what you set as sub you can determine what to do. You can see this as the scope of the upload:

  1. sub: {space id}: adds a new video to the space
  2. sub: {collection id}: adds a new video to the collection
  3. sub: {embed id}: replaces the video with a the upload

Your space id can be found in settings: developers and the collection id can be found on the page of the collection itself, underneath the title.

Alhough you can generate a “static” JWT, we would recommended creating temporary JWTs with an expiration date. This way you can revoke the JWT at any time and prevent abuse. This is how you can implement this:

upload

While the following example demonstrates the usage in a node.js environment, JWT is widely supported across various languages and frameworks:

// server
const jwt = require("jsonwebtoken");

const token = jwt.sign(
  {
    sub: "XD9HPRtkDDmENLeVy9ripU", // space, collection or embed can be specified
    exp: 1680795697, // until when the user can upload
  },
  "SHJmNHhXNnFublZXajNCNllYUmhoTTpUVDRqZ3ZqYWJtOEtVbmNFb2h2d1RY" // API key
);

// return `token` to frontend

Note: Allowing to upload without an exp means this upload component will always (until you revoke your API key) be valid. We highly recommend using an appropriate exp to prevent abuse.

Once the token is added to <mave-upload token="{token}" /> the upload component will be active and ready to use.

Properties

Property Description
token The generated JWT token (additionally you can point to embed or collection).
locale Defaults to en, but you can provide nl, de or fr which changes the language within the component.
color Defaults to blue, but providing a color you can change the color of the button.
radius You can change the radius of the button when providing this value.
font You can overwrite the font by providing this value.

Events

To catch the upload in Javascript and replace it once the client has completed the upload, you can do the following:

const upload = document.querySelector("mave-upload");
upload.addEventListener("completed", (event) => {
  const player = document.createElement("mave-player");
  player.setAttribute("embed", event.detail.embed);
  upload.parentNode.replaceChild(player, upload);
});

Methods

Method Description
reset() When the upload has called completed you can reset it to allow another upload.
🍪 Press 'Accept' to confirm that you accept we don't use cookies. Yes, this banner is just for show!
Accept