{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/N80sPwuhLYws0fL08zQ4/MInAtea0lKgJTdk36yie/SocialContentGenerator.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,AnimatePresence}from\"framer-motion\";import{TailwindInjector}from\"https://framerusercontent.com/modules/FMalyiyml0zfWmrcLHA5/AO1U8otujAPbR9ooRVmi/TailwindInjector.js\";import{addPropertyControls,ControlType}from\"framer\";const primaryColor=\"rgb(242, 88, 22)\";const loaderTexts=[\"Analyzing your input...\",\"Crafting the perfect content...\",\"Injecting personality...\",\"Optimizing for engagement...\",\"Adding a touch of creativity...\"];const styles=[\"Casual\",\"Cheeky\",\"Cheerful\",\"Confident\",\"Direct\",\"Dry\",\"Educational\",\"Firm\",\"Flowery\",\"Formal\",\"Frank\",\"Friendly\",\"Fun\",\"Grumpy\",\"Helpful\",\"Inspirational\",\"Irreverent\",\"Matter-of-fact\",\"Mysterious\",\"Playful\",\"Respectful\",\"Sophisticated\",\"Succinct\",\"Unhinged\",\"Witty\",\"ASMRtist\",\"Bestie\",\"Boomer\",\"Cyborg\",\"18th-century poet\",\"Emo teenager\",\"Fitness influencer\",\"Gen Xer\",\"Gen Zer\",\"Girlboss\",\"Gryffindor\",\"Hufflepuff\",\"LA influencer\",\"Linkedin bro\",\"Makeup influencer\",\"Millennial\",\"NY influencer\",\"Older sister\",\"Optimistic soccer coach\",\"Pirate\",\"Pop singer\",\"Professional wrestler\",\"Queen of England\",\"Ravenclaw\",\"Real housewife\",\"Robot\",\"Sad boi\",\"Shakespearean actor\",\"Slytherin\",\"Soft boy\",\"Stand-up comedian\",\"Stern teacher\",\"Tech girlie\",\"Thought leader\",\"Tour guide\",\"True crime podcast host\",\"Used car salesperson\",\"VSCO girl\",\"Y2K teenager\",\"YouTube creator\"];const languages=[\"English\",\"French\",\"Spanish\",\"German\",\"Italian\"];export function SocialContentGenerator({network=\"Instagram\"}){const[style,setStyle]=React.useState(\"Casual\");const[language,setLanguage]=React.useState(\"English\");const[description,setDescription]=React.useState(\"\");const[keywords,setKeywords]=React.useState(\"\");const[isGenerating,setIsGenerating]=React.useState(false);const[loaderTextIndex,setLoaderTextIndex]=React.useState(0);const[error,setError]=React.useState(\"\");const[variations,setVariations]=React.useState([]);const[copiedIndex,setCopiedIndex]=React.useState(null);React.useEffect(()=>{if(isGenerating){const interval=setInterval(()=>{setLoaderTextIndex(prevIndex=>(prevIndex+1)%loaderTexts.length);},3e3);return()=>clearInterval(interval);}},[isGenerating]);const generateVariation=async generatedContent=>{const response=await fetch(\"https://prod-api.fibr.shop/client/assistance/rewrite/open\",{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"*/*\"},body:JSON.stringify({input:{context:[{parameter:\"Network\",value:network,weightage:\"High\",additional_instructions:`Generate content for ${network}`},{parameter:\"Style\",value:style,weightage:\"High\",additional_instructions:`Use a ${style} style`},{parameter:\"Language\",value:language,weightage:\"High\",additional_instructions:`Generate the content in ${language}`},{parameter:\"Description\",value:description,weightage:\"Highest\",additional_instructions:\"Use this description to generate the content\"},{parameter:\"Keywords\",value:keywords,weightage:\"Medium\",additional_instructions:\"Incorporate these keywords if possible\"},{parameter:\"Already generated Content\",value:generatedContent.join(\", \"),weightage:\"High\",additional_instructions:\"Avoid returning these content again\"}],content:[{type:\"Social Media Content\",value:\"\"}]}})});if(!response.ok){throw new Error(`HTTP error! status: ${response.status}`);}const result=await response.json();return result.data.response.content[0].new;};const generateContent=async()=>{if(!style||!language||!description){setError(\"Please fill in all required fields\");return;}setIsGenerating(true);setVariations([]);setError(\"\");try{let newVariations=[];for(let i=0;i<4;i++){const generatedContent=await generateVariation(newVariations);newVariations.push(generatedContent);setVariations([...newVariations]);}}catch(error){console.error(\"Error generating content:\",error);setError(\"An error occurred while generating content: \"+error.message);}finally{setIsGenerating(false);}};const copyToClipboard=(text,index)=>{navigator.clipboard.writeText(text).then(()=>{setCopiedIndex(index);setTimeout(()=>setCopiedIndex(null),2e3);});};return /*#__PURE__*/_jsxs(\"div\",{className:\"flex justify-center items-start p-8 font-sans\",style:{fontFamily:\"Plus Jakarta Sans\"},children:[/*#__PURE__*/_jsx(TailwindInjector,{}),/*#__PURE__*/_jsxs(motion.div,{className:\"w-full max-w-2xl bg-white rounded-xl shadow-lg p-8\",initial:{opacity:0,y:20},animate:{opacity:1,y:0},transition:{duration:.5},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Style*\"}),/*#__PURE__*/_jsxs(\"select\",{className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary\",value:style,onChange:e=>setStyle(e.target.value),children:[/*#__PURE__*/_jsx(\"option\",{value:\"\",children:\"Select Style\"}),styles.map(s=>/*#__PURE__*/_jsx(\"option\",{value:s,children:s},s))]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Language*\"}),/*#__PURE__*/_jsxs(\"select\",{className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary\",value:language,onChange:e=>setLanguage(e.target.value),children:[/*#__PURE__*/_jsx(\"option\",{value:\"\",children:\"Select Language\"}),languages.map(lang=>/*#__PURE__*/_jsx(\"option\",{value:lang,children:lang},lang))]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-4\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Description*\"}),/*#__PURE__*/_jsx(motion.textarea,{whileFocus:{boxShadow:`0 0 0 2px ${primaryColor}`},className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none\",rows:3,value:description,onChange:e=>setDescription(e.target.value),placeholder:`Describe your ${network} post...`,maxLength:200}),/*#__PURE__*/_jsxs(\"p\",{className:\"text-sm text-gray-500 mt-1\",children:[description.length,\"/200\"]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"mb-6\",children:[/*#__PURE__*/_jsx(\"label\",{className:\"block text-sm font-medium text-gray-700 mb-2\",children:\"Keywords\"}),/*#__PURE__*/_jsx(motion.input,{type:\"text\",whileFocus:{boxShadow:`0 0 0 2px ${primaryColor}`},className:\"w-full p-3 border border-gray-300 rounded-lg focus:outline-none\",value:keywords,onChange:e=>setKeywords(e.target.value),placeholder:\"Enter keywords separated by commas\",maxLength:200}),/*#__PURE__*/_jsxs(\"p\",{className:\"text-sm text-gray-500 mt-1\",children:[keywords.length,\"/200\"]})]}),/*#__PURE__*/_jsx(motion.button,{whileHover:{scale:1.05},whileTap:{scale:.95},className:\"w-full py-3 px-6 text-white rounded-lg text-lg font-semibold\",style:{backgroundColor:primaryColor},onClick:generateContent,disabled:isGenerating,children:isGenerating?\"Generating...\":\"Generate Content\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:isGenerating&&/*#__PURE__*/_jsxs(motion.div,{initial:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},className:\"mt-6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"flex items-center justify-center\",children:/*#__PURE__*/_jsx(\"div\",{className:\"w-12 h-12 border-t-4 border-b-4 border-primary rounded-full animate-spin\",style:{borderColor:primaryColor}})}),/*#__PURE__*/_jsx(\"p\",{className:\"text-center mt-4 text-gray-600\",children:loaderTexts[loaderTextIndex]})]})}),/*#__PURE__*/_jsx(AnimatePresence,{children:variations.length>0&&!isGenerating&&/*#__PURE__*/_jsxs(motion.div,{initial:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},className:\"mt-6\",children:[/*#__PURE__*/_jsx(\"h2\",{className:\"text-xl font-semibold mb-2\",children:\"Generated Content Variations:\"}),variations.map((variation,index)=>/*#__PURE__*/_jsxs(\"div\",{className:\"p-4 bg-gray-100 rounded-lg mb-4 relative\",children:[/*#__PURE__*/_jsxs(\"h3\",{className:\"font-semibold mb-2\",children:[\"Variation \",index+1]}),/*#__PURE__*/_jsx(\"p\",{children:variation}),/*#__PURE__*/_jsx(motion.button,{whileHover:{scale:1.05},whileTap:{scale:.95},className:\"absolute top-2 right-2 p-2 bg-white rounded-full shadow-md\",onClick:()=>copyToClipboard(variation,index),children:copiedIndex===index?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",className:\"h-5 w-5 text-green-500\",viewBox:\"0 0 20 20\",fill:\"currentColor\",children:/*#__PURE__*/_jsx(\"path\",{fillRule:\"evenodd\",d:\"M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z\",clipRule:\"evenodd\"})}):/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",className:\"h-5 w-5 text-gray-500\",viewBox:\"0 0 20 20\",fill:\"currentColor\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M8 2a1 1 0 000 2h2a1 1 0 100-2H8z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 5a2 2 0 012-2 3 3 0 003 3h2a3 3 0 003-3 2 2 0 012 2v6h-4.586l1.293-1.293a1 1 0 00-1.414-1.414l-3 3a1 1 0 000 1.414l3 3a1 1 0 001.414-1.414L10.414 13H15v3a2 2 0 01-2 2H7a2 2 0 01-2-2V5z\"})]})})]},index))]})}),error&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},className:\"mt-4 p-3 bg-red-100 border border-red-400 text-red-700 rounded\",children:error})]})]});}addPropertyControls(SocialContentGenerator,{network:{type:ControlType.String,defaultValue:\"Instagram\",title:\"Network\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"SocialContentGenerator\":{\"type\":\"reactComponent\",\"name\":\"SocialContentGenerator\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialContentGenerator.map"],
  "mappings": "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",
  "names": ["primaryColor", "loaderTexts", "styles", "languages", "SocialContentGenerator", "network", "style", "setStyle", "ye", "language", "setLanguage", "description", "setDescription", "keywords", "setKeywords", "isGenerating", "setIsGenerating", "loaderTextIndex", "setLoaderTextIndex", "error", "setError", "variations", "setVariations", "copiedIndex", "setCopiedIndex", "ue", "interval", "prevIndex", "generateVariation", "generatedContent", "response", "generateContent", "newVariations", "i", "copyToClipboard", "text", "index", "navigator", "u", "p", "TailwindInjector", "motion", "s", "lang", "AnimatePresence", "variation", "addPropertyControls", "ControlType"]
}
