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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@editora/conditional-content

v1.0.1

Published

Conditional content plugin for Editora Rich Text Editor with if/else blocks, audience/locale targeting, and preview mode

Readme

@editora/conditional-content

Version License TypeScript Size

[!IMPORTANT] Live Website: https://editora-ecosystem.netlify.app/
Storybook: https://editora-ecosystem-storybook.netlify.app/

@editora/conditional-content adds template-style conditional blocks (IF/ELSE) to Editora, with audience/locale targeting and preview evaluation.

Features

  • Native framework-agnostic plugin (no framework dependency)
  • Works in React (Vite/CRA) and Web Component without changes
  • Insert/edit conditional blocks with:
    • condition expression
    • audience targeting
    • locale targeting
    • optional ELSE branch
  • Grouped toolbar controls for conditional rule + preview
  • Inline floating block actions (Edit / Delete) when caret is inside a conditional block
  • Preview mode to evaluate visible branch from runtime context
  • Multi-instance safe (per-editor preview/context state)
  • Accessible dialog (role="dialog", focus trap, Esc close)
  • Dark/light theme support

Install

npm install @editora/conditional-content

Basic Usage (React)

import { EditoraEditor } from '@editora/react';
import { ConditionalContentPlugin, BoldPlugin, HistoryPlugin } from '@editora/plugins';

const plugins = [
  BoldPlugin(),
  HistoryPlugin(),
  ConditionalContentPlugin({
    defaultCondition: 'user.role == "admin"',
    enableElseByDefault: true,
  }),
];

export default function App() {
  return <EditoraEditor plugins={plugins} />;
}

Basic Usage (Web Component)

<editora-editor id="editor"></editora-editor>
<script>
  const editor = document.getElementById('editor');
  editor.setConfig({
    plugins: 'bold history conditionalContent',
    toolbar: {
      items: 'bold undo redo | conditionalContent conditionalPreview',
    },
    pluginConfig: {
      conditionalContent: {
        defaultCondition: 'user.role == "admin"',
        enableElseByDefault: true,
      },
    },
  });
</script>

Accepted aliases: conditionalContent, conditional-content, conditionalcontent.

Toolbar Commands

  • openConditionalDialog → open insert/edit dialog
  • insertConditionalBlock → insert block directly with config
  • editConditionalBlock → edit currently selected conditional block
  • toggleConditionalPreview → preview on/off
  • deleteConditionalBlock → remove the currently selected conditional block
  • setConditionalContext → update runtime context for preview evaluation

Keyboard Shortcuts

  • Ctrl/Cmd + Alt + Shift + C → open conditional dialog
  • Ctrl/Cmd + Alt + Shift + P → toggle conditional preview
  • F9 → open conditional dialog (fallback)
  • F10 → toggle preview (fallback)
  • Esc → close conditional dialog

Condition Syntax (default evaluator)

Supported examples:

  • user.role == "admin"
  • locale == "en-US"
  • user.tier != "free"
  • order.total >= 100
  • user.tags contains "beta"
  • user.role in ["admin", "editor"]
  • feature.newDashboard (truthy)
  • !feature.newDashboard (falsy)

You can override evaluator with evaluateCondition.

Advanced Usage

Runtime context from API/state

ConditionalContentPlugin({
  async getContext({ editorRoot }) {
    const docId = editorRoot.getAttribute('data-doc-id');
    const res = await fetch(`/api/docs/${docId}/context`);
    if (!res.ok) return {};
    return res.json();
  },
  currentAudience: 'internal',
  currentLocale: 'en-US',
});

Custom evaluator

ConditionalContentPlugin({
  evaluateCondition(condition, context) {
    // Plug your own parser/evaluator here
    if (!condition) return true;
    return condition === 'always' || Boolean(context['featureEnabled']);
  },
});

Set/refresh context at runtime

(window as any).executeEditorCommand?.('setConditionalContext', {
  user: { role: 'editor' },
  audience: 'internal',
  locale: 'en-US',
});

(window as any).executeEditorCommand?.('toggleConditionalPreview', true);

Edge Cases Covered

  • Preview/edit state is isolated per editor instance.
  • Dialog focus is trapped; Esc always closes.
  • Preview mode locks conditional bodies to prevent accidental edits.
  • IF/ELSE body visibility updates after context changes.
  • Insertion preserves current selection content into the IF branch.