Render Solid.js components in React.js and visa versa.
This library allows you to even render React children in Solid components rendered by React and retain both state and context!
npm install react-solid-bridge
yarn add react-solid-bridge
React -> Solid -> React -> Solid -> ...
Solid -> React -> Solid
Solid -> React -> Solid -> React -> ...
NOTE: While context works in both Solid and React, their contexts aren't shared. You have to create a Solid context provider and pass it props from the React context if you want to keep them in sync. Typically, you can do this by passing props through useContext
in React to Solid components.
For rendering Solid components in React apps, you have to import the provider component: ReactToSolidBridgeProvider
.
From there, it has multiple APIs:
convertToReactComponent
higher-order component (easiest).ReactToSolidBridge
with thesolidComponent
prop (medium).ReactToSolidBridge
with thegetSolidComponent
prop (confusing).
You can import these like so:
import {
convertToReactComponent,
ReactToSolidBridge,
ReactToSolidBridgeProvider,
} from 'react-solid-bridge'
You'll wrap either your entire app or the part that needs to render Solid.js components in ReactToSolidBridgeProvider
. Ideally, this would be at the top-level of your app.
convertToReactComponent
is a friendly wrapper around ReactToSolidBridge
. It allows you to convert Solid components into React components, but some things won't work right if they have weird APIs (like the Routes
component from solid-app-router
).
NOTE: This does not work with Solid context providers:
Context.Provider
. If you have one of those, you'll have to useReactToSolidBridge
with thegetSolidComponent
prop.
Typically, this higher-order component will work without issue.
You use it like so:
import {
Cube as SolidCube,
Horse as SolidHorse,
} from 'phosphor-solid'
import {
convertToReactComponent,
ReactToSolidBridgeProvider,
} from 'react-solid-bridge'
const Cube = convertToReactComponent(SolidCube)
const Horse = convertToReactComponent(SolidHorse)
const App = () => (
<ReactToSolidBridgeProvider>
<Cube />
<Horse />
</ReactToSolidBridgeProvider>
)
export default App
Once you've done this, they'll function like regular React components.
ReactToSolidBridge
is a React component that renders Solid components and allows rendering React children in those Solid components.
This works because ReactToSolidBridgeProvider
renders a Solid app into a div
element that it creates. From there, Solid components are portalled into a div
rendered by ReactToSolidBridge
.
If this sounds complicated, it is. Thankfully, that's all been black-boxed, and you shouldn't have to worry about it.
This is the same API used by the convertToReactComponent
higher-order component. It's highly recommended to use that function instead.
This example shows rendering both React children
and props from React into a Solid component.
import {
useCallback,
useState,
} from 'react'
import {
ReactToSolidBridge,
ReactToSolidBridgeProvider,
} from 'react-solid-bridge'
import ReactComponent from './ReactComponent'
import SolidComponent from '../solid/SolidComponent'
const App = () => {
const [
count,
setCount,
] = (
useState(
0
)
)
const incrementCount = (
useCallback(
() => {
setCount((
localCount,
) => (
localCount
+ 1
))
},
[],
)
)
return (
<ReactToSolidBridgeProvider>
<ReactToSolidBridge
props={{
count,
incrementCount,
}}
solidComponent={SolidComponent}
>
<ReactComponent />
</ReactToSolidBridge>
</ReactToSolidBridgeProvider>
)
}
NOTE: When creating a Solid component,
children
needs to be a getter, and it's highly recommended to do that with all non-function props as well.
If this is a local component, meaning you have Webpack configured to render both React and Solid JSX in the bundle, and this exists in your repository, then you only need children
to be a getter.
This example details using the customizable, but confusing API for ReactToSolidBridge
and how you can render multiple Solid components next to each other this way.
This API is not recommended unless you have a use case. If the other APIs throw errors, then this one might be right for you.
import {
useCallback,
useState,
} from 'react'
import {
ReactToSolidBridge,
ReactToSolidBridgeProvider,
} from 'react-solid-bridge'
import ReactComponent from './ReactComponent'
import SolidComponent1 from '../solid/SolidComponent1'
import SolidComponent2 from '../solid/SolidComponent2'
const App = () => {
const [
count,
setCount,
] = (
useState(
0
)
)
const incrementCount = (
useCallback(
() => {
setCount((
localCount,
) => (
localCount
+ 1
))
},
[],
)
)
return (
<ReactToSolidBridgeProvider>
<ReactToSolidBridge
props={{
count,
incrementCount,
}}
getSolidComponent={({
getChildren,
props,
}) => ([
SolidComponent1({
get children() {
return getChildren()
},
get count() {
return (
props
.count()
)
},
})
SolidComponent2({
incrementCount: (
props
.incrementCount
),
})
])}
>
<ReactComponent />
</ReactToSolidBridge>
</ReactToSolidBridgeProvider>
)
}
NOTE: When creating a Solid component,
children
needs to be a getter, and it's highly recommended to do that with all non-function props as well.
This example shows rendering React children in Solid along with both React and Solid components having access to a shared context.
import {
ReactToSolidBridge,
ReactToSolidBridgeProvider,
} from 'react-solid-bridge'
import ReactComponent from './ReactComponent'
import ReactContext from './ReactContext'
import ReactContextConsumer from './ReactContextConsumer'
import ReactContextProvider from './ReactContextProvider'
import ReactStatefulComponent from './ReactStatefulComponent'
import SolidComponent from '../solid/SolidComponent'
import SolidContext from '../solid/SolidContext'
import SolidContextConsumer from '../solid/SolidContextConsumer'
import SolidStatefulComponent from '../solid/SolidStatefulComponent'
const App = () => (
<ReactToSolidBridgeProvider>
<ReactContextProvider>
<ReactContextConsumer />
<ReactContext.Consumer>
{
({
count,
incrementCount,
}) => (
<ReactToSolidBridge
getSolidComponent={({
getChildren,
props,
}) => (
SolidContext
.Provider({
get children() {
return (
SolidComponent({
children: getChildren,
})
)
},
value: {
count: (
props
.count
),
incrementCount: (
props
.incrementCount
),
},
})
)}
props={{
count,
incrementCount,
}}
>
<ReactContextConsumer />
<ReactComponent>
<ReactToSolidBridge
getSolidComponent={({
getChildren,
props,
}) => ([
SolidContextConsumer(),
SolidStatefulComponent({
get count() {
return (
props
.count()
)
},
}),
getChildren(),
])}
props={{
count,
}}
>
<ReactContextConsumer />
<ReactStatefulComponent
count={count}
/>
</ReactToSolidBridge>
</ReactComponent>
</ReactToSolidBridge>
)
}
</ReactContext.Consumer>
</ReactContextProvider>
</ReactToSolidBridgeProvider>
)
export default App
When using Solid in side of React or visa versa, this works great if you're using a library.
If you want to run both libraries side-by-side, you need to have separate Babel configs for React and Solid JSX. While both are JSX, they require different pragmas.
That's beyond the scope of this library, but the source code of react-solid-bridge
actually achieves this feat using a single Webpack config.