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

@betrue/react-elementor

v1.2.5

Published

Nx plugin to generate Wordpress plugin that enrich Elementor with ReactJS widgets. All widget are wrapped in web component that will act as a proxy between elementor and react. all web components uses shadow dom to prevent css overload.

Downloads

108

Readme

Nx ReactJS elementor widgets

Nx plugin to generate Wordpress plugin that enrich Elementor with ReactJS widgets. All widget are wrapped in web component that will act as a proxy between elementor and react. all web components uses shadow dom to prevent css overload.

State between component is maintained using Redux. but you can use the provider of your choice. image

Plugins

| Plugin | Description | | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | | @betrue/react-elementor | Generate Reactjs Elementor widgets in Wordpress plugin; |

Install

Create a new nx workspace (if doesn't exist)

npx create-nx-workspace@latest my-workspace

>  NX   Let's create a new workspace [https://nx.dev/getting-started/intro]

✔ Choose your style                     · integrated
✔ What to create in the new workspace   · apps
✔ Enable distributed caching to make your CI faster · No

Install @betrue/react-elementor

 cd my-workspace
 npm install -D @betrue/react-elementor

Usage

Create a new plugin

npx nx g @betrue/react-elementor:plugin my-project

>  NX  Generating @betrue/react-elementor:application

✔ Which stylesheet formationi would you like to use? · styled-components

....

npm install

this generates starting code base made up of two react components (input from and display title) wrapped into elementor widgets.

you will find the sources of the Wordpress apps directory, and elementor/react widgets in libs/ui.

Each new widget has.

  • React component (my-widget.tsx)
  • React component view (my-widget.view.tsx)
  • Stroybook stories file (my-widget.stories.tsx)
  • MUST be declared in apps/my-project/src/app/my-projet.ts in order to be wrapped in a web component
  • MUST have generated elementor widget @betrue/react-elementor:addWidget

if you already have and Wordpress instance with elementor installed, you juste need to build the wordpress plugin

 npx nx pkg my-project

Zip and upload using Wordpress plugin management the content of dist/element/my-project. that's all you can now try to use theses widgets into elementor :)

For development purpose, You can use storybook to live edit and test your react component https://localhost:4400

npx nx run my-project-ui:storybook

image

On build is important to pass the release version to make force resources update and reset cache

NX_RELEASE_VERSION=xxxx npx nx pkg my-project

you will find the output in dist/elementor/my-project, all you have to do is zip it and install it like any wordpress plugin

cd dist/elementor/
zip -r my-project.zip my-project/

!!! Warning for MacOS users: do not use the right click to zip the folder, since WordPress 6.4.3 it generates an Incompatible Archive Error.

Try it using docker

If you have already installed docker and docker-compose you can try the elementor plugin in wordpress

npx nx pkg my-project    `      

start docker-compose

docker-compose -f apps/my-project/src/docker-compose.yml up -d

Add a new widget to an existing plugin:

nx g @betrue/react-elementor:addWidget --name my-widget --plugin my-plugin --attributes attr1,attr2

| Option | Description | | ------------------------------- | ------------------------------------------------------- | | name | (Required) name of the Reactjs elementor widget | | plugin | (Required) The name of the Wordpress plugin in which the widget will be generated. | | attributes | List of attribute that are customizable in elementor | | author | Name of who makes this plugin. | | tags | Add tags to the project (used for linting). | | widgetDescription | Widget description that appear in Wordpress plugin view. | | version | Wordpress plugin version. |

Maintainer