![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@primaryindexonline/react-resize
Advanced tools
Change the width and height of the "moving" element('s) by holding and dragging the "hanger" element
Change the width and height of the "moving" element('s) by holding and dragging the "hanger" element.
Library allows to:
resize
should be created with the unique id
;resize
so other parts of your app can subsribe to changes and reflect correspondingly. You would need to specify the id
of the resize
object you want to add listener to.When using with React
, working with references, you don't need to have state
to update your elements with the new width
or height
. This allows to have tons of consumers without worrying about performance issues.
https://github.com/primaryindexonline/resize/assets/8969094/797df5e2-9e72-4a96-9b92-400c146ca3ed
npm i @primaryindexonline/react-resize
import {
Resize,
ResizeProvider,
useResize,
} from "@primaryindexonline/react-resize";
Resize
— class where all the logic lives;ResizeProvider
— wrapper for React
if you want to apply multiple subsribers;useResize
— hook to access Resize
instance once your app is wrapped with ResizeProvider
.import { Resize } from "@primaryindexonline/react-resize";
const resizeInstance = new Resize();
const movingElement = document.getElementById("movingElement");
const handlerElement = document.getElementById("hangerElement");
const resizeDummy = resizeInstance.create("dummy", {
handlerElement,
movingElement,
});
resizeDummy.addListener((newWidth) => {
movingElement.style.width = `${newWidth}px`;
});
const resizeInstance = new Resize();
...
const resizeDummy = resizeInstance.create("dummy", {
handlerElement,
movingElement
});
// Anywhere else
resizeInstance.addListener("dummy", (newWidth) => {
// apply "newWidth"
})
You don't want to have state and rerenders when updating styles, otherwise you would risk to face perfornce issues rerendering DOM on every change. you don't need to have state!
./app.tsx
import { useMemo } from "react";
import { Resize, ResizeProvider } from "@primaryindexonline/react-resize";
import MainConsumer from "./components/mainConsumer";
import OtherConsumer from "./components/otherConsumer";
export default function Entry() {
const resize = useMemo(() => new Resize(), []);
return (
<ResizeProvider value={resize}>
<MainConsumer />
<OtherConsumer />
</ResizeProvider>
);
}
./components/mainConsumer.tsx
import { useEffect, useState, useCallback } from "react";
import { useResize } from "@primaryindexonline/react-resize";
export default function MainConsumer() {
const resize = useResize();
const [handlerElement, setHandlerElement] = useState<HTMLDivElement>();
const [movingElement, setMovingElement] = useState<HTMLDivElement>();
useEffect(() => {
if (handlerElement && movingElement) {
const resizeDummy = resize.create("dummy", {
handlerElement,
movingElement
});
resizeDummy.addListener((newWidth) => {
movingElement.style.width = `${newWidth}px`;
});
return () => {
resizeDummy.removeListeners();
};
}
}, [handlerElement, movingElement]);
const setHandlerElementCallback = useCallback((node: HTMLDivElement) => {
setHandlerElement(node);
}, []);
const setMovingElementCallback = useCallback((node: HTMLDivElement) => {
setMovingElement(node);
}, []);
return (
<div
ref={setMovingElementCallback}
style={{
width: 200,
height: 200,
background: "#eee",
position: "relative",
}}
>
<div
ref={setHandlerElementCallback}
style={{
position: "absolute",
right: 0,
top: 0,
cursor: "col-resize",
}}
>
resize
</div>
</div>
);
}
./components/otherConsumer.tsx
import { useEffect, useState, useCallback } from "react";
import { useResize } from "@primaryindexonline/react-resize";
export default function OtherConsumer() {
const resize = useResize();
const [movingElement, setMovingElement] = useState<HTMLDivElement>();
const setMovingElementCallback = useCallback((node: HTMLDivElement) => {
setMovingElement(node);
}, []);
useEffect(() => {
if (movingElement) {
resize.addListener("dummy", (newWidth) => {
movingElement.style.width = `${newWidth}px`;
});
}
}, [movingElement]);
return (
<div
ref={setMovingElementCallback}
style={{ background: "red", width: 200 }}
>
Other Consumer
</div>
);
}
Either check src/entry.tsx
and src/components
folder or:
npm i
;npm run dev
to start local server with example.FAQs
Change the width and height of the "moving" element('s) by holding and dragging the "hanger" element
We found that @primaryindexonline/react-resize 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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.