@flayyer/flayyer-typesdeprecated

Flayyer type definition for Typescript templates

Usage no npm install needed!

<script type="module">
  import flayyerFlayyerTypes from 'https://cdn.skypack.dev/@flayyer/flayyer-types';
</script>

README

@flayyer/flayyer-types

npm-version downloads size tree-shake

Flayyer type definition for Typescript templates created with create-flayyer-app.

👉 Want to learn more about rendering images? Visit as at flayyer.com

📖 Checkout our official documentation: docs.flayyer.com

Install

npm install --save-dev @flayyer/flayyer-types

yarn add --dev @flayyer/flayyer-types

Usage

The provided TemplateProps<T> accepts a generic object type for the possible variables passed to the template. Keep in mind not every variable is guaranteed to be present, this is the reason why every variable will be marked as possibly undefined.

import React from "react";
import { TemplateProps } from "@flayyer/flayyer-types";

export default function SimpleTemplate({ variables }: TemplateProps) {
  const title = variables.title; // type is `string | undefined`;
  return (
    <div>
      {title && <h1>{title}</h1>}
    </div>
  );
}

Since URL serialization converts Date and number to strings, every field type will be typed as string | undefined. Objects and arrays will be also typed using a recursive strategy.

import React from "react";
import { TemplateProps } from "@flayyer/flayyer-types";
import { Variable as V, Static } from "@flayyer/variables";

// Example:
export const schema = V.Object({
  title: V.String({ description: "Show this on https://flayyer.com" }),
  count: V.Integer({ title: "Count of items" }),
  price: V.Number({ default: 10.0 }),
  createdAt: V.Optional(V.String({ format: "date-time" })),
  object: V.Object({
    name: V.String(),
    age: V.Integer(),
  }),
  array: V.Array(V.Number(), { description: "An array of numbers" }),
});

type Variables = Static<typeof schema>;

export default function Template({ variables }: TemplateProps<Variables>) {
  const {
    title, // type is `string | undefined`
    count, // type is `string | undefined`
    price = 10, // type is `string | 10` because incoming values will be string!
    createdAt, // type is `string | undefined`
    object, // type is a recursive object with `string | undefined` values
    array, // type is a recursive array with `string | undefined` values
  } = variables;

  return (
    <div>
      {title && <h1>{title}</h1>}
    </div>
  );
}

Platform information

Sometimes we can identify which platform your link are being shared on. You can get this information via the agent prop.

import React from "react";
import { TemplateProps, FlayyerAgentName } from "@flayyer/flayyer-types";

export default function MainTemplate({ agent }: TemplateProps) {
  if (agent.name === FlayyerAgentName.WHATSAPP) {
    // Custom rules for squared template
    return ...
  } else {
    // Default 1200x630 banner.
    return ...
  }
}

Handle multiple locales (languages) by reading the locale prop. You can use some lightweight libraries to process locale internationalization (i18n) just like: lukeed/rosetta and airbnb/polyglot.js.

export default function MainTemplate({ locale }: TemplateProps) {
  if (!locale) {
    // no locale info was provided
  } else if (locale === "en") {
    // ...
  } else if (locale === "es-CO") {
    // ...
  }

  // Native Intl module is supported ✅
  const formatter = new Intl.DateTimeFormat(locale);
  const humanized = formatter.format(new Date());
}

NOTE: Sometimes web proxies used by crawlers ignores user's actual locale.

Import assets

Remove Typescript warning when importing files such as images, fonts, style files, etc. Use the following code in a types.d.ts file in the root fo your Flayyer project.

// types.d.ts

/// <reference types="@flayyer/flayyer-types/global" />

Experimental Javascript support

You can help your IDE with typing information. Here is an working but experimental example in Visual Studio Code:

import { TemplateProps } from "@flayyer/flayyer-types"; // eslint-disable-line no-unused-vars

/**
 * Make sure to default export a React component
 * @param {TemplateProps} [props] - Flayyer props.
 */
export default function JavascriptTemplate({ variables }) {
  const title = variables.title; // IDE will suggest `title` has type `string | undefined`
  // ...
}

Validate Flayyer Config

This is optional but will help your IDE with IntelliSense to autocomplete and hint you.

// flayyer.config.js
const { config } = require("@flayyer/flayyer-types");
require("dotenv").config();

module.exports = config({
  engine: "react",
  key: process.env.FLAYYER_KEY,
  deck: "my-deck",

  // Optionals
  name: "My Deck",
  description: "Lorem ipsum with **markdown**"
  private: false, // Make deck public on https://flayyer.com/community when `false`.
  license: "MIT",
  keywords: ["keyword"],
  sizes: ["THUMBNAIL", "BANNER", "SQUARE", "STORY"], // supported sizes
  repository: "https://github.com/flayyer/repository", // show source on https://flayyer.com/community
});