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

@w3t-ab/sqeave

v0.0.4

Published

A squint-cljs based solid-js framework for building SPAs borrowing ideas from Fulcro

Downloads

240

Readme

"LIGHTWEIGHT, baby!!! -- Ronnie Coleman"

Sqeave - SolidJS meets Squint-cljs

This is a fullstack framework heavily inspired by the great Fulcro (and it's predecessor OM) trying to bring Clojure(Script)-syntax into the SolidJS-world (or maybe vice-versa).

The philosophy of Sqeave is to be as lightweight as possible and to not overdo features. The main focus is on Components and State management.

The strength of SolidJS of course lies in its signalling system and general nice way/Best Practices for structring Applications. To be honest, with the introduction of signals for React and with lighter React frameworks like Preact, one could probably achieve much of what this library tries to do using Fulcro and a preact/signalling helper. But here we are, VDOM-less, signals-based, ClojureScript syntax, fullstack library with Components and state management a'la Fulcro/OM.

Why squint-cljs and not ClojureScript? The main plus is that we want to have more native integration with npm-world and a more lightweight output packaging. Using vite. Now since squint uses shallow-copy normal js Datastructures we do not have to do conversion with "clj->js" in javascript library heavy interop code because the data is just native javascript objects anyway.

:warning: This project is in alpha stage. Use at your own risk.

Quickstart

$ mkdir -p sqeave-app/src/main && cd sqeave-app
$ npm init esnext -y
$ npm install @w3t-ab/sqeave vite vite-plugin-solid git+https://github.com/brandonstubbs/vite-plugin-squint.git

add a src/main/App.cljs file with a basic root component:

(ns app
  (:require ["solid-js" :refer [createContext  createSignal]]
            ["solid-js/store" :refer [createStore]]
            ["sqeave/comp" :as comp]))
            
(def AppContext (createContext))

(defc Root [this {:keys []}]
  (let [store [store setStore] (createStore {})]
    #jsx [AppContext.Provider {:value ctx}
           [:div "Hello"]]))
           
(def-factory UiRoot Root AppContext RootFn)

(render UiRoot (js/document.getElementById "root"))

the Root Component is described below.

Add an src/main/index.jsx file:

export * from "./root.cljs";

Add an entry index.html file to the project root directory:

<!DOCTYPE html>
<html lang="en">
<head>
  <script type="module" src="src/main/index.jsx"></script>
</head>
<body>
  <div id="root"></div>
</body>
</html>

add a vite.config.js to the root project directory:

import { defineConfig } from 'vite';
import squint from "vite-plugin-squint"
import solid from 'vite-plugin-solid';

export default defineConfig({
  plugins: [squint({scan: true}),
            solid()],
  build: {
    outDir: "dist/",
    target: 'esnext',
  },
})

Now run:

$ npm run vite

this opens up a vite dev server at localhost:3000. Edit the Root render function to see hot-reload in action.

Components

A simple component is defined using the defc macro as:

(defc Simple [this {:simple/keys [id title content]
                    :or {id (comp/uuid) :tite "Default" :content "Yada."}}]
    #jsx [:div {}
          [:h1 {} (title)]
           [:p {} (content)]])

notice that the title and content are used within the render function as functions (). This is because they are solid-js signals and will react to updates (mutations) of the state atom accordingly (examples below).

The defc macro actually creates a Javascript class behind the scenes which is why you see this in its signature. This is helpful for accessing things like a component's data ident (where the Component's data is located in the sate atom) with this.ident or its top level data signal with (this.data).

State

The main idea with Fulcro (and other state management frameworks like Redux etc.) is that the Application State is stored in a top level atom and then mutations to that atom controls the behaviour of the Application. In our case the top level atom is a SolidJS store and then new state changes are reconciled on that store. Each Component has a Query defined in its defc signature which pulls data from the top state to be used within its render function.

Mostly the idea is that instead of excessive use of hooks to create local state we instead use the built in signals created from the defc macro and the query to get data into the Component.

The state is stored in a top level SolidJS Context-map which looks like this: {:store store :setStore setStore}. This context is added to all Component instances and can be accessed using this.-ctx or simply ctx.

Normalization

The state atom is normalized (de-duplicated) according to the ident of each component. An ident is a vector that starts with a (possibly namespaced) :id keyword [:simple/id "xyz"]. Updates to the sate atom should use specific transaction functions (defined in the next section) to always ensure the state is normalized.

Transactions

There are some helper functions in the sqeave/transact namespace to support updating the state:

  • set-field!
  • add!
  • add-ident!
  • remove-ident!

You can also access component (this) based versions of the transact functions available in the sqeave/comp namespace directly for conveniance:

  • set! mutate a field on
  • mutate!
  • new-data create a new data map adhering to the :or-map in the Components defc signature: (defc Simple [this {:simple/keys [id title] :or {id (comp/uuid) :tite "Default" }}] ...