{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kU97JUOS2Kn1mBwTQHI8/5dqf5mPC5nazzZyaRDZi/Compare_Card_Framer.js"],
  "sourcesContent": ["\"use client\";import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef,useCallback}from\"react\";import{AnimatePresence,LazyMotion,domAnimation,m}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";// -------------------------------------------------- //\n// FRAMER PROPERTY CONTROLS\n// -------------------------------------------------- //\naddPropertyControls(CompareCardFramer,{firstImage:{type:ControlType.ResponsiveImage,title:\"First Image\"},secondImage:{type:ControlType.ResponsiveImage,title:\"Second Image\"},initialSliderPercentage:{type:ControlType.Number,title:\"Initial Slider Percentage\",defaultValue:50},slideMode:{type:ControlType.Enum,options:[\"hover\",\"drag\"],optionTitles:[\"Hover\",\"Drag\"],title:\"Slide Mode\",defaultValue:\"drag\"},showHandlebar:{type:ControlType.Boolean,title:\"Show Handlebar\",defaultValue:true},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:false},autoplayDuration:{type:ControlType.Number,title:\"Autoplay Duration\",defaultValue:5e3,min:1e3,max:1e4,hidden:props=>!props.autoplay},handlebarColor:{type:ControlType.Color,title:\"Handlebar Color\",defaultValue:\"#ffffff\",hidden:props=>!props.showHandlebar},handlebarDotsColor:{type:ControlType.Color,title:\"Handlebar Dots Color\",defaultValue:\"#000000\",hidden:props=>!props.showHandlebar},handlebarIcon:{type:ControlType.ComponentInstance,title:\"Handlebar Icon\",description:\"Replace with your own icon\",hidden:props=>!props.showHandlebar},handleLineColor:{type:ControlType.Color,title:\"Handle Line Color\",defaultValue:\"#f05a19\"},handleCircleGlowGradientColor1:{type:ControlType.Color,title:\"Handle Circle Glow Gradient Color 1\",defaultValue:\"#f05a19\"},handleCircleGlowGradientColor2:{type:ControlType.Color,title:\"Handle Circle Glow Gradient Color 2\",defaultValue:\"#ed9c05\"},cardBorderRadius:{type:ControlType.Number,title:\"Card Border Radius\",defaultValue:16,unit:\"px\",min:0,max:1e3}});/**\n * @Copyright \u00A9 David McBacon | Bachoff Studio\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 500\n * @framerDisableUnlink\n */export default function CompareCardFramer(props){var _props_handlebarIcon,_props_firstImage,_props_firstImage1,_props_secondImage,_props_secondImage1;const[sliderXPercent,setSliderXPercent]=useState(props.initialSliderPercentage||50);const[isDragging,setIsDragging]=useState(false);const sliderRef=useRef(null);const[isMouseOver,setIsMouseOver]=useState(false);const autoplayRef=useRef(null);const startAutoplay=useCallback(()=>{if(!props.autoplay)return;const startTime=Date.now();const animate=()=>{const elapsedTime=Date.now()-startTime;const progress=elapsedTime%(props.autoplayDuration*2)/props.autoplayDuration;const percentage=progress<=1?progress*100:(2-progress)*100;setSliderXPercent(percentage);autoplayRef.current=setTimeout(animate,16)// ~60fps\n;};animate();},[props.autoplay,props.autoplayDuration]);const stopAutoplay=useCallback(()=>{if(autoplayRef.current){clearTimeout(autoplayRef.current);autoplayRef.current=null;}},[]);useEffect(()=>{startAutoplay();return()=>stopAutoplay();},[startAutoplay,stopAutoplay]);function mouseEnterHandler(){setIsMouseOver(true);stopAutoplay();}function mouseLeaveHandler(){setIsMouseOver(false);if(props.slideMode===\"hover\"){setSliderXPercent(props.initialSliderPercentage);}if(props.slideMode===\"drag\"){setIsDragging(false);}startAutoplay();}const handleStart=useCallback(clientX=>{if(props.slideMode===\"drag\"){setIsDragging(true);}},[props.slideMode]);const handleEnd=useCallback(()=>{if(props.slideMode===\"drag\"){setIsDragging(false);}},[props.slideMode]);const handleMove=useCallback(clientX=>{if(!sliderRef.current)return;if(props.slideMode===\"hover\"||props.slideMode===\"drag\"&&isDragging){const rect=sliderRef.current.getBoundingClientRect();const x=clientX-rect.left;const percent=x/rect.width*100;requestAnimationFrame(()=>{setSliderXPercent(Math.max(0,Math.min(100,percent)));});}},[props.slideMode,isDragging]);const handleMouseDown=useCallback(e=>handleStart(e.clientX),[handleStart]);const handleMouseUp=useCallback(()=>handleEnd(),[handleEnd]);const handleMouseMove=useCallback(e=>handleMove(e.clientX),[handleMove]);const handleTouchStart=useCallback(e=>{if(!props.autoplay){handleStart(e.touches[0].clientX);}},[handleStart,props.autoplay]);const handleTouchEnd=useCallback(()=>{if(!props.autoplay){handleEnd();}},[handleEnd,props.autoplay]);const handleTouchMove=useCallback(e=>{if(!props.autoplay){handleMove(e.touches[0].clientX);}},[handleMove,props.autoplay]);const sliderContainerStyle={width:\"100%\",height:\"100%\",overflow:\"hidden\",position:\"relative\",cursor:props.slideMode===\"drag\"?\"grab\":\"col-resize\"};const sliderLineStyle={height:\"100%\",width:\"1px\",position:\"absolute\",top:\"0\",margin:\"auto\",zIndex:30,backgroundImage:`linear-gradient(to bottom, transparent 5%, ${props.handleLineColor} 50%, transparent 95%)`,left:`${sliderXPercent}%`};const gradientLeftStyle={width:\"144px\",height:\"100%\",maskImage:\"radial-gradient(100px at left, white, transparent)\",position:\"absolute\",top:\"50%\",transform:\"translateY(-50%)\",left:\"0\",backgroundImage:`linear-gradient(to right, ${props.handleCircleGlowGradientColor1}, transparent)`,zIndex:20,opacity:.5};const gradientRightStyle={width:\"40px\",height:\"50%\",maskImage:\"radial-gradient(50px at left, white, transparent)\",position:\"absolute\",top:\"50%\",transform:\"translateY(-50%)\",left:\"0\",backgroundImage:`linear-gradient(to right, ${props.handleCircleGlowGradientColor2}, transparent)`,zIndex:10,opacity:1};const gradientFarRightStyle={width:\"40px\",height:\"75%\",top:\"50%\",transform:\"translateY(-50%)\",position:\"absolute\",right:\"-40px\",maskImage:\"radial-gradient(100px at left, white, transparent)\"};const handlebarStyle={height:\"20px\",width:\"20px\",borderRadius:\"6px\",top:\"50%\",transform:\"translateY(-50%)\",backgroundColor:props.handlebarColor,zIndex:30,right:\"-9px\",position:\"absolute\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",boxShadow:\"0px -1px 0px 0px rgba(255, 255, 255, 0.25)\"};const imageContainerStyle={overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\",zIndex:20,pointerEvents:\"none\"};const firstImageContainerStyle={position:\"absolute\",inset:0,zIndex:20,borderRadius:props.cardBorderRadius,flexShrink:0,width:\"100%\",height:\"100%\",userSelect:\"none\",overflow:\"hidden\",objectFit:\"cover\",objectPosition:\"left top\",clipPath:`inset(0 ${100-sliderXPercent}% 0 0)`};const imageStyle={position:\"absolute\",inset:0,zIndex:20,borderRadius:props.cardBorderRadius,flexShrink:0,width:\"100%\",height:\"100%\",userSelect:\"none\",objectFit:\"cover\",objectPosition:\"left top\"};const secondImageStyle={position:\"absolute\",top:0,left:0,zIndex:19,borderRadius:props.cardBorderRadius,width:\"100%\",height:\"100%\",userSelect:\"none\",objectFit:\"cover\",objectPosition:\"left top\"};return /*#__PURE__*/_jsx(LazyMotion,{strict:true,features:domAnimation,children:/*#__PURE__*/_jsxs(\"div\",{ref:sliderRef,style:sliderContainerStyle,onMouseMove:handleMouseMove,onMouseLeave:mouseLeaveHandler,onMouseEnter:mouseEnterHandler,onMouseDown:handleMouseDown,onMouseUp:handleMouseUp,onTouchStart:handleTouchStart,onTouchEnd:handleTouchEnd,onTouchMove:handleTouchMove,children:[/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:/*#__PURE__*/_jsxs(m.div,{style:sliderLineStyle,transition:{duration:0},children:[/*#__PURE__*/_jsx(\"div\",{style:gradientLeftStyle}),/*#__PURE__*/_jsx(\"div\",{style:gradientRightStyle}),/*#__PURE__*/_jsx(\"div\",{style:gradientFarRightStyle}),props.showHandlebar&&/*#__PURE__*/_jsx(\"div\",{style:handlebarStyle,children:((_props_handlebarIcon=props.handlebarIcon)===null||_props_handlebarIcon===void 0?void 0:_props_handlebarIcon.length)===0||!props.handlebarIcon?/*#__PURE__*/_jsx(ThreeDotsSvg,{handlebarDotsColor:props.handlebarDotsColor||\"#000000\"}):props.handlebarIcon})]})}),/*#__PURE__*/_jsx(\"div\",{style:imageContainerStyle,children:/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:/*#__PURE__*/_jsx(m.div,{style:firstImageContainerStyle,transition:{duration:0},children:/*#__PURE__*/_jsx(\"img\",{alt:(_props_firstImage=props.firstImage)===null||_props_firstImage===void 0?void 0:_props_firstImage.alt,src:((_props_firstImage1=props.firstImage)===null||_props_firstImage1===void 0?void 0:_props_firstImage1.src)||\"https://images.unsplash.com/photo-1572120360610-d971b9d7767c?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D\",style:imageStyle,draggable:false})})})}),/*#__PURE__*/_jsx(AnimatePresence,{initial:false,children:/*#__PURE__*/_jsx(m.img,{style:secondImageStyle,alt:(_props_secondImage=props.secondImage)===null||_props_secondImage===void 0?void 0:_props_secondImage.alt,src:((_props_secondImage1=props.secondImage)===null||_props_secondImage1===void 0?void 0:_props_secondImage1.src)||\"https://images.unsplash.com/photo-1580587771525-78b9dba3b914?q=80&w=2574&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D\",draggable:false})})]})});}CompareCardFramer.displayName=\"COMPARE CARD - BACHOFF STUDIO\";function ThreeDotsSvg({handlebarDotsColor}){return /*#__PURE__*/_jsx(\"svg\",{width:\"5\",height:\"17\",viewBox:\"0 0 5 17\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsxs(\"g\",{children:[/*#__PURE__*/_jsx(\"circle\",{cx:\"2.5\",cy:\"2.5\",r:\"2\",fill:handlebarDotsColor}),/*#__PURE__*/_jsx(\"circle\",{cx:\"2.5\",cy:\"8.5\",r:\"2\",fill:handlebarDotsColor}),/*#__PURE__*/_jsx(\"circle\",{cx:\"2.5\",cy:\"14.5\",r:\"2\",fill:handlebarDotsColor})]})});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CompareCardFramer\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"500\",\"framerIntrinsicWidth\":\"500\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Compare_Card_Framer.map"],
  "mappings": "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",
  "names": ["addPropertyControls", "CompareCardFramer", "ControlType", "props", "_props_handlebarIcon", "_props_firstImage", "_props_firstImage1", "_props_secondImage", "_props_secondImage1", "sliderXPercent", "setSliderXPercent", "ye", "isDragging", "setIsDragging", "sliderRef", "pe", "isMouseOver", "setIsMouseOver", "autoplayRef", "startAutoplay", "te", "startTime", "animate", "progress", "percentage", "stopAutoplay", "ue", "mouseEnterHandler", "mouseLeaveHandler", "handleStart", "clientX", "handleEnd", "handleMove", "rect", "percent", "handleMouseDown", "e", "handleMouseUp", "handleMouseMove", "handleTouchStart", "handleTouchEnd", "handleTouchMove", "sliderContainerStyle", "sliderLineStyle", "gradientLeftStyle", "gradientRightStyle", "gradientFarRightStyle", "handlebarStyle", "imageContainerStyle", "firstImageContainerStyle", "imageStyle", "secondImageStyle", "p", "LazyMotion", "domAnimation", "u", "AnimatePresence", "m", "ThreeDotsSvg", "handlebarDotsColor"]
}
