Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@stianlarsen/react-code-preview
Advanced tools
A React component that provides tabbed navigation for viewing a live component preview and its source code separately.
In this version, CSS variables have been updated and scoped to individual components to prevent interference with your global styles. If you are using previous versions, some existing CSS variable names may no longer be recognized. We recommend checking your custom overrides.
--cp-
prefix.CodePreview
scope.A versatile React component that allows for toggling between a live preview and the source code of React components. This is especially useful for developers who wish to present both how a component looks and how it is implemented within the same UI space.
The intuitive tabbed interface of @stianlarsen/react-code-preview
shiki
.shiki
for syntax highlighting in both light and dark modes.Using npm:
npm install @stianlarsen/react-code-preview
Or using yarn:
yarn add @stianlarsen/react-code-preview
I'd recommend structuring your files as a registry to keep tabs on everything. But for the sake of this README:
For the code and component you want to preview, i'd structure my files easy-to-use like this:
// src/buttonDemo.tsx
export const ButtonDemo = () => {
return <Button>Demo</Button>;
};
// src/buttonDemoCode.[md | txt | string (as long as you get a plain string)] (example under showcasing the use of .md file for your codeString)
```jsx
export const ButtonDemo = () => {
return <Button>Demo</Button>;
};
```
Import the CodePreview
component and provide the necessary props:
import { ButtonDemo } from "src/buttonDemo";
import { ButtonDemoCode } from "src/buttonDemoCode";
import { CodePreview } from "@stianlarsen/react-code-preview";
function App() {
const buttonDemo = <ButtonDemo />;
return (
<CodePreview
component={buttonDemo}
code={ButtonDemoCode}
lightTheme="github-light"
darkTheme="nord"
/>
);
}
You can specify themes for both light and dark mode. Default (If no lightTheme or darkTheme is passed in) is "blackout" which is black and white for both dark and light mode.
The theme follows the user's system preferences through the media queries (prefers-color-scheme
).
Here's an example using the 'nord' theme for dark mode and 'github-light' for light mode:
<CodePreview
component={YourComponent}
code={codeString}
lightTheme="github-light"
darkTheme="nord"
/>
The lightTheme
and darkTheme
props accept any of the bundled themes from shiki.
To further customize the look and feel of the CodePreview
component, you can provide your own HSL values for color variables defined specifically for the .code-preview
scope. This allows you to tailor the component to match your application's design language with ease, without affecting other components.
Here are the CSS custom properties you can override:
.code-preview {
--cp-radius: 0.5rem;
--cp-background: 0 0% 100%;
--cp-foreground: 240 10% 3.9%;
--cp-muted-foreground: 240 3.8% 46.1%;
--cp-border: 240 5.9% 90%;
--cp-black: hsl(0 0 0%);
}
Adjusting these variables in your CSS will affect the CodePreview
component styling without impacting the rest of your application.
A recent update has made the CodePreview
component even more flexible and user-friendly. Now, you no longer need to pass in the "component" prop for simpler use cases. This is particularly useful if you don't require tabs to switch between preview and code, allowing for a code-only display.
Additionally, a copy button has been added to the code window, making it easier to copy the code to your clipboard.
CodePreview
Component PropsThe CodePreview
component accepts several props to customize its behavior and appearance:
Prop | Type | Description |
---|---|---|
component | () => JSX.Element | Optional. The React component to render in the live preview. If not provided, only code will be displayed. |
code | string | The source code of the component as a string for display. |
lightTheme | Themes | The theme to use for light mode, defaults to "blackout". |
darkTheme | Themes | The theme to use for dark mode, follows system preference if not set. Defaults to "blackout". |
className | string | An optional CSS class to apply custom styling. |
style | CSSProperties | Optional inline styles. |
initialTab | TabsType | The initial tab to be active ("preview" or "code"). |
The CodePreview
component works out of the box with Next.js. Ensure to use the component within a Next.js page or component that supports client-side rendering. Add the use client
directive at the top of your file.
// Next.js component file
"use client";
import { CodePreview } from "@stianlarsen/react-code-preview";
// ... your component code
To use a React component with the CodePreview
component, you'll need to convert it to a string. Here are some methods:
.md
or .txt
file with your component's code, which can be imported as a raw string..md
or .txt
files as raw text. (.txt
requires raw-loader)Example webpack config for Next.js:
// next.config.js
module.exports = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.md$/,
type: "asset/source",
});
config.module.rules.push({
test: /\.txt$/,
use: "raw-loader",
});
return config;
},
};
Feel free to contribute to @stianlarsen/react-code-preview by submitting issues and pull requests. Let's make this tool even better, together!
@stianlarsen/react-code-preview is MIT licensed.
FAQs
A React component that provides tabbed navigation for viewing a live component preview and its source code separately.
The npm package @stianlarsen/react-code-preview receives a total of 5 weekly downloads. As such, @stianlarsen/react-code-preview popularity was classified as not popular.
We found that @stianlarsen/react-code-preview demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.