1.1.0 • Published 2 months ago

custom-element-vuejs-integration v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Custom Elements Vue.js Integration

This package is designed to generate types for your custom elements in a project using Vue.js. These types will generate inline documentation, autocomplete, and type-safe validation for your custom elements in a Vue.js application.

NOTE: This will generate types for both vue templates and JSX.

Usage

This package includes two ways to generate the custom data config file:

  1. calling a function in your build pipeline
  2. as a plugin for the Custom Element Manifest Analyzer

Install

npm i -D custom-element-vuejs-integration

Build Pipeline

import { generateVuejsTypes } from "custom-element-vuejs-integration";
import manifest from "./path/to/custom-elements.json" assert { type: "json" };

const options = {
  outdir: './',
  fileName: 'my-library-vuejs.d.ts',
  globalTypePath: './dist/components/index.js', // relative to `outdir`
};

generateVuejsTypes(manifest, options);

Update tsconfig.json with Local Reference

Now you can add a reference to the types in your tsconfig.json.

{
  "compilerOptions": {
    "types": ["./my-library-vuejs"],
  },
}

CEM Analyzer

Set-up

Ensure the following steps have been taken in your component library prior to using this plugin:

Import

// custom-elements-manifest.config.js

import { customElementVuejsPlugin } from "custom-element-vuejs-integration";

const options = {
  outdir: './dist',
  fileName: 'my-library-vuejs.d.ts',
  globalTypePath: './components/index.js', // relative to `outdir`
};

export default {
  plugins: [
    customElementVuejsPlugin(options)
  ],
};

Update tsconfig.json with Package Reference

Now you can add a reference to the types in your tsconfig.json.

{
  "compilerOptions": {
    "types": ["my-library/my-library-vuejs"],
  },
}

Configuring Your Vue.js Project

If you haven't configured your Vue.js project to work with custom element/web components, follow the instructions here based on your project type to ensure the components work correctly.

Configuration

The configuration has the following optional parameters:

{
  /** Path to output directory */
  outdir?: string;
  /** File name for the types */
  fileName?: string | null;
  /** Class names of any components you would like to exclude from the types */
  exclude?: string[];
  /** Indicates if the component classes are a default export rather than a named export */
  defaultExport?: boolean;
  /** Used to get type reference for components from a single source */
  globalTypePath?: string;
  /** Used to get types from specific path for a given component */
  componentTypePath?: (name: string, tag?: string) => string;
  /** The property form your CEM component object to display your types */
  typesSrc?: string;
  /** Used to add global element props to all component types */
  globalEvents?: string;
}

Configuration

Output

You can configure the destination and the file name of the generated type file using the outdir and fileName configuration.

{
  /** Path to output directory */
  outdir: 'dist',
  /** File name for the types */
  fileName: 'vuejs-integration.d.ts'
}

Default Exports

If you component class does not provide a named export and is the default export, be sure to set defaultExport to true. This will endure the import for the class gets resolved correctly.

Types

If your components were built using TypeScript, the types should automatically be used when you reference the corresponding module.

NOTE: All type paths should be relative to the location specified in the outdir option.

If your types are rolled up into a single type declaration file, you can set the globalTypePath option to the location of that file.

{
  globalTypePath: ".dist/components/index.js";
}

If each of the component type definitions are split out by each component, you can use the componentTypePath to reference individual component paths.

{
  componentTypePath: (name, tag) => `./components/${tag}/${name}.js`;
}

Custom Types

If you have custom types configured in your Custom Elements Manifest and do not have types or are unable to use them, you can specify the property name of that type using the typeSrc option.

1.1.0

2 months ago

1.0.1

3 months ago

1.0.0

5 months ago

1.0.0-beta.7

5 months ago

1.0.0-beta.6

5 months ago

1.0.0-beta.2

5 months ago

1.0.0-beta.3

5 months ago

1.0.0-beta.4

5 months ago

1.0.0-beta.5

5 months ago

1.0.0-beta.1

5 months ago

1.0.0-beta.0

5 months ago