Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
remix-image
Advanced tools
A React component for responsive images in Remix
To install this library, use on of the following commands:
npm install -S remix-image
yarn add remix-image
The following peer deps are also required:
"peerDependencies": {
"hybrid-disk-cache": "^0.2.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"remix": "^1.0.0",
"sharp": "^0.29.0"
}
Create a new resource route that imports the imageLoader
function and exports as loader
.
By default, the resource route "/api/image"
is used, but any route can be used.
import { imageLoader } from "remix-image";
export const loader = imageLoader({
selfUrl: "http://localhost:3000",
whitelistedDomains: ["i.imgur.com"],
});
Name | Type | Required | Default | Description |
---|---|---|---|---|
selfUrl | string | X | The URL of the local server. | |
whitelistedDomains | string[] | [] | Valid domains responsive images can be served from. selfUrl is automatically added at runtime and is not required. | |
cache | { path: string, ttl: number, tbd: number } | null | { path: "tmp/img", ttl: 24 * 60 * 60, tbd: 365 * 24 * 60 * 60 } | The configuration for the local image cache. Setting this to null will disable the cache. |
Import the Image
component and specify the url to the resource route used by the imageLoader
function.
The loaderUrl
prop is optional if the resource route has been created at the path "/api/image"
.
import { Image } from "remix-image";
<Image
loaderUrl="/api/image"
src="..."
width="..."
height="..."
alt="..."
responsive={[
{
size: {
width: 100,
height: 100,
},
maxWidth: 200,
},
]}
/>
Name | Type | Required | Default | Description |
---|---|---|---|---|
loaderUrl | string | "/api/image" | The path of the image loader resource route. | |
responsive | { size: { width: number; height: number; }; maxWidth?: number; }[] | [ ] | An array of responsive sizes. |
Optionally, this library also exports the hook used to generate responsive props for images.
In most use cases you can simply use the Image
component, but you might need the hook for custom components.
import { useResponsiveImage } from "remix-image";
const Image: React.FC<ImageProps> = ({
className,
loaderUrl = "/api/image",
responsive = [],
...imgProps
}) => {
const responsiveProps = useResponsiveImage(imgProps, loaderUrl, responsive);
return (
<img
className={clsx(classes.root, className)}
{...imgProps}
{...responsiveProps}
/>
);
};
Name | Type | Required | Default | Description |
---|---|---|---|---|
imgProps | ComponentPropsWithoutRef<"img"> | X | The props to be passed to the base img element. | |
loaderUrl | string | X | [] | The path of the image loader resource route. |
responsive | { size: { width: number; height: number; }; maxWidth?: number; }[] | [] | An array of responsive sizes. |
At the moment this library is experimental and has not been used in a production environment. Further development is ongoing, but I welcome all pull-requests and issues created on GitHub.
This repo expands on the following gists by:
FAQs
A React component for responsive images in Remix
The npm package remix-image receives a total of 276 weekly downloads. As such, remix-image popularity was classified as not popular.
We found that remix-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.