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

@bigbinary/neeto-themes-frontend

v3.1.2

Published

A repo acts as the source of truth for the new nano's structure, configs, data etc.

Downloads

4,171

Readme

neeto-themes-nano

The neeto-themes-nano allows us to build and use themes within neeto applications. This nano exports @bigbinary/neeto-themes-frontend NPM package and neeto-themes-engine Rails engine.

Contents

  1. Development with Host Application
  2. Instructions for Publishing

Development with Host Application

Engine

Installation

  1. Add this line to your application's Gemfile:

     source "NEETO_GEM_SERVER_URL" do
       # ..existing gems
    
       gem 'neeto-themes-engine'
     end
  2. And then execute:

    bundle install
  3. Add this line to your application's config/routes.rb file

     mount NeetoThemesEngine::Engine => "/neeto_themes_engine"
  4. Add required migrations in the db/migrate folder. Run the following commands to copy the migrations from the engine to the host application.

    bundle exec rails neeto_themes_engine:install:migrations
    bundle exec rails db:migrate
  5. Add the following line to models/organization.rb file.

    has_many :themes, class_name: "NeetoThemesEngine::Theme", as: :owner
  6. Configure model to add below association to attach theme.

    has_one :theme_entity, as: :themeable, class_name: "NeetoThemesEngine::ThemeEntity", dependent: :destroy
    has_one :theme, through: :theme_entity, class_name: "NeetoThemesEngine::Theme"

Usage

  1. Create an engine initializer

    Create a file named neeto_themes_engine.rb in the config/initializers folder.

  2. Customize theme schema

    The engine supports customizing theme schemas based on the needs of the host application. This schema will be used in the frontend to render the theme properties. Eg:

     NeetoThemesEngine.theme_properties_schema = [
       { kind: "color", key: "primary_color", default_value: "#2D36D4" },
       { kind: "color", key: "secondary_color", default_value: "#ECF4FF" },
     ]

    Each object in the array should have the following keys:

    • key: The unique identifier for the theme property.

    • kind: The kind of the theme property.

    Optional keys that can be included:

    • default_value: Sets a default value when creating a new theme.

    • hidden: This boolean prop helps to hide the property from the UI but allows to use it as CSS variable.

    • depends_on: Provides a dependency on other properties. If a key is provided, it will check for its value and only appear in the UI if the dependent property is present.

    • parent_class: This key needs to be added for custom css feature to work properly. See more on custom css feature.

  3. Provide a css variable prefix

    This value will be used to prefix all CSS variables. Eg:

      NeetoThemesEngine.css_variable_prefix = "neeto-cal"

    variable generated for the theme property primary_color will be --neeto-cal-primary-color.

  4. Provide the entities to which the theme property is attached

    This value will be used to determine the entity to which the theme property is attached. We can provide multiple entities. Eg:

      NeetoThemesEngine.valid_themeable_types = ["Meeting", "Booking"]
  5. Provide a default theme name (Optional)

    This provided value will be used to identify the default theme. If not provided, the default theme will be named "Plain blue".

      NeetoThemesEngine.default_theme_name = "My theme"

Frontend package

Installation

  1. Add the neeto-themes-frontend package to the package.json

    yarn add @bigbinary/neeto-themes-frontend

Instructions for development

Check the Frontend package development guide for step-by-step instructions to develop the frontend package.

Usage

Components

  1. Import the NeetoThemesBuilder component from @bigbinary/neeto-themes-frontend:

    import React from "react";
    import { NeetoThemesBuilder } from "@bigbinary/neeto-themes-frontend";
    
    const App = () => (
      <NeetoThemesBuilder
        entityId={meeting?.id}
        entityType="Meeting"
        thumbnail={Thumbnail}
      >
        <Preview />
      </NeetoThemesBuilder>
    );
    
    export default App;

hooks

  1. Import useThemeUtils hook from "@bigbinary/neeto-themes-frontend"

    import { useThemeUtils } from "@bigbinary/neeto-themes-frontend";
    
    const { setTheme, previewingTheme, currentTheme } = useThemeUtils();
  • setTheme: This method is used to set the theme for the entity.

  • previewingTheme: This object contains the currently previewing theme.

  • currentTheme: This object contains the current theme which is applied to the entity.

Custom CSS

neeto-themes-nano will inject custom css into your application as part of a theme. It requires the initializer to be set with the additional property { kind: "custom_css", key: "custom_css", default_value: "", parent_class: "neeto-form-eui" }. The parent_class key will be used as a parent to inject styles and for CSS nesting. This ensures that styles are not injected on pages where you do not want it and also ensures that style rules targeting elements outside this class will not be applied. Please ensure that the value provided to parent_class is present in your application as a wrapper CSS class. For example: neeto-form-eui in neetoForm is present in all external pages where theme needs to be applied. It also provides a code editor with syntax highlighting which depends on Monaco editor as a peer dependency. Please install it in the host application for proper working.

Instructions for Publishing

Consult the building and releasing packages guide for details on how to publish.