Skip to content

A function to extract information about the props of a Svelte file. Designed to simplify the creation of documentation

License

Notifications You must be signed in to change notification settings

datawrapper/svelte-component-info

 
 

Repository files navigation

Svelte - Get Component Info

A function to extract information about the props, actions, slots and css variables from a Svelte file. Designed to simplify the creation of documentation

NPM link: @el3um4s/svelte-get-component-info

I recommend using it with el3um4s/svelte-component-info (npm: @el3um4s/svelte-component-info)

Install and use the package

To use the package in a project:

npm i @el3um4s/svelte-get-component-info

and then in a file:

import type { SvelteInformations } from "@el3um4s/svelte-get-component-info";
import { getInfo, readFileSvelte } from "@el3um4s/svelte-get-component-info";

const info: SvelteInformations = getInfo(readFileSvelte("./src/lib/hello.svelte").content.content);
console.log(info.props); //  [{ name: "message", type: "string", defaultValue: "Hello World" }]
console.log(info.actions); /// [ { name: "notify" }]

info looks like this:

{
    "props": [
        { "name": "color", "type":"string", "defaultValue":"red" },
        { "name": "steps", "type":"number", "defaultValue":"8" }
        { "name": "title", "type":"string" },
        { "name": "description"}
    ],
    "actions": [
        { "name": "click" },
        { "name": "hover" },
        { "name": "customAction" }
    ],
    "slots": [
        { "anonymous": true },
        { "name": "header", "anonymous": false },
        { "name": "footer", "anonymous": false }
    ],
    "css": [
      { "name": "--color-primary" },
      { "name": "--color-secondary" }
    ]
}

To Do List:

  • get props:
    • name
    • type
    • defaultValue
  • actions
  • slots
    • anonyms
    • named
  • css variables

About

A function to extract information about the props of a Svelte file. Designed to simplify the creation of documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 90.4%
  • Svelte 9.6%