{"version":3,"sources":["webpack:///./app/javascript/packs/sortable.js"],"names":["window","Sortable","sortableInitialized","document","getElementById","styleEl","createElement","id","textContent","head","appendChild","addSortableHelpButton","querySelector","helpButton","className","innerHTML","style","position","bottom","right","zIndex","addEventListener","helpModal","setAttribute","body","bootstrap","Modal","show","alert","showSortableHelp","console","log","initializeSortable","containers","querySelectorAll","length","forEach","container","animation","ghostClass","chosenClass","dragClass","onEnd","evt","tourId","dataset","type","language","movedItem","item","oldIndex","newIndex","imageId","newPosition","oldPosition","fetch","concat","method","headers","content","JSON","stringify","image_type","image_id","forced","then","response","json","data","success","location","reload","error"],"mappings":"2FAAA,oBAGAA,OAAOC,SAAWA,IAGlB,IAAIC,GAAsB,EAG1B,IAAKC,SAASC,eAAe,6BAA8B,CACvD,IAAMC,EAAUF,SAASG,cAAc,SACvCD,EAAQE,GAAK,4BACbF,EAAQG,YAAW,oiBAwBnBL,SAASM,KAAKC,YAAYL,EAC9B,CAuEA,SAASM,IAEP,IAAIR,SAASC,eAAe,yBAKLD,SAASS,cAAc,oBAC9C,CAKA,IAAMC,EAAaV,SAASG,cAAc,UAC1CO,EAAWN,GAAK,uBAChBM,EAAWC,UAAY,oBACvBD,EAAWE,UAAY,gEACvBF,EAAWG,MAAMC,SAAW,QAC5BJ,EAAWG,MAAME,OAAS,OAC1BL,EAAWG,MAAMG,MAAQ,OACzBN,EAAWG,MAAMI,OAAS,OAG1BP,EAAWQ,iBAAiB,SAAS,YAUvC,WAEE,IAAMC,EAAYnB,SAASG,cAAc,OA2CzC,GA1CAgB,EAAUR,UAAY,aACtBQ,EAAUf,GAAK,oBACfe,EAAUC,aAAa,WAAY,MACnCD,EAAUC,aAAa,kBAAmB,0BAC1CD,EAAUC,aAAa,cAAe,QAGtCD,EAAUP,UAAS,4kDAgCnBZ,SAASqB,KAAKd,YAAYY,GAGD,qBAAdG,WAA6BA,UAAUC,MAAO,CACvC,IAAID,UAAUC,MAAMJ,GAC5BK,MACV,MACEC,MAAM,qJAEV,CA5DIC,EACF,IAGA1B,SAASqB,KAAKd,YAAYG,GAC1BiB,QAAQC,IAAI,iDAnBZ,CAoBF,CAyDA,SAASC,IACL,IAAI9B,EAAJ,CAKA,IAAM+B,EAAa9B,SAAS+B,iBAAiB,oBAExCD,EAAWE,SAKhBF,EAAWG,SAAQ,SAAAC,GAEf,IAAIpC,IAASoC,EAAW,CACpBC,UAAW,IACXC,WAAY,iBACZC,YAAa,kBACbC,UAAW,gBACXC,MAAO,SAASC,GACZ,IAAMC,EAASP,EAAUQ,QAAQD,OAC3BE,EAAOT,EAAUQ,QAAQC,KACzBC,EAAWV,EAAUQ,QAAQE,SAEnC,GAAKH,GAAWE,EAAhB,CAMA,IAAME,EAAYL,EAAIM,KAChBC,EAAWP,EAAIO,SACfC,EAAWR,EAAIQ,SAErBrB,QAAQC,IAAI,4BAA0B,CAAEmB,WAAUC,aAGlD,IAAMC,EAAUJ,EAAUH,QAAQtC,GAC5B8C,EAAcF,EAEpBrB,QAAQC,IAAI,6BAA8B,CACtCqB,UACAC,cACAC,YAAaN,EAAUH,QAAQ5B,WAInCsC,MAAM,UAADC,OAAWZ,EAAM,kBAAkB,CACpCa,OAAQ,OACRC,QAAS,CACL,eAAgB,mBAChB,eAAgBvD,SAASS,cAAc,2BAA2B+C,SAEtEnC,KAAMoC,KAAKC,UAAU,CACjBC,WAAYhB,EACZiB,SAAUX,EACVnC,SAAUoC,EACVN,SAAUA,EACViB,QAAQ,MAGfC,MAAK,SAAAC,GAEF,OADApC,QAAQC,IAAI,0BAA2BmC,GAChCA,EAASC,MACpB,IACCF,MAAK,SAAAG,GACFtC,QAAQC,IAAI,mBAAoBqC,GAC5BA,EAAKC,SAELrE,OAAOsE,SAASC,QAExB,IAAE,OACK,SAAAC,GACH1C,QAAQ0C,MAAM,kCAAgCA,EAClD,GA/CA,MAFI1C,QAAQ0C,MAAM,2BAA4B,CAAE5B,SAAQE,QAkD5D,GAER,IAGAnC,IAEAT,GAAsB,EAhFtB,CAiFJ,CAGAC,SAASkB,iBAAiB,oBAAoB,WAC1CW,GACJ,IAGA7B,SAASkB,iBAAiB,mBAAmB,WACzCnB,GAAsB,EACtB8B,GACJ,IAGAhC,OAAOgC,mBAAqBA,C","file":"js/15-a258da9b8127c31497c1.chunk.js","sourcesContent":["import Sortable from 'sortablejs';\n\n// Exportar Sortable para que esté disponible globalmente\nwindow.Sortable = Sortable;\n\n// Variable para rastrear si el Sortable ya está inicializado a nivel global\nlet sortableInitialized = false;\n\n// Agregar estilos necesarios para el drag & drop\nif (!document.getElementById('sortable-draggable-styles')) {\n const styleEl = document.createElement('style');\n styleEl.id = 'sortable-draggable-styles';\n styleEl.textContent = `\n .sortable-images > * {\n cursor: move;\n transition: transform 0.2s;\n }\n \n .sortable-images > *:hover {\n transform: scale(1.02);\n }\n \n .sortable-images > *:active {\n cursor: grabbing;\n }\n \n .sortable-ghost {\n opacity: 0.5;\n background: #f0f0f0;\n }\n \n .sortable-chosen {\n background: #fff;\n box-shadow: 0 2px 8px rgba(0,0,0,0.1);\n }\n `;\n document.head.appendChild(styleEl);\n}\n\n// Función para mostrar notificaciones\nfunction showToast(message, type = 'success') {\n console.log('Mostrando toast:', message, type); // Debug\n \n try {\n // Intentar usar Bootstrap si está disponible\n if (typeof bootstrap !== 'undefined') {\n // Buscar elementos toast existentes\n const toastId = type === 'success' ? 'toast-success' : 'toast-error';\n const messageId = type === 'success' ? 'toast-message' : 'toast-error-message';\n \n let toast = document.getElementById(toastId);\n let messageElement = document.getElementById(messageId);\n \n if (toast && messageElement) {\n // Actualizar el mensaje en el toast existente\n messageElement.textContent = message;\n const bsToast = new bootstrap.Toast(toast);\n bsToast.show();\n } else {\n // Buscar el contenedor de toasts\n const toastContainer = document.querySelector('.toast-container');\n \n if (toastContainer) {\n // Crear un nuevo toast\n toast = document.createElement('div');\n toast.id = toastId;\n toast.className = `toast ${type === 'success' ? 'bg-success' : 'bg-danger'} text-white`;\n toast.setAttribute('role', 'alert');\n toast.setAttribute('aria-live', 'assertive');\n toast.setAttribute('aria-atomic', 'true');\n toast.setAttribute('data-bs-delay', '3000');\n \n // Estructura interna del toast\n toast.innerHTML = `\n