0.0.4 • Published 6 months ago

@mjcdev/react-body-highlighter v0.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

@mjcdev/react-body-highlighter

npm Downloads

Based on the work of HichamELBSI and their react-native-body-highlighter library, this project ports the SVG human body part highlighting functionality to standard React.

Installation

npm

$ npm install @mjcdev/react-body-highlighter

yarn

$ yarn add @mjcdev/react-body-highlighter

pnpm

$ pnpm add @mjcdev/react-body-highlighter

Usage

Basic example

import { useState } from "react";
import Body from "react-body-highlighter";

export default function App() {
	return (
		<Body
			data={[
				{ slug: "chest", intensity: 1, side: "left" },
				{ slug: "biceps", intensity: 2 },
			]}
			gender="female"
			side="front"
			scale={1.7}
			border="#dfdfdf"
		/>
	);
}
import React, { useState } from "react";
import Body, { ExtendedBodyPart } from "react-body-highlighter";

const Switch = (props: React.InputHTMLAttributes<HTMLInputElement>) => {
	return (
		<label className="switch">
			<input type="checkbox" {...props} />
			<span className="slider round"></span>
		</label>
	);
};

export default function App() {
	const [selectedBodyPart, setSelectedBodyPart] =
		useState <
		ExtendedBodyPart >
		{
			slug: "biceps",
			intensity: 2,
			side: "right",
		};
	const [side, setSide] = (useState < "back") | ("front" > "front");
	const [gender, setGender] = (useState < "male") | ("female" > "male");

	const sideSwitch = () =>
		setSide((previousState) => (previousState === "front" ? "back" : "front"));

	const toggleGenderSwitch = () => {
		setGender((previousState) =>
			previousState === "male" ? "female" : "male"
		);
	};

	return (
			<Body
				data={[
					{ slug: "chest", intensity: 1, side: "left" },
					{ slug: "biceps", intensity: 1 },
					selectedBodyPart,
				]}
				onBodyPartClick={(e, side) =>
					setSelectedBodyPart({ slug: e.slug, intensity: 2, side })
				}
				gender={gender}
				side={side}
				scale={1.7}
				border="#dfdfdf"
			/>
			<div>
				<div>
					<p>Side ({side})</p>
					<Switch onChange={(e) => {
							if (e.target.checked) {
								setSide("back");
							} else {
								setSide("front");
							}
						}}  />
				</div>
				<div>
					<p>Gender ({gender})</p>
					<Switch
						onChange={(e) => {
							if (e.target.checked) {
								setGender("female");
							} else {
								setGender("male");
							}
						}}
					/>
				</div>
			</div>
	);
}

Props

PropRequiredPurpose
dataYesBodyPartObject[] - Array of BodyPartObject to highlight
onBodyPartClickNoFunc - (bodyPart: BodyPartObject, side?: left \| right) => {} Callback called when a user tap a body part
colorsNostring[] - Defaults to ['#0984e3', '#74b9ff']
sideNofront \| back - Defaults to front
genderNostring - Can be "male" or "female", Defaults to male
scaleNonumber - Defaults to 1
borderNostring - Defaults to #dfdfdf (none to hide the border)

BodyPart object model

  • BodyPartObject: { slug: BodyPartName, intensity: IntensityNumber, side?: 'left' | 'right', leftSideIntensity?:IntensityNumber, rightSideIntensity?:IntensityNumber }

  • BodyPartName: Body part name to highlight (See the list of available body parts below)

  • IntensityNumber: Color intensity (if the colors property is set: from 1 to colors.length + 1. If not, intensity can be 1 or 2)

  • Side (optional): Can be left, right. Useful for selecting a single part or a pair (Do not set the side if you need to select the pair)

List of body parts

BodyPartsSide
trapeziusBoth
tricepsBoth
forearmBoth
adductorsBoth
calvesBoth
hairBoth
neckBoth
deltoids  Both
handsBoth
feetBoth
headBoth (Front only for female)
anklesBoth (Front only for female)
tibialisFront
obliquesFront
chestFront
bicepsFront
abs  Front
quadriceps  Front
knees  Front
upper-backBack
lower-backBack
hamstringBack
glutealBack
0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago

0.0.1

6 months ago