npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

babel-plugin-solid-if-component

v0.0.2

Published

A babel for SolidJS that gives you an <If> and <Else> components which provide an alternative syntax to the <Show> component.

Downloads

3

Readme

babel-plugin-solid-if-component

babel-plugin-solid-if-component is a Babel for SolidJS plugin that gives you an <If> and <Else> component macros. It compiles to Solid's <Show> component (<Else> goes to the fallback prop) and it gives you an altrnative syntax to the <Show> component that achieve the same conditional rendering behavior.

Try in Stackblitz

Open example repo in Github

Note
This plugin is WIP.

import { If, Else } from 'babel-plugin-solid-if-component';

const MyComp = () => {
   return (
      <>
         <If cond={hello}>
            <div>Hello</div>
         </If>
         <Else>
            <div>Goodbye</div>
         </Else>
      </>
   )
}

// ↓ ↓ ↓ ↓  Compiles to ↓ ↓ ↓ ↓

import { Show as _Show } from "solid-js";

const MyComp = () => {
   return (
      <>
         <_Show
            when={hello}
            fallback={<div>Goodbye</div>}
         >
            <div>Hello</div>
         </_Show>
      </>
   )
}
  • The <If> component can be used by itself.
  • The <Else> component has to always follow an <If> component.
  • An else-if syntax is not supported yet but is on the roadmap.
  • Error handling is not fully implemented yet.
  • Errors can also be prvented by an ESLint rule which is also on the roadmap.

Getting Started

npm i -D babel-plugin-solid-if-component

In your Vite config, find the your vite-plugin-solid initialization (in the default Solid template it will be imported as solidPlugin).

The first argument this initialization function takes, is the options object.

Add this field to the initializer options:

{
   babel: {
      plugins: ['babel-plugin-solid-if-component']
   } 
}

Roadmap / Missing Features

  • <ElseIf> / <Elif> component
  • Error handling
  • More tests
  • ESLint rule
  • Alternative auto import syntax: <m:if> and <m:else> (under considaration)

Other cool plugins for Solid

  • https://github.com/orenelbaum/babel-plugin-reactivars-solid - A Svelte-like "reactive variables" plugin for Solid that lets you pass reactive variables (getter + setter) around in a concise way (made by me).
  • https://github.com/orenelbaum/babel-plugin-solid-undestructure - This plugin lets you destructure your props without losing reactivity (made by me).
  • https://github.com/LXSMNSYC/babel-plugin-solid-labels - Solid labels is more of an all in one plugin. It has Svelte-like reactive variables (like this plugin), prop destructuring and more.
  • https://github.com/LXSMNSYC/solid-sfc - An experimental SFC compiler for SolidJS.