{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Shared-8iGD.js@eDj1MxSfupkYrrIeXQ6b", "ssg:https://framerusercontent.com/modules/ueNfE1txmeSV9ATCy24r/rsi8xhRHrYbAqn2SsZAD/Countdown.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{motion}from\"framer-motion\";export const borderPropertyControl=(hidden=null)=>({type:ControlType.Object,optional:true,hidden,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export function Border({width,widthIsMixed,widthTop,widthRight,widthBottom,widthLeft,style,color,transition}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color},style:{position:\"absolute\",inset:0,borderWidth:widthIsMixed?`${widthTop}px ${widthRight}px ${widthBottom}px ${widthLeft}px`:`${width}px`,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}export function EmptyState({title,subtitle,maxWidth=0}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",gap:16,backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:16,padding:20,minHeight:200,maxWidth:maxWidth||undefined},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,// maxWidth: 500,\nlineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}EmptyState.displayName=\"Empty State\";\nexport const __FramerMetadata__ = {\"exports\":{\"borderPropertyControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"EmptyState\":{\"type\":\"reactComponent\",\"name\":\"EmptyState\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Shared.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect}from\"react\";import{EmptyState}from\"https://framer.com/m/Shared-8iGD.js@eDj1MxSfupkYrrIeXQ6b\";const unitNames=[\"years\",\"months\",\"days\",\"hours\",\"minutes\",\"seconds\"];const unitSizes=[365,12,30,24,60,60];const finishedIndex=6;function getDateWithTime(date,hour,minute,second,ampm){// Create a new Date object with the same date as the input date\nvar newDate=new Date(date);// Set the time values\nnewDate.setHours(hour+(ampm===\"PM\"?12:0));newDate.setMinutes(minute);newDate.setSeconds(second);return newDate;}export default function Countdown(props){var _props_finished;const{time,labels,units}=props;const targetDate=getDateWithTime(props.date,time.hour,time.minute,time.second,time.time);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[timeLeft,setTimeLeft]=useState(calculateTimeLeft());useEffect(()=>{const timer=setTimeout(()=>{setTimeLeft(calculateTimeLeft());},1e3);return()=>clearTimeout(timer);});// Empty state\nif(isCanvas&&!props.date){return /*#__PURE__*/_jsx(EmptyState,{title:\"Set a date value.\",subtitle:\"Use the properties panel on the right to connect a date value.\",maxWidth:500});}function calculateTimeLeft(){let currentDate=new Date;currentDate.setDate(currentDate.getDate()-1);// @ts-ignore\nconst difference=targetDate-currentDate;let timeLeftValue=[0,0,0,0,0,0,false];if(difference>0){timeLeftValue=[Math.floor(difference/(1e3*60*60*24*365)),Math.floor(difference/(1e3*60*60*24*30)%12),Math.floor(difference/(1e3*60*60*24)%30),Math.floor(difference/(1e3*60*60)%24),Math.floor(difference/1e3/60%60),Math.floor(difference/1e3%60),false];for(let i=0;i<unitNames.length;i++){if(!units[unitNames[i]]&&i<unitNames.length-1){// @ts-ignore\ntimeLeftValue[i+1]+=timeLeftValue[i]*unitSizes[i+1];timeLeftValue[i]=null;}}if(!units.seconds){timeLeftValue[5]=null;}if(!units.zeroUnits){for(let i=0;i<unitNames.length;i++){if(timeLeftValue[i]<=0){timeLeftValue[i]=null;}else{break;}}}}timeLeftValue[finishedIndex]=difference>0;return timeLeftValue;}const labelLocation=labels===null||labels===void 0?void 0:labels.location;const segmentStyle=labels?{display:\"flex\",gap:labels.gap,flexDirection:labelLocation==\"inline\"?\"row\":\"column\",alignItems:\"center\"}:{};const labelStyle=labels?{color:labels.fontColor,margin:0,...labels.font}:{};const labelFirst=labelLocation==\"above\";let segments=[];let i=0;for(let i=0;i<unitNames.length;i++){if(timeLeft[i]!=null){const unit=unitNames[i];const separator=i<unitNames.length-1&&(labelLocation==\"inline\"||!labels)?props.separator:\"\";let label=null;if(labels){let labelText=unit;if(labels.style==\"short\"){// One letter label\nlabelText=unit[0];}else if(labels.style==\"full\"&&timeLeft[i]==1){// Remove \"s\" from end of label when singular\nlabelText=unit.slice(0,-1);}label=/*#__PURE__*/_jsxs(\"p\",{style:labelStyle,children:[labelText,!labelFirst?separator:\"\"]});}const unitText=`${timeLeft[i]}${!labels?separator:\"\"}`;segments.push(/*#__PURE__*/_jsxs(\"div\",{style:segmentStyle,children:[!labelFirst?unitText:\"\",label,labelFirst?unitText:\"\"]}));}}// Empty state\nif(isCanvas&&props.finishedStyle==\"layer\"&&!((_props_finished=props.finished)===null||_props_finished===void 0?void 0:_props_finished[0])){return /*#__PURE__*/_jsx(EmptyState,{title:\"Connect a finished layer.\",subtitle:'Use the handle on the right side of the component to connect a layer to display when the countdown finishes, or change the finished type to \"Text\"',maxWidth:500});}return /*#__PURE__*/_jsx(_Fragment,{children:!timeLeft[finishedIndex]?props.finishedStyle==\"text\"?/*#__PURE__*/_jsx(\"p\",{style:{margin:0,color:props.fontColor,...props.font},children:props.finishedText}):props.finished:/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",flexWrap:\"wrap\",justifyContent:props.font?props.font.textAlign:\"start\",gap:props.gap,color:props.fontColor,textTransform:labels?labels.case:\"capitalize\",whiteSpace:\"pre-wrap\",userSelect:props.textSelect?\"auto\":\"none\",...props.font},children:segments})});}const labelDefaults={location:\"inline\",style:\"full\",case:\"capitalized\",gap:4,fontColor:\"#000\"};addPropertyControls(Countdown,{date:{type:ControlType.Date},time:{type:ControlType.Object,controls:{hour:{type:ControlType.Number,defaultValue:12,min:1,max:12,step:1},minute:{type:ControlType.Number,defaultValue:0,min:0,max:59,step:1},second:{type:ControlType.Number,defaultValue:0,min:0,max:59,step:1},time:{type:ControlType.Enum,defaultValue:\"PM\",options:[\"AM\",\"PM\"],displaySegmentedControl:true}}},units:{type:ControlType.Object,buttonTitle:\"Options\",controls:{years:{type:ControlType.Boolean,defaultValue:true},months:{type:ControlType.Boolean,defaultValue:true},days:{type:ControlType.Boolean,defaultValue:true},hours:{type:ControlType.Boolean,defaultValue:true},minutes:{type:ControlType.Boolean,defaultValue:true},seconds:{type:ControlType.Boolean,defaultValue:true},zeroUnits:{type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Show\",disabledTitle:\"Hide\",description:\"Hides units left of the greatest non-zero unit. Ex. If there are 2 hours left, then years, months, and days will be hidden.\"}}},labels:{type:ControlType.Object,defaultValue:labelDefaults,optional:true,buttonTitle:\"Options\",controls:{location:{type:ControlType.Enum,defaultValue:labelDefaults.location,options:[\"inline\",\"above\",\"below\"],optionTitles:[\"Inline\",\"Above\",\"Below\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},style:{type:ControlType.Enum,defaultValue:labelDefaults.style,options:[\"full\",\"short\"],optionTitles:[\"Full\",\"Short\"],displaySegmentedControl:true},case:{type:ControlType.Enum,defaultValue:labelDefaults.case,options:[\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"Capitalized\",\"UPPERCASE\",\"lowercase\"]},gap:{type:ControlType.Number,defaultValue:labelDefaults.gap,min:0,step:1},fontColor:{type:ControlType.Color,optional:true,defaultValue:labelDefaults.fontColor},font:{type:\"font\",controls:\"extended\"}}},separator:{type:ControlType.String,defaultValue:\", \",hidden(props){return props.labels?props.labels.location!==\"inline\":false;}},gap:{type:ControlType.Number,defaultValue:0,min:0,step:1},fontColor:{type:ControlType.Color,defaultValue:\"#000\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},textSelect:{type:ControlType.Boolean,defaultValue:true},finishedStyle:{type:ControlType.Enum,defaultValue:\"text\",options:[\"text\",\"layer\"],optionTitles:[\"Text\",\"Layer\"],displaySegmentedControl:true,title:\"Finished\"},finishedText:{type:ControlType.String,defaultValue:\"Countdown finished!\",title:\"Text\",hidden:props=>props.finishedStyle!==\"text\"},finished:{type:ControlType.ComponentInstance,description:\"Displays when time = 0\",title:\"Layer\",hidden:props=>props.finishedStyle!==\"layer\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Countdown\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown.map"],
  "mappings": "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",
  "names": ["EmptyState", "title", "subtitle", "maxWidth", "u", "p", "unitNames", "unitSizes", "finishedIndex", "getDateWithTime", "date", "hour", "minute", "second", "ampm", "newDate", "Countdown", "props", "_props_finished", "time", "labels", "units", "targetDate", "isCanvas", "RenderTarget", "timeLeft", "setTimeLeft", "ye", "calculateTimeLeft", "ue", "timer", "p", "EmptyState", "currentDate", "difference", "timeLeftValue", "i", "labelLocation", "segmentStyle", "labelStyle", "labelFirst", "segments", "unit", "separator", "label", "labelText", "u", "unitText", "l", "labelDefaults", "addPropertyControls", "ControlType"]
}
