1.5.0 • Published 1 month ago

@lottiefiles/lottie-types v1.5.0

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
1 month ago

lottie-types

Representation of the Lottie JSON Schema in Typescript.

The schema types have been built based on lottie-docs/schema and inspired by lottie-jsonschema with a few differences: firstly, some additional informative type comments have been added through testing the schema types with real Lottie data; secondly, the types constructed in a way to avoid duplications.

Instead of writing the schema types manually, generating it automatically was considered but wasn't successful, for reason that most of the tools such as quicktype, json-schema-to-typescript and transform don't work well with huge JSON-schema structures with many nested layers and don't support json-schema/draft/2020-12 features such as conditionals, prefixItems, and some def reference scenarios.

The schema definitions have been synced with https://github.com/marcusstenbeck/lottie-types as well.

Todo

  • test with many Lottie JSON files
  • open source it

Development

The following steps will get you setup to contribute changes to this repo:

  1. Fork this repo.

  2. Clone your forked repo: git clone https://github.com/LottieFiles/lottie-types

  3. Run yarn to install dependencies.

  4. Please sync any schema changes with lottie-docs

  5. You should follow our Commit-Message-Standardization

  6. You should add changesets running yarn changelog for any change to your codebase. You must ensure Changesets are included when making a Pull Request to merge to main branches. Please refer to our creating-changesets docs.

  7. Create a PR from feature-branch to main

  8. After merging to main the Github action will create another PR for only version bumping and changelog, which you have to merge manually.

  9. After the mannual merge the package will be released.

  10. Create a git tag manually and run git push --follow-tags to make it available in Github.

Comands

CommandDescription
yarn cleanDeletes index.d.ts file
yarn testRun tests (wip)
yarn format:prettierFormat the code using prettier
yarn buildBundles all declaration type files into a single file index.d.ts
yarn changelogAdd a changeset changelog entry
yarn changelog:checkCheck pending changesets
yarn release:versionUpdate all the workspace projects versions using changesets
yarn release:publishPublish the packages to the package repository

Tests

There was an attempt to create run-time validations for testing many real Lottie file examples, so we could prove the structure of this Lottie schema types, but it wasn't successful because the Lottie format is huge and has recursive types which leads the tools to hiccup and reach the TSError 7056 or don't work at all. The libraries I've tested so far live in these branches:

  • mf/zod (doesn't throw TSError 7056 while using Zod Type Inference, but still, Layer and Asset validation parsers don't work)
  • mf/zod-schema (throws TSError 7056)
  • mf/superstruct (throws TSError 7056)
  • mf/ajv (works but wasn't fully tested because it has been built mainly around JSON schema and doesn't provide full error information)

Thus, we are considering building an Abstract Syntax Tree :)

Documentation

License

MIT © LottieFiles

1.5.0

1 month ago

1.4.1

6 months ago

1.4.0

7 months ago

1.3.0

7 months ago

1.2.1

10 months ago

1.2.0

11 months ago

1.1.0

11 months ago