From 667fe6ba8ccece65af87b0deab0484d5f4a757e1 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Wed, 2 Aug 2023 17:04:03 -0400 Subject: [PATCH] fix: properly persist cookies --- .gitignore | 4 +- assets/js/app.js | 9 + lib/ash_admin/pages/page_live.ex | 13 + .../app-161d914bba3ef8912bae46d62332075a.css | 1 + ...pp-161d914bba3ef8912bae46d62332075a.css.gz | Bin 0 -> 7579 bytes .../app-c9fc8078e7bd6db471c3dfa3fcebe839.js | 23 + ...app-c9fc8078e7bd6db471c3dfa3fcebe839.js.gz | Bin 0 -> 29338 bytes priv/static/assets/app.css | 2329 +------ priv/static/assets/app.css.gz | Bin 0 -> 7579 bytes priv/static/assets/app.js | 5881 +---------------- priv/static/assets/app.js.gz | Bin 0 -> 29338 bytes priv/static/cache_manifest.json | 6 + 12 files changed, 63 insertions(+), 8203 deletions(-) create mode 100644 priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css create mode 100644 priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css.gz create mode 100644 priv/static/assets/app-c9fc8078e7bd6db471c3dfa3fcebe839.js create mode 100644 priv/static/assets/app-c9fc8078e7bd6db471c3dfa3fcebe839.js.gz create mode 100644 priv/static/assets/app.css.gz create mode 100644 priv/static/assets/app.js.gz create mode 100644 priv/static/cache_manifest.json diff --git a/.gitignore b/.gitignore index 5232aba..5b0d4e6 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ # Where third-party dependencies like ExDoc output generated docs. /doc/ +node_modules + # Ignore .fetch files in case you like to edit your project deps locally. /.fetch @@ -22,4 +24,4 @@ erl_crash.dump # Ignore package tarball (built via "mix hex.build"). ash_admin-*.tar -.DS_Store \ No newline at end of file +.DS_Store diff --git a/assets/js/app.js b/assets/js/app.js index d2ff19c..5bc6134 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -128,6 +128,15 @@ Hooks.Actor = { this.handleEvent("toggle_actor_paused", (payload) => { document.cookie = "actor_paused" + "=" + payload.actor_paused + ";path=/"; }); + + this.pushEvent("set_actor_from_session", { + actor_resource: document.cookie.actor_resource, + actor_primary_key: document.cookie.actor_primary_key, + actor_action: document.cookie.actor_action, + actor_api: document.cookie.actor_api, + actor_authorizing: document.cookie.actor_authorizing, + actor_paused: document.cookie.actor_paused + }) }, }; diff --git a/lib/ash_admin/pages/page_live.ex b/lib/ash_admin/pages/page_live.ex index 2a94440..c180388 100644 --- a/lib/ash_admin/pages/page_live.ex +++ b/lib/ash_admin/pages/page_live.ex @@ -306,6 +306,19 @@ defmodule AshAdmin.PageLive do |> push_event("clear_actor", %{})} end + def handle_event("set_actor_from_session", payload, socket) do + assigns = + payload + |> Map.take( + ~w[actor_resource actor_primary_key actor_action actor_api actor_authorizing actor_paused] + ) + |> Enum.map(fn {key, value} -> + {String.to_existing_atom(key), value} + end) + + {:noreply, assign(socket, assigns)} + end + def handle_event( "set_actor", %{"resource" => resource, "api" => api, "pkey" => primary_key}, diff --git a/priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css b/priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css new file mode 100644 index 0000000..c68de13 --- /dev/null +++ b/priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css @@ -0,0 +1 @@ +/*! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],select,textarea{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-radius:0;border-width:1px;font-size:1rem;line-height:1.5rem;padding:.5rem .75rem}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,select:focus,textarea:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);border-color:#2563eb;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-bottom:0;padding-top:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple]{background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{--tw-shadow:0 0 #0000;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;background-origin:border-box;border-color:#6b7280;border-width:1px;color:#2563eb;display:inline-block;flex-shrink:0;height:1rem;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:1rem}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);outline:2px solid #0000;outline-offset:2px}[type=checkbox]:checked,[type=radio]:checked{background-color:currentColor;background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:#0000}[type=checkbox]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E")}[type=radio]:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=checkbox]:indeterminate,[type=radio]:checked:focus,[type=radio]:checked:hover{background-color:currentColor;border-color:#0000}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:100% 100%}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{background-color:currentColor;border-color:#0000}[type=file]{background:unset;border-color:inherit;border-radius:0;border-width:0;font-size:unset;line-height:inherit;padding:0}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.hero-arrow-left-solid{--hero-arrow-left-solid:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-arrow-left-solid);mask:var(--hero-arrow-left-solid);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-arrow-left-solid,.hero-arrow-path{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-arrow-path{--hero-arrow-path:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-arrow-path);mask:var(--hero-arrow-path);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-check{--hero-check:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-check);mask:var(--hero-check);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-check,.hero-exclamation-circle-mini{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-exclamation-circle-mini{--hero-exclamation-circle-mini:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-exclamation-circle-mini);mask:var(--hero-exclamation-circle-mini);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-information-circle-mini{--hero-information-circle-mini:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-information-circle-mini);mask:var(--hero-information-circle-mini);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-information-circle-mini,.hero-information-circle-solid{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-information-circle-solid{--hero-information-circle-solid:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-information-circle-solid);mask:var(--hero-information-circle-solid);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-key{--hero-key:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-key);mask:var(--hero-key);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-key,.hero-key-solid{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-key-solid{--hero-key-solid:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-key-solid);mask:var(--hero-key-solid);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-magnifying-glass-circle{--hero-magnifying-glass-circle:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-magnifying-glass-circle);mask:var(--hero-magnifying-glass-circle);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-magnifying-glass-circle,.hero-minus{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-minus{--hero-minus:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-minus);mask:var(--hero-minus);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-pencil-solid{--hero-pencil-solid:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-pencil-solid);mask:var(--hero-pencil-solid);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-pencil-solid,.hero-plus{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-plus{--hero-plus:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-plus);mask:var(--hero-plus);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-x-circle-solid{--hero-x-circle-solid:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-x-circle-solid);mask:var(--hero-x-circle-solid);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-x-circle-solid,.hero-x-mark{background-color:currentColor;display:inline-block;height:1.25rem;vertical-align:middle;width:1.25rem}.hero-x-mark{--hero-x-mark:url('data:image/svg+xml;utf8,');-webkit-mask:var(--hero-x-mark);mask:var(--hero-x-mark);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.hero-x-mark-solid{--hero-x-mark-solid:url('data:image/svg+xml;utf8,');background-color:currentColor;display:inline-block;height:1.25rem;-webkit-mask:var(--hero-x-mark-solid);mask:var(--hero-x-mark-solid);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;vertical-align:middle;width:1.25rem}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.-inset-y-px{bottom:-1px;top:-1px}.-left-4{left:-1rem}.-right-4{right:-1rem}.left-0{left:0}.right-0{right:0}.right-1{right:.25rem}.right-2{right:.5rem}.right-5{right:1.25rem}.top-1{top:.25rem}.top-2{top:.5rem}.top-6{top:1.5rem}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-6{grid-column:span 6/span 6}.col-span-full{grid-column:1/-1}.float-right{float:right}.-m-3{margin:-.75rem}.m-2{margin:.5rem}.m-5{margin:1.25rem}.-my-4{margin-bottom:-1rem;margin-top:-1rem}.mx-12{margin-left:3rem;margin-right:3rem}.mx-24{margin-left:6rem;margin-right:6rem}.mx-auto{margin-left:auto;margin-right:auto}.my-4{margin-bottom:1rem;margin-top:1rem}.-mr-1{margin-right:-.25rem}.-mr-2{margin-right:-.5rem}.mb-10{margin-bottom:2.5rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.ml-1{margin-left:.25rem}.ml-10{margin-left:2.5rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.mr-1{margin-right:.25rem}.mr-4{margin-right:1rem}.mr-5{margin-right:1.25rem}.mt-0{margin-top:0}.mt-0\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-11{margin-top:2.75rem}.mt-14{margin-top:3.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-16{height:4rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-full{height:100%}.h-max{height:-moz-max-content;height:max-content}.h-screen{height:100vh}.min-h-\[6rem\]{min-height:6rem}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.w-1\/4{width:25%}.w-14{width:3.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-5\/6{width:83.333333%}.w-56{width:14rem}.w-6{width:1.5rem}.w-80{width:20rem}.w-\[40rem\]{width:40rem}.w-full{width:100%}.max-w-3xl{max-width:48rem}.max-w-none{max-width:none}.max-w-sm{max-width:24rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.table-auto{table-layout:auto}.origin-top-right{transform-origin:top right}.-translate-y-3{--tw-translate-y:-0.75rem}.-translate-y-3,.translate-y-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-0{--tw-translate-y:0px}.translate-y-4{--tw-translate-y:1rem}.transform,.translate-y-4{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.resize-y{resize:vertical}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.content-center{align-content:center}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-items-center{justify-items:center}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.-space-x-px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(-1px*(1 - var(--tw-space-x-reverse)));margin-right:calc(-1px*var(--tw-space-x-reverse))}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)));margin-right:calc(.25rem*var(--tw-space-x-reverse))}.space-y-8>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(2rem*var(--tw-space-y-reverse));margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-bottom-width:calc(1px*var(--tw-divide-y-reverse));border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)))}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity))}.divide-zinc-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(244 244 245/var(--tw-divide-opacity))}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-y-auto{overflow-y:auto}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-l-md{border-bottom-left-radius:.375rem;border-top-left-radius:.375rem}.rounded-r-md{border-bottom-right-radius:.375rem;border-top-right-radius:.375rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.border{border-width:1px}.border-b-2{border-bottom-width:2px}.border-t{border-top-width:1px}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.border-rose-400{--tw-border-opacity:1;border-color:rgb(251 113 133/var(--tw-border-opacity))}.border-transparent{border-color:#0000}.border-zinc-200{--tw-border-opacity:1;border-color:rgb(228 228 231/var(--tw-border-opacity))}.border-zinc-300{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.bg-emerald-50{--tw-bg-opacity:1;background-color:rgb(236 253 245/var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity))}.bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity:1;background-color:rgb(79 70 229/var(--tw-bg-opacity))}.bg-rose-50{--tw-bg-opacity:1;background-color:rgb(255 241 242/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.bg-zinc-50\/90{background-color:#fafafae6}.bg-zinc-900{--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.fill-cyan-900{fill:#164e63}.fill-rose-900{fill:#881337}.p-0{padding:0}.p-14{padding:3.5rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-8{padding-bottom:2rem;padding-top:2rem}.pb-20{padding-bottom:5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pr-4{padding-right:1rem}.pr-6{padding-right:1.5rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-right{text-align:right}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.italic{font-style:italic}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-8{line-height:2rem}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-emerald-800{--tw-text-opacity:1;color:rgb(6 95 70/var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.text-rose-600{--tw-text-opacity:1;color:rgb(225 29 72/var(--tw-text-opacity))}.text-rose-900{--tw-text-opacity:1;color:rgb(136 19 55/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.text-zinc-500{--tw-text-opacity:1;color:rgb(113 113 122/var(--tw-text-opacity))}.text-zinc-600{--tw-text-opacity:1;color:rgb(82 82 91/var(--tw-text-opacity))}.text-zinc-700{--tw-text-opacity:1;color:rgb(63 63 70/var(--tw-text-opacity))}.text-zinc-800{--tw-text-opacity:1;color:rgb(39 39 42/var(--tw-text-opacity))}.text-zinc-900{--tw-text-opacity:1;color:rgb(24 24 27/var(--tw-text-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-20{opacity:.2}.opacity-40{opacity:.4}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-lg,.shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 #0000000d;--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-zinc-700\/10{--tw-shadow-color:#3f3f461a;--tw-shadow:var(--tw-shadow-colored)}.outline{outline-style:solid}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-emerald-500{--tw-ring-opacity:1;--tw-ring-color:rgb(16 185 129/var(--tw-ring-opacity))}.ring-rose-500{--tw-ring-opacity:1;--tw-ring-color:rgb(244 63 94/var(--tw-ring-opacity))}.ring-zinc-700\/10{--tw-ring-color:#3f3f461a}.ring-opacity-5{--tw-ring-opacity:0.05}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-150,.transition-opacity{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.hover\:cursor-pointer:hover{cursor:pointer}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.hover\:bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.hover\:bg-gray-300:hover{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.hover\:bg-gray-400:hover{--tw-bg-opacity:1;background-color:rgb(156 163 175/var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.hover\:bg-gray-900:hover{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.hover\:bg-indigo-700:hover{--tw-bg-opacity:1;background-color:rgb(67 56 202/var(--tw-bg-opacity))}.hover\:bg-zinc-50:hover{--tw-bg-opacity:1;background-color:rgb(250 250 250/var(--tw-bg-opacity))}.hover\:bg-zinc-700:hover{--tw-bg-opacity:1;background-color:rgb(63 63 70/var(--tw-bg-opacity))}.hover\:text-blue-400:hover{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39/var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:text-zinc-700:hover{--tw-text-opacity:1;color:rgb(63 63 70/var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-40:hover{opacity:.4}.focus\:border-indigo-500:focus{--tw-border-opacity:1;border-color:rgb(99 102 241/var(--tw-border-opacity))}.focus\:border-rose-400:focus{--tw-border-opacity:1;border-color:rgb(251 113 133/var(--tw-border-opacity))}.focus\:border-zinc-400:focus{--tw-border-opacity:1;border-color:rgb(161 161 170/var(--tw-border-opacity))}.focus\:bg-gray-700:focus{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.focus\:text-white:focus{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:ring-0:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-0:focus,.focus\:ring-2:focus{box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color)}.focus\:ring-indigo-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(99 102 241/var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-gray-100:focus{--tw-ring-offset-color:#f3f4f6}.active\:text-white\/80:active{color:#fffc}.group:hover .group-hover\:bg-zinc-50{--tw-bg-opacity:1;background-color:rgb(250 250 250/var(--tw-bg-opacity))}.group:hover .group-hover\:opacity-70{opacity:.7}.phx-no-feedback.phx-no-feedback\:hidden{display:none}.phx-no-feedback.phx-no-feedback\:border-zinc-300{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.phx-no-feedback.phx-no-feedback\:focus\:border-zinc-400:focus{--tw-border-opacity:1;border-color:rgb(161 161 170/var(--tw-border-opacity))}.phx-no-feedback .phx-no-feedback\:hidden{display:none}.phx-no-feedback .phx-no-feedback\:border-zinc-300{--tw-border-opacity:1;border-color:rgb(212 212 216/var(--tw-border-opacity))}.phx-no-feedback .phx-no-feedback\:focus\:border-zinc-400:focus{--tw-border-opacity:1;border-color:rgb(161 161 170/var(--tw-border-opacity))}.phx-submit-loading .phx-submit-loading\:opacity-75,.phx-submit-loading.phx-submit-loading\:opacity-75{opacity:.75}@media (min-width:640px){.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-full{grid-column:1/-1}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:w-96{width:24rem}.sm\:w-full{width:100%}.sm\:flex-1{flex:1 1 0%}.sm\:translate-y-0{--tw-translate-y:0px}.sm\:scale-100,.sm\:translate-y-0{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x:1;--tw-scale-y:1}.sm\:scale-95{--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:items-center{align-items:center}.sm\:justify-between{justify-content:space-between}.sm\:gap-8{gap:2rem}.sm\:overflow-visible{overflow:visible}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-l-xl{border-bottom-left-radius:.75rem;border-top-left-radius:.75rem}.sm\:rounded-r-xl{border-bottom-right-radius:.75rem;border-top-right-radius:.75rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-3{padding-left:.75rem;padding-right:.75rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}}@media (min-width:768px){.md\:col-span-2{grid-column:span 2/span 2}.md\:mx-16{margin-left:4rem;margin-right:4rem}.md\:mx-4{margin-left:1rem;margin-right:1rem}.md\:mt-0{margin-top:0}.md\:mt-10{margin-top:2.5rem}.md\:block{display:block}.md\:grid{display:grid}.md\:hidden{display:none}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:gap-6{gap:1.5rem}.md\:pt-10{padding-top:2.5rem}}@media (min-width:1024px){.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-8{padding-bottom:2rem;padding-top:2rem}} \ No newline at end of file diff --git a/priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css.gz b/priv/static/assets/app-161d914bba3ef8912bae46d62332075a.css.gz new file mode 100644 index 0000000000000000000000000000000000000000..3e302947bccfdbcf7da8093ec9f383adbf6e80ad GIT binary patch literal 7579 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 Jt=Object.create;var Oe=Object.defineProperty;var Vt=Object.getOwnPropertyDescriptor;var Xt=Object.getOwnPropertyNames,nt=Object.getOwnPropertySymbols,zt=Object.getPrototypeOf,rt=Object.prototype.hasOwnProperty,Wt=Object.prototype.propertyIsEnumerable;var st=(e,t,i)=>t in e?Oe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):e[t]=i,te=(e,t)=>{for(var i in t||(t={}))rt.call(t,i)&&st(e,i,t[i]);if(nt)for(var i of nt(t))Wt.call(t,i)&&st(e,i,t[i]);return e};var qt=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var Kt=(e,t,i,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of Xt(t))!rt.call(e,s)&&s!==i&&Oe(e,s,{get:()=>t[s],enumerable:!(n=Vt(t,s))||n.enumerable});return e};var Gt=(e,t,i)=>(i=e!=null?Jt(zt(e)):{},Kt(t||!e||!e.__esModule?Oe(i,"default",{value:e,enumerable:!0}):i,e));var dt=qt((lt,Se)=>{(function(e,t){"use strict";(function(){for(var u=0,m=["ms","moz","webkit","o"],g=0;gv.show(),u)}else s=!0,o!==null&&e.cancelAnimationFrame(o),i||p(),i.style.opacity=1,i.style.display="block",v.progress(0),d.autoRun&&function m(){r=e.requestAnimationFrame(m),v.progress("+"+.05*Math.pow(1-Math.sqrt(n),2))}()},progress:function(u){return typeof u=="undefined"||(typeof u=="string"&&(u=(u.indexOf("+")>=0||u.indexOf("-")>=0?n:0)+parseFloat(u)),n=u>1?1:u,f()),n},hide:function(){clearTimeout(a),a=null,s&&(s=!1,r!=null&&(e.cancelAnimationFrame(r),r=null),function u(){if(v.progress("+.1")>=1&&(i.style.opacity-=.05,i.style.opacity<=.05)){i.style.display="none",o=null;return}o=e.requestAnimationFrame(u)}())}};typeof Se=="object"&&typeof Se.exports=="object"?Se.exports=v:typeof define=="function"&&define.amd?define(function(){return v}):this.topbar=v}).call(lt,window,document)});(function(){var e=t();function t(){if(typeof window.CustomEvent=="function")return window.CustomEvent;function s(r,o){o=o||{bubbles:!1,cancelable:!1,detail:void 0};var a=document.createEvent("CustomEvent");return a.initCustomEvent(r,o.bubbles,o.cancelable,o.detail),a}return s.prototype=window.Event.prototype,s}function i(s,r){var o=document.createElement("input");return o.type="hidden",o.name=s,o.value=r,o}function n(s,r){var o=s.getAttribute("data-to"),a=i("_method",s.getAttribute("data-method")),h=i("_csrf_token",s.getAttribute("data-csrf")),d=document.createElement("form"),f=s.getAttribute("target");d.method=s.getAttribute("data-method")==="get"?"get":"post",d.action=o,d.style.display="hidden",f?d.target=f:r&&(d.target="_blank"),d.appendChild(h),d.appendChild(a),document.body.appendChild(d),d.submit()}window.addEventListener("click",function(s){var r=s.target;if(!s.defaultPrevented)for(;r&&r.getAttribute;){var o=new e("phoenix.link.click",{bubbles:!0,cancelable:!0});if(!r.dispatchEvent(o))return s.preventDefault(),s.stopImmediatePropagation(),!1;if(r.getAttribute("data-method"))return n(r,s.metaKey||s.shiftKey),s.preventDefault(),!1;r=r.parentNode}},!1),window.addEventListener("phoenix.link.click",function(s){var r=s.target.getAttribute("data-confirm");r&&!window.confirm(r)&&s.preventDefault()},!1)})();var ne=e=>typeof e=="function"?e:function(){return e},Yt=typeof self!="undefined"?self:null,ie=typeof window!="undefined"?window:null,ke=Yt||ie||void 0,Qt="2.0.0",N={connecting:0,open:1,closing:2,closed:3},Zt=1e4,ei=1e3,P={closed:"closed",errored:"errored",joined:"joined",joining:"joining",leaving:"leaving"},$={close:"phx_close",error:"phx_error",join:"phx_join",reply:"phx_reply",leave:"phx_leave"},Ne={longpoll:"longpoll",websocket:"websocket"},ti={complete:4},be=class{constructor(e,t,i,n){this.channel=e,this.event=t,this.payload=i||function(){return{}},this.receivedResp=null,this.timeout=n,this.timeoutTimer=null,this.recHooks=[],this.sent=!1}resend(e){this.timeout=e,this.reset(),this.send()}send(){this.hasReceived("timeout")||(this.startTimeout(),this.sent=!0,this.channel.socket.push({topic:this.channel.topic,event:this.event,payload:this.payload(),ref:this.ref,join_ref:this.channel.joinRef()}))}receive(e,t){return this.hasReceived(e)&&t(this.receivedResp.response),this.recHooks.push({status:e,callback:t}),this}reset(){this.cancelRefEvent(),this.ref=null,this.refEvent=null,this.receivedResp=null,this.sent=!1}matchReceive({status:e,response:t,_ref:i}){this.recHooks.filter(n=>n.status===e).forEach(n=>n.callback(t))}cancelRefEvent(){this.refEvent&&this.channel.off(this.refEvent)}cancelTimeout(){clearTimeout(this.timeoutTimer),this.timeoutTimer=null}startTimeout(){this.timeoutTimer&&this.cancelTimeout(),this.ref=this.channel.socket.makeRef(),this.refEvent=this.channel.replyEventName(this.ref),this.channel.on(this.refEvent,e=>{this.cancelRefEvent(),this.cancelTimeout(),this.receivedResp=e,this.matchReceive(e)}),this.timeoutTimer=setTimeout(()=>{this.trigger("timeout",{})},this.timeout)}hasReceived(e){return this.receivedResp&&this.receivedResp.status===e}trigger(e,t){this.channel.trigger(this.refEvent,{status:e,response:t})}},at=class{constructor(e,t){this.callback=e,this.timerCalc=t,this.timer=null,this.tries=0}reset(){this.tries=0,clearTimeout(this.timer)}scheduleTimeout(){clearTimeout(this.timer),this.timer=setTimeout(()=>{this.tries=this.tries+1,this.callback()},this.timerCalc(this.tries+1))}},ii=class{constructor(e,t,i){this.state=P.closed,this.topic=e,this.params=ne(t||{}),this.socket=i,this.bindings=[],this.bindingRef=0,this.timeout=this.socket.timeout,this.joinedOnce=!1,this.joinPush=new be(this,$.join,this.params,this.timeout),this.pushBuffer=[],this.stateChangeRefs=[],this.rejoinTimer=new at(()=>{this.socket.isConnected()&&this.rejoin()},this.socket.rejoinAfterMs),this.stateChangeRefs.push(this.socket.onError(()=>this.rejoinTimer.reset())),this.stateChangeRefs.push(this.socket.onOpen(()=>{this.rejoinTimer.reset(),this.isErrored()&&this.rejoin()})),this.joinPush.receive("ok",()=>{this.state=P.joined,this.rejoinTimer.reset(),this.pushBuffer.forEach(n=>n.send()),this.pushBuffer=[]}),this.joinPush.receive("error",()=>{this.state=P.errored,this.socket.isConnected()&&this.rejoinTimer.scheduleTimeout()}),this.onClose(()=>{this.rejoinTimer.reset(),this.socket.hasLogger()&&this.socket.log("channel",`close ${this.topic} ${this.joinRef()}`),this.state=P.closed,this.socket.remove(this)}),this.onError(n=>{this.socket.hasLogger()&&this.socket.log("channel",`error ${this.topic}`,n),this.isJoining()&&this.joinPush.reset(),this.state=P.errored,this.socket.isConnected()&&this.rejoinTimer.scheduleTimeout()}),this.joinPush.receive("timeout",()=>{this.socket.hasLogger()&&this.socket.log("channel",`timeout ${this.topic} (${this.joinRef()})`,this.joinPush.timeout),new be(this,$.leave,ne({}),this.timeout).send(),this.state=P.errored,this.joinPush.reset(),this.socket.isConnected()&&this.rejoinTimer.scheduleTimeout()}),this.on($.reply,(n,s)=>{this.trigger(this.replyEventName(s),n)})}join(e=this.timeout){if(this.joinedOnce)throw new Error("tried to join multiple times. 'join' can only be called a single time per channel instance");return this.timeout=e,this.joinedOnce=!0,this.rejoin(),this.joinPush}onClose(e){this.on($.close,e)}onError(e){return this.on($.error,t=>e(t))}on(e,t){let i=this.bindingRef++;return this.bindings.push({event:e,ref:i,callback:t}),i}off(e,t){this.bindings=this.bindings.filter(i=>!(i.event===e&&(typeof t=="undefined"||t===i.ref)))}canPush(){return this.socket.isConnected()&&this.isJoined()}push(e,t,i=this.timeout){if(t=t||{},!this.joinedOnce)throw new Error(`tried to push '${e}' to '${this.topic}' before joining. Use channel.join() before pushing events`);let n=new be(this,e,function(){return t},i);return this.canPush()?n.send():(n.startTimeout(),this.pushBuffer.push(n)),n}leave(e=this.timeout){this.rejoinTimer.reset(),this.joinPush.cancelTimeout(),this.state=P.leaving;let t=()=>{this.socket.hasLogger()&&this.socket.log("channel",`leave ${this.topic}`),this.trigger($.close,"leave")},i=new be(this,$.leave,ne({}),e);return i.receive("ok",()=>t()).receive("timeout",()=>t()),i.send(),this.canPush()||i.trigger("ok",{}),i}onMessage(e,t,i){return t}isMember(e,t,i,n){return this.topic!==e?!1:n&&n!==this.joinRef()?(this.socket.hasLogger()&&this.socket.log("channel","dropping outdated message",{topic:e,event:t,payload:i,joinRef:n}),!1):!0}joinRef(){return this.joinPush.ref}rejoin(e=this.timeout){this.isLeaving()||(this.socket.leaveOpenTopic(this.topic),this.state=P.joining,this.joinPush.resend(e))}trigger(e,t,i,n){let s=this.onMessage(e,t,i,n);if(t&&!s)throw new Error("channel onMessage callbacks must return the payload, modified or unmodified");let r=this.bindings.filter(o=>o.event===e);for(let o=0;o{let a=this.parseJSON(e.responseText);o&&o(a)},r&&(e.ontimeout=r),e.onprogress=()=>{},e.send(n)}static xhrRequest(e,t,i,n,s,r,o,a){e.open(t,i,!0),e.timeout=r,e.setRequestHeader("Content-Type",n),e.onerror=()=>{a&&a(null)},e.onreadystatechange=()=>{if(e.readyState===ti.complete&&a){let h=this.parseJSON(e.responseText);a(h)}},o&&(e.ontimeout=o),e.send(s)}static parseJSON(e){if(!e||e==="")return null;try{return JSON.parse(e)}catch(t){return console&&console.log("failed to parse JSON response",e),null}}static serialize(e,t){let i=[];for(var n in e){if(!Object.prototype.hasOwnProperty.call(e,n))continue;let s=t?`${t}[${n}]`:n,r=e[n];typeof r=="object"?i.push(this.serialize(r,s)):i.push(encodeURIComponent(s)+"="+encodeURIComponent(r))}return i.join("&")}static appendParams(e,t){if(Object.keys(t).length===0)return e;let i=e.match(/\?/)?"&":"?";return`${e}${i}${this.serialize(t)}`}},ot=class{constructor(e){this.endPoint=null,this.token=null,this.skipHeartbeat=!0,this.onopen=function(){},this.onerror=function(){},this.onmessage=function(){},this.onclose=function(){},this.pollEndpoint=this.normalizeEndpoint(e),this.readyState=N.connecting,this.poll()}normalizeEndpoint(e){return e.replace("ws://","http://").replace("wss://","https://").replace(new RegExp("(.*)/"+Ne.websocket),"$1/"+Ne.longpoll)}endpointURL(){return se.appendParams(this.pollEndpoint,{token:this.token})}closeAndRetry(){this.close(),this.readyState=N.connecting}ontimeout(){this.onerror("timeout"),this.closeAndRetry()}poll(){(this.readyState===N.open||this.readyState===N.connecting)&&se.request("GET",this.endpointURL(),"application/json",null,this.timeout,this.ontimeout.bind(this),e=>{if(e){var{status:t,token:i,messages:n}=e;this.token=i}else t=0;switch(t){case 200:n.forEach(s=>{setTimeout(()=>{this.onmessage({data:s})},0)}),this.poll();break;case 204:this.poll();break;case 410:this.readyState=N.open,this.onopen(),this.poll();break;case 403:this.onerror(),this.close();break;case 0:case 500:this.onerror(),this.closeAndRetry();break;default:throw new Error(`unhandled poll status ${t}`)}})}send(e){se.request("POST",this.endpointURL(),"application/json",e,this.timeout,this.onerror.bind(this,"timeout"),t=>{(!t||t.status!==200)&&(this.onerror(t&&t.status),this.closeAndRetry())})}close(e,t){this.readyState=N.closed,this.onclose()}};var ye={HEADER_LENGTH:1,META_LENGTH:4,KINDS:{push:0,reply:1,broadcast:2},encode(e,t){if(e.payload.constructor===ArrayBuffer)return t(this.binaryEncode(e));{let i=[e.join_ref,e.ref,e.topic,e.event,e.payload];return t(JSON.stringify(i))}},decode(e,t){if(e.constructor===ArrayBuffer)return t(this.binaryDecode(e));{let[i,n,s,r,o]=JSON.parse(e);return t({join_ref:i,ref:n,topic:s,event:r,payload:o})}},binaryEncode(e){let{join_ref:t,ref:i,event:n,topic:s,payload:r}=e,o=this.META_LENGTH+t.length+i.length+s.length+n.length,a=new ArrayBuffer(this.HEADER_LENGTH+o),h=new DataView(a),d=0;h.setUint8(d++,this.KINDS.push),h.setUint8(d++,t.length),h.setUint8(d++,i.length),h.setUint8(d++,s.length),h.setUint8(d++,n.length),Array.from(t,p=>h.setUint8(d++,p.charCodeAt(0))),Array.from(i,p=>h.setUint8(d++,p.charCodeAt(0))),Array.from(s,p=>h.setUint8(d++,p.charCodeAt(0))),Array.from(n,p=>h.setUint8(d++,p.charCodeAt(0)));var f=new Uint8Array(a.byteLength+r.byteLength);return f.set(new Uint8Array(a),0),f.set(new Uint8Array(r),a.byteLength),f.buffer},binaryDecode(e){let t=new DataView(e),i=t.getUint8(0),n=new TextDecoder;switch(i){case this.KINDS.push:return this.decodePush(e,t,n);case this.KINDS.reply:return this.decodeReply(e,t,n);case this.KINDS.broadcast:return this.decodeBroadcast(e,t,n)}},decodePush(e,t,i){let n=t.getUint8(1),s=t.getUint8(2),r=t.getUint8(3),o=this.HEADER_LENGTH+this.META_LENGTH-1,a=i.decode(e.slice(o,o+n));o=o+n;let h=i.decode(e.slice(o,o+s));o=o+s;let d=i.decode(e.slice(o,o+r));o=o+r;let f=e.slice(o,e.byteLength);return{join_ref:a,ref:null,topic:h,event:d,payload:f}},decodeReply(e,t,i){let n=t.getUint8(1),s=t.getUint8(2),r=t.getUint8(3),o=t.getUint8(4),a=this.HEADER_LENGTH+this.META_LENGTH,h=i.decode(e.slice(a,a+n));a=a+n;let d=i.decode(e.slice(a,a+s));a=a+s;let f=i.decode(e.slice(a,a+r));a=a+r;let p=i.decode(e.slice(a,a+o));a=a+o;let v=e.slice(a,e.byteLength),u={status:p,response:v};return{join_ref:h,ref:d,topic:f,event:$.reply,payload:u}},decodeBroadcast(e,t,i){let n=t.getUint8(1),s=t.getUint8(2),r=this.HEADER_LENGTH+2,o=i.decode(e.slice(r,r+n));r=r+n;let a=i.decode(e.slice(r,r+s));r=r+s;let h=e.slice(r,e.byteLength);return{join_ref:null,ref:null,topic:o,event:a,payload:h}}},ht=class{constructor(e,t={}){this.stateChangeCallbacks={open:[],close:[],error:[],message:[]},this.channels=[],this.sendBuffer=[],this.ref=0,this.timeout=t.timeout||Zt,this.transport=t.transport||ke.WebSocket||ot,this.establishedConnections=0,this.defaultEncoder=ye.encode.bind(ye),this.defaultDecoder=ye.decode.bind(ye),this.closeWasClean=!1,this.binaryType=t.binaryType||"arraybuffer",this.connectClock=1,this.transport!==ot?(this.encode=t.encode||this.defaultEncoder,this.decode=t.decode||this.defaultDecoder):(this.encode=this.defaultEncoder,this.decode=this.defaultDecoder);let i=null;ie&&ie.addEventListener&&(ie.addEventListener("pagehide",n=>{this.conn&&(this.disconnect(),i=this.connectClock)}),ie.addEventListener("pageshow",n=>{i===this.connectClock&&(i=null,this.connect())})),this.heartbeatIntervalMs=t.heartbeatIntervalMs||3e4,this.rejoinAfterMs=n=>t.rejoinAfterMs?t.rejoinAfterMs(n):[1e3,2e3,5e3][n-1]||1e4,this.reconnectAfterMs=n=>t.reconnectAfterMs?t.reconnectAfterMs(n):[10,50,100,150,200,250,500,1e3,2e3][n-1]||5e3,this.logger=t.logger||null,this.longpollerTimeout=t.longpollerTimeout||2e4,this.params=ne(t.params||{}),this.endPoint=`${e}/${Ne.websocket}`,this.vsn=t.vsn||Qt,this.heartbeatTimer=null,this.pendingHeartbeatRef=null,this.reconnectTimer=new at(()=>{this.teardown(()=>this.connect())},this.reconnectAfterMs)}replaceTransport(e){this.disconnect(),this.transport=e}protocol(){return location.protocol.match(/^https/)?"wss":"ws"}endPointURL(){let e=se.appendParams(se.appendParams(this.endPoint,this.params()),{vsn:this.vsn});return e.charAt(0)!=="/"?e:e.charAt(1)==="/"?`${this.protocol()}:${e}`:`${this.protocol()}://${location.host}${e}`}disconnect(e,t,i){this.connectClock++,this.closeWasClean=!0,this.reconnectTimer.reset(),this.teardown(e,t,i)}connect(e){this.connectClock++,e&&(console&&console.log("passing params to connect is deprecated. Instead pass :params to the Socket constructor"),this.params=ne(e)),!this.conn&&(this.closeWasClean=!1,this.conn=new this.transport(this.endPointURL()),this.conn.binaryType=this.binaryType,this.conn.timeout=this.longpollerTimeout,this.conn.onopen=()=>this.onConnOpen(),this.conn.onerror=t=>this.onConnError(t),this.conn.onmessage=t=>this.onConnMessage(t),this.conn.onclose=t=>this.onConnClose(t))}log(e,t,i){this.logger(e,t,i)}hasLogger(){return this.logger!==null}onOpen(e){let t=this.makeRef();return this.stateChangeCallbacks.open.push([t,e]),t}onClose(e){let t=this.makeRef();return this.stateChangeCallbacks.close.push([t,e]),t}onError(e){let t=this.makeRef();return this.stateChangeCallbacks.error.push([t,e]),t}onMessage(e){let t=this.makeRef();return this.stateChangeCallbacks.message.push([t,e]),t}onConnOpen(){this.hasLogger()&&this.log("transport",`connected to ${this.endPointURL()}`),this.closeWasClean=!1,this.establishedConnections++,this.flushSendBuffer(),this.reconnectTimer.reset(),this.resetHeartbeat(),this.stateChangeCallbacks.open.forEach(([,e])=>e())}heartbeatTimeout(){this.pendingHeartbeatRef&&(this.pendingHeartbeatRef=null,this.hasLogger()&&this.log("transport","heartbeat timeout. Attempting to re-establish connection"),this.abnormalClose("heartbeat timeout"))}resetHeartbeat(){this.conn&&this.conn.skipHeartbeat||(this.pendingHeartbeatRef=null,clearTimeout(this.heartbeatTimer),setTimeout(()=>this.sendHeartbeat(),this.heartbeatIntervalMs))}teardown(e,t,i){if(!this.conn)return e&&e();this.waitForBufferDone(()=>{this.conn&&(t?this.conn.close(t,i||""):this.conn.close()),this.waitForSocketClosed(()=>{this.conn&&(this.conn.onclose=function(){},this.conn=null),e&&e()})})}waitForBufferDone(e,t=1){if(t===5||!this.conn||!this.conn.bufferedAmount){e();return}setTimeout(()=>{this.waitForBufferDone(e,t+1)},150*t)}waitForSocketClosed(e,t=1){if(t===5||!this.conn||this.conn.readyState===N.closed){e();return}setTimeout(()=>{this.waitForSocketClosed(e,t+1)},150*t)}onConnClose(e){let t=e&&e.code;this.hasLogger()&&this.log("transport","close",e),this.triggerChanError(),clearTimeout(this.heartbeatTimer),!this.closeWasClean&&t!==1e3&&this.reconnectTimer.scheduleTimeout(),this.stateChangeCallbacks.close.forEach(([,i])=>i(e))}onConnError(e){this.hasLogger()&&this.log("transport",e);let t=this.transport,i=this.establishedConnections;this.stateChangeCallbacks.error.forEach(([,n])=>{n(e,t,i)}),(t===this.transport||i>0)&&this.triggerChanError()}triggerChanError(){this.channels.forEach(e=>{e.isErrored()||e.isLeaving()||e.isClosed()||e.trigger($.error)})}connectionState(){switch(this.conn&&this.conn.readyState){case N.connecting:return"connecting";case N.open:return"open";case N.closing:return"closing";default:return"closed"}}isConnected(){return this.connectionState()==="open"}remove(e){this.off(e.stateChangeRefs),this.channels=this.channels.filter(t=>t.joinRef()!==e.joinRef())}off(e){for(let t in this.stateChangeCallbacks)this.stateChangeCallbacks[t]=this.stateChangeCallbacks[t].filter(([i])=>e.indexOf(i)===-1)}channel(e,t={}){let i=new ii(e,t,this);return this.channels.push(i),i}push(e){if(this.hasLogger()){let{topic:t,event:i,payload:n,ref:s,join_ref:r}=e;this.log("push",`${t} ${i} (${r}, ${s})`,n)}this.isConnected()?this.encode(e,t=>this.conn.send(t)):this.sendBuffer.push(()=>this.encode(e,t=>this.conn.send(t)))}makeRef(){let e=this.ref+1;return e===this.ref?this.ref=0:this.ref=e,this.ref.toString()}sendHeartbeat(){this.pendingHeartbeatRef&&!this.isConnected()||(this.pendingHeartbeatRef=this.makeRef(),this.push({topic:"phoenix",event:"heartbeat",payload:{},ref:this.pendingHeartbeatRef}),this.heartbeatTimer=setTimeout(()=>this.heartbeatTimeout(),this.heartbeatIntervalMs))}abnormalClose(e){this.closeWasClean=!1,this.isConnected()&&this.conn.close(ei,e)}flushSendBuffer(){this.isConnected()&&this.sendBuffer.length>0&&(this.sendBuffer.forEach(e=>e()),this.sendBuffer=[])}onConnMessage(e){this.decode(e.data,t=>{let{topic:i,event:n,payload:s,ref:r,join_ref:o}=t;r&&r===this.pendingHeartbeatRef&&(clearTimeout(this.heartbeatTimer),this.pendingHeartbeatRef=null,setTimeout(()=>this.sendHeartbeat(),this.heartbeatIntervalMs)),this.hasLogger()&&this.log("receive",`${s.status||""} ${i} ${n} ${r&&"("+r+")"||""}`,s);for(let a=0;ai.topic===e&&(i.isJoined()||i.isJoining()));t&&(this.hasLogger()&&this.log("transport",`leaving duplicate topic "${e}"`),t.leave())}};var Le=Gt(dt());var xt="consecutive-reloads",ni=10,si=1e3,ri=3e3,oi=3e4,It=["phx-click-loading","phx-change-loading","phx-submit-loading","phx-keydown-loading","phx-keyup-loading","phx-blur-loading","phx-focus-loading"],L="data-phx-component",He="data-phx-link",ai="track-static",hi="data-phx-link-state",j="data-phx-ref",G="data-phx-ref-src",Dt="track-uploads",Y="data-phx-upload-ref",Qe="data-phx-preflighted-refs",li="data-phx-done-refs",ct="drop-target",ze="data-phx-active-refs",We="phx:live-file:updated",qe="data-phx-skip",ut="data-phx-prune",ft="page-loading",pt="phx-connected",Me="phx-loading",gt="phx-no-feedback",mt="phx-error",Z="data-phx-parent-id",Ze="data-phx-main",ce="data-phx-root-id",di="trigger-action",Ke="feedback-for",Ot="phx-has-focused",ci=["text","textarea","number","email","password","search","tel","url","date","time","datetime-local","color","range"],Nt=["checkbox","radio"],Ht="phx-has-submitted",W="data-phx-session",ee=`[${W}]`,vt="data-phx-sticky",le="data-phx-static",Ue="data-phx-readonly",Ae="data-phx-disabled",Ge="disable-with",Ee="data-phx-disable-with-restore",we="hook",ui="debounce",fi="throttle",Ye="update",pi="key",H="phxPrivate",bt="auto-recover",je="phx:live-socket:debug",$e="phx:live-socket:profiling",Fe="phx:live-socket:latency-sim",gi="progress",mi=1,vi=200,bi="phx-",yi=3e4,re="debounce-trigger",Ce="throttled",yt="debounce-prev-key",ki={debounce:300,throttle:300},kt="d",M="s",R="c",St="e",At="r",Et="t",Si="p",Ai=class{constructor(e,t,i){this.liveSocket=i,this.entry=e,this.offset=0,this.chunkSize=t,this.chunkTimer=null,this.uploadChannel=i.channel(`lvu:${e.ref}`,{token:e.metadata()})}error(e){clearTimeout(this.chunkTimer),this.uploadChannel.leave(),this.entry.error(e)}upload(){this.uploadChannel.onError(e=>this.error(e)),this.uploadChannel.join().receive("ok",e=>this.readNextChunk()).receive("error",e=>this.error(e))}isDone(){return this.offset>=this.entry.file.size}readNextChunk(){let e=new window.FileReader,t=this.entry.file.slice(this.offset,this.chunkSize+this.offset);e.onload=i=>{if(i.target.error===null)this.offset+=i.target.result.byteLength,this.pushChunk(i.target.result);else return _("Read error: "+i.target.error)},e.readAsArrayBuffer(t)}pushChunk(e){this.uploadChannel.isJoined()&&this.uploadChannel.push("chunk",e).receive("ok",()=>{this.entry.progress(this.offset/this.entry.file.size*100),this.isDone()||(this.chunkTimer=setTimeout(()=>this.readNextChunk(),this.liveSocket.getLatencySim()||0))})}},_=(e,t)=>console.error&&console.error(e,t),z=e=>{let t=typeof e;return t==="number"||t==="string"&&/^(0|[1-9]\d*)$/.test(e)};function Ei(){let e=new Set,t=document.querySelectorAll("*[id]");for(let i=0,n=t.length;i{e.liveSocket.isDebugEnabled()&&console.log(`${e.id} ${t}: ${i} - `,n)},Be=e=>typeof e=="function"?e:function(){return e},Re=e=>JSON.parse(JSON.stringify(e)),de=(e,t,i)=>{do{if(e.matches(`[${t}]`))return e;e=e.parentElement||e.parentNode}while(e!==null&&e.nodeType===1&&!(i&&i.isSameNode(e)||e.matches(ee)));return null},oe=e=>e!==null&&typeof e=="object"&&!(e instanceof Array),Ci=(e,t)=>JSON.stringify(e)===JSON.stringify(t),wt=e=>{for(let t in e)return!1;return!0},F=(e,t)=>e&&t(e),_i=function(e,t,i,n){e.forEach(s=>{new Ai(s,i.config.chunk_size,n).upload()})},Mt={canPushState(){return typeof history.pushState!="undefined"},dropLocal(e,t,i){return e.removeItem(this.localKey(t,i))},updateLocal(e,t,i,n,s){let r=this.getLocal(e,t,i),o=this.localKey(t,i),a=r===null?n:s(r);return e.setItem(o,JSON.stringify(a)),a},getLocal(e,t,i){return JSON.parse(e.getItem(this.localKey(t,i)))},updateCurrentState(e){this.canPushState()&&history.replaceState(e(history.state||{}),"",window.location.href)},pushState(e,t,i){if(this.canPushState()){if(i!==window.location.href){if(t.type=="redirect"&&t.scroll){let s=history.state||{};s.scroll=t.scroll,history.replaceState(s,"",window.location.href)}delete t.scroll,history[e+"State"](t,"",i||null);let n=this.getHashTargetEl(window.location.hash);n?n.scrollIntoView():t.type==="redirect"&&window.scroll(0,0)}}else this.redirect(i)},setCookie(e,t){document.cookie=`${e}=${t}`},getCookie(e){return document.cookie.replace(new RegExp(`(?:(?:^|.*;s*)${e}s*=s*([^;]*).*$)|^.*$`),"$1")},redirect(e,t){t&&Mt.setCookie("__phoenix_flash__",t+"; max-age=60000; path=/"),window.location=e},localKey(e,t){return`${e}-${t}`},getHashTargetEl(e){let t=e.toString().substring(1);if(t!=="")return document.getElementById(t)||document.querySelector(`a[name="${t}"]`)}},X=Mt,O={byId(e){return document.getElementById(e)||_(`no id found for ${e}`)},removeClass(e,t){e.classList.remove(t),e.classList.length===0&&e.removeAttribute("class")},all(e,t,i){if(!e)return[];let n=Array.from(e.querySelectorAll(t));return i?n.forEach(i):n},childNodeLength(e){let t=document.createElement("template");return t.innerHTML=e,t.content.childElementCount},isUploadInput(e){return e.type==="file"&&e.getAttribute(Y)!==null},findUploadInputs(e){return this.all(e,`input[type="file"][${Y}]`)},findComponentNodeList(e,t){return this.filterWithinSameLiveView(this.all(e,`[${L}="${t}"]`),e)},isPhxDestroyed(e){return!!(e.id&&O.private(e,"destroyed"))},markPhxChildDestroyed(e){this.isPhxChild(e)&&e.setAttribute(W,""),this.putPrivate(e,"destroyed",!0)},findPhxChildrenInFragment(e,t){let i=document.createElement("template");return i.innerHTML=e,this.findPhxChildren(i.content,t)},isIgnored(e,t){return(e.getAttribute(t)||e.getAttribute("data-phx-update"))==="ignore"},isPhxUpdate(e,t,i){return e.getAttribute&&i.indexOf(e.getAttribute(t))>=0},findPhxSticky(e){return this.all(e,`[${vt}]`)},findPhxChildren(e,t){return this.all(e,`${ee}[${Z}="${t}"]`)},findParentCIDs(e,t){let i=new Set(t);return t.reduce((n,s)=>{let r=`[${L}="${s}"] [${L}]`;return this.filterWithinSameLiveView(this.all(e,r),e).map(o=>parseInt(o.getAttribute(L))).forEach(o=>n.delete(o)),n},i)},filterWithinSameLiveView(e,t){return t.querySelector(ee)?e.filter(i=>this.withinSameLiveView(i,t)):e},withinSameLiveView(e,t){for(;e=e.parentNode;){if(e.isSameNode(t))return!0;if(e.getAttribute(W)!==null)return!1}},private(e,t){return e[H]&&e[H][t]},deletePrivate(e,t){e[H]&&delete e[H][t]},putPrivate(e,t,i){e[H]||(e[H]={}),e[H][t]=i},updatePrivate(e,t,i,n){let s=this.private(e,t);s===void 0?this.putPrivate(e,t,n(i)):this.putPrivate(e,t,n(s))},copyPrivates(e,t){t[H]&&(e[H]=t[H])},putTitle(e){let t=document.querySelector("title"),{prefix:i,suffix:n}=t.dataset;document.title=`${i||""}${e}${n||""}`},debounce(e,t,i,n,s,r,o){let a=e.getAttribute(i),h=e.getAttribute(s);a===""&&(a=n),h===""&&(h=r);let d=a||h;switch(d){case null:return o();case"blur":this.once(e,"debounce-blur")&&e.addEventListener("blur",()=>o());return;default:let f=parseInt(d),p=()=>h?this.deletePrivate(e,Ce):o(),v=this.incCycle(e,re,p);if(isNaN(f))return _(`invalid throttle/debounce value: ${d}`);if(h){let m=!1;if(t.type==="keydown"){let g=this.private(e,yt);this.putPrivate(e,yt,t.key),m=g!==t.key}if(!m&&this.private(e,Ce))return!1;o(),this.putPrivate(e,Ce,!0),setTimeout(()=>this.triggerCycle(e,re),f)}else setTimeout(()=>this.triggerCycle(e,re,v),f);let u=e.form;u&&this.once(u,"bind-debounce")&&u.addEventListener("submit",()=>{Array.from(new FormData(u).entries(),([m])=>{let g=u.querySelector(`[name="${m}"]`);this.incCycle(g,re),this.deletePrivate(g,Ce)})}),this.once(e,"bind-debounce")&&e.addEventListener("blur",()=>this.triggerCycle(e,re))}},triggerCycle(e,t,i){let[n,s]=this.private(e,t);i||(i=n),i===n&&(this.incCycle(e,t),s())},once(e,t){return this.private(e,t)===!0?!1:(this.putPrivate(e,t,!0),!0)},incCycle(e,t,i=function(){}){let[n]=this.private(e,t)||[0,i];return n++,this.putPrivate(e,t,[n,i]),n},discardError(e,t,i){let n=t.getAttribute&&t.getAttribute(i),s=n&&e.querySelector(`[id="${n}"], [name="${n}"]`);s&&(this.private(s,Ot)||this.private(s.form,Ht)||t.classList.add(gt))},showError(e,t){(e.id||e.name)&&this.all(e.form,`[${t}="${e.id}"], [${t}="${e.name}"]`,i=>{this.removeClass(i,gt)})},isPhxChild(e){return e.getAttribute&&e.getAttribute(Z)},isPhxSticky(e){return e.getAttribute&&e.getAttribute(vt)!==null},firstPhxChild(e){return this.isPhxChild(e)?e:this.all(e,`[${Z}]`)[0]},dispatchEvent(e,t,i={}){let n=new CustomEvent(t,{bubbles:!0,cancelable:!0,detail:i});e.dispatchEvent(n)},cloneNode(e,t){if(typeof t=="undefined")return e.cloneNode(!0);{let i=e.cloneNode(!1);return i.innerHTML=t,i}},mergeAttrs(e,t,i={}){let n=i.exclude||[],s=i.isIgnored,r=t.attributes;for(let a=r.length-1;a>=0;a--){let h=r[a].name;n.indexOf(h)<0&&e.setAttribute(h,t.getAttribute(h))}let o=e.attributes;for(let a=o.length-1;a>=0;a--){let h=o[a].name;s?h.startsWith("data-")&&!t.hasAttribute(h)&&e.removeAttribute(h):t.hasAttribute(h)||e.removeAttribute(h)}},mergeFocusedInput(e,t){e instanceof HTMLSelectElement||O.mergeAttrs(e,t,{except:["value"]}),t.readOnly?e.setAttribute("readonly",!0):e.removeAttribute("readonly")},hasSelectionRange(e){return e.setSelectionRange&&(e.type==="text"||e.type==="textarea")},restoreFocus(e,t,i){if(!O.isTextualInput(e))return;let n=e.matches(":focus");e.readOnly&&e.blur(),n||e.focus(),this.hasSelectionRange(e)&&e.setSelectionRange(t,i)},isFormInput(e){return/^(?:input|select|textarea)$/i.test(e.tagName)&&e.type!=="button"},syncAttrsToProps(e){e instanceof HTMLInputElement&&Nt.indexOf(e.type.toLocaleLowerCase())>=0&&(e.checked=e.getAttribute("checked")!==null)},isTextualInput(e){return ci.indexOf(e.type)>=0},isNowTriggerFormExternal(e,t){return e.getAttribute&&e.getAttribute(t)!==null},syncPendingRef(e,t,i){let n=e.getAttribute(j);if(n===null)return!0;let s=e.getAttribute(G);return O.isFormInput(e)||e.getAttribute(i)!==null?(O.isUploadInput(e)&&O.mergeAttrs(e,t,{isIgnored:!0}),O.putPrivate(e,j,t),!1):(It.forEach(r=>{e.classList.contains(r)&&t.classList.add(r)}),t.setAttribute(j,n),t.setAttribute(G,s),!0)},cleanChildNodes(e,t){if(O.isPhxUpdate(e,t,["append","prepend"])){let i=[];e.childNodes.forEach(n=>{n.id||(n.nodeType===Node.TEXT_NODE&&n.nodeValue.trim()===""||_(`only HTML element tags with an id are allowed inside containers with phx-update. + +removing illegal node: "${(n.outerHTML||n.nodeValue).trim()}" + +`),i.push(n))}),i.forEach(n=>n.remove())}},replaceRootContainer(e,t,i){let n=new Set(["id",W,le,Ze,ce]);if(e.tagName.toLowerCase()===t.toLowerCase())return Array.from(e.attributes).filter(s=>!n.has(s.name.toLowerCase())).forEach(s=>e.removeAttribute(s.name)),Object.keys(i).filter(s=>!n.has(s.toLowerCase())).forEach(s=>e.setAttribute(s,i[s])),e;{let s=document.createElement(t);return Object.keys(i).forEach(r=>s.setAttribute(r,i[r])),n.forEach(r=>s.setAttribute(r,e.getAttribute(r))),s.innerHTML=e.innerHTML,e.replaceWith(s),s}},getSticky(e,t,i){let n=(O.private(e,"sticky")||[]).find(([s])=>t===s);if(n){let[s,r,o]=n;return o}else return typeof i=="function"?i():i},deleteSticky(e,t){this.updatePrivate(e,"sticky",[],i=>i.filter(([n,s])=>n!==t))},putSticky(e,t,i){let n=i(e);this.updatePrivate(e,"sticky",[],s=>{let r=s.findIndex(([o])=>t===o);return r>=0?s[r]=[t,i,n]:s.push([t,i,n]),s})},applyStickyOperations(e){let t=O.private(e,"sticky");t&&t.forEach(([i,n,s])=>this.putSticky(e,i,n))}},l=O,Je=class{static isActive(e,t){let i=t._phxRef===void 0,s=e.getAttribute(ze).split(",").indexOf(C.genFileRef(t))>=0;return t.size>0&&(i||s)}static isPreflighted(e,t){return e.getAttribute(Qe).split(",").indexOf(C.genFileRef(t))>=0&&this.isActive(e,t)}constructor(e,t,i){this.ref=C.genFileRef(t),this.fileEl=e,this.file=t,this.view=i,this.meta=null,this._isCancelled=!1,this._isDone=!1,this._progress=0,this._lastProgressSent=-1,this._onDone=function(){},this._onElUpdated=this.onElUpdated.bind(this),this.fileEl.addEventListener(We,this._onElUpdated)}metadata(){return this.meta}progress(e){this._progress=Math.floor(e),this._progress>this._lastProgressSent&&(this._progress>=100?(this._progress=100,this._lastProgressSent=100,this._isDone=!0,this.view.pushFileProgress(this.fileEl,this.ref,100,()=>{C.untrackFile(this.fileEl,this.file),this._onDone()})):(this._lastProgressSent=this._progress,this.view.pushFileProgress(this.fileEl,this.ref,this._progress)))}cancel(){this._isCancelled=!0,this._isDone=!0,this._onDone()}isDone(){return this._isDone}error(e="failed"){this.view.pushFileProgress(this.fileEl,this.ref,{error:e}),C.clearFiles(this.fileEl)}onDone(e){this._onDone=()=>{this.fileEl.removeEventListener(We,this._onElUpdated),e()}}onElUpdated(){this.fileEl.getAttribute(ze).split(",").indexOf(this.ref)===-1&&this.cancel()}toPreflightPayload(){return{last_modified:this.file.lastModified,name:this.file.name,size:this.file.size,type:this.file.type,ref:this.ref}}uploader(e){if(this.meta.uploader){let t=e[this.meta.uploader]||_(`no uploader configured for ${this.meta.uploader}`);return{name:this.meta.uploader,callback:t}}else return{name:"channel",callback:_i}}zipPostFlight(e){this.meta=e.entries[this.ref],this.meta||_(`no preflight upload response returned with ref ${this.ref}`,{input:this.fileEl,response:e})}},Ti=0,C=class{static genFileRef(e){let t=e._phxRef;return t!==void 0?t:(e._phxRef=(Ti++).toString(),e._phxRef)}static getEntryDataURL(e,t,i){let n=this.activeFiles(e).find(s=>this.genFileRef(s)===t);i(URL.createObjectURL(n))}static hasUploadsInProgress(e){let t=0;return l.findUploadInputs(e).forEach(i=>{i.getAttribute(Qe)!==i.getAttribute(li)&&t++}),t>0}static serializeUploads(e){let t=this.activeFiles(e),i={};return t.forEach(n=>{let s={path:e.name},r=e.getAttribute(Y);i[r]=i[r]||[],s.ref=this.genFileRef(n),s.name=n.name||s.ref,s.type=n.type,s.size=n.size,i[r].push(s)}),i}static clearFiles(e){e.value=null,e.removeAttribute(Y),l.putPrivate(e,"files",[])}static untrackFile(e,t){l.putPrivate(e,"files",l.private(e,"files").filter(i=>!Object.is(i,t)))}static trackFiles(e,t){if(e.getAttribute("multiple")!==null){let i=t.filter(n=>!this.activeFiles(e).find(s=>Object.is(s,n)));l.putPrivate(e,"files",this.activeFiles(e).concat(i)),e.value=null}else l.putPrivate(e,"files",t)}static activeFileInputs(e){let t=l.findUploadInputs(e);return Array.from(t).filter(i=>i.files&&this.activeFiles(i).length>0)}static activeFiles(e){return(l.private(e,"files")||[]).filter(t=>Je.isActive(e,t))}static inputsAwaitingPreflight(e){let t=l.findUploadInputs(e);return Array.from(t).filter(i=>this.filesAwaitingPreflight(i).length>0)}static filesAwaitingPreflight(e){return this.activeFiles(e).filter(t=>!Je.isPreflighted(e,t))}constructor(e,t,i){this.view=t,this.onComplete=i,this._entries=Array.from(C.filesAwaitingPreflight(e)||[]).map(n=>new Je(e,n,t)),this.numEntriesInProgress=this._entries.length}entries(){return this._entries}initAdapterUpload(e,t,i){this._entries=this._entries.map(s=>(s.zipPostFlight(e),s.onDone(()=>{this.numEntriesInProgress--,this.numEntriesInProgress===0&&this.onComplete()}),s));let n=this._entries.reduce((s,r)=>{let{name:o,callback:a}=r.uploader(i.uploaders);return s[o]=s[o]||{callback:a,entries:[]},s[o].entries.push(r),s},{});for(let s in n){let{callback:r,entries:o}=n[s];r(o,t,e,i)}}},Pi={LiveFileUpload:{activeRefs(){return this.el.getAttribute(ze)},preflightedRefs(){return this.el.getAttribute(Qe)},mounted(){this.preflightedWas=this.preflightedRefs()},updated(){let e=this.preflightedRefs();this.preflightedWas!==e&&(this.preflightedWas=e,e===""&&this.__view.cancelSubmit(this.el.form)),this.activeRefs()===""&&(this.el.value=null),this.el.dispatchEvent(new CustomEvent(We))}},LiveImgPreview:{mounted(){this.ref=this.el.getAttribute("data-phx-entry-ref"),this.inputEl=document.getElementById(this.el.getAttribute(Y)),C.getEntryDataURL(this.inputEl,this.ref,e=>{this.url=e,this.el.src=e})},destroyed(){URL.revokeObjectURL(this.url)}}},Ri=Pi,Li=class{constructor(e,t,i){let n=new Set,s=new Set([...t.children].map(o=>o.id)),r=[];Array.from(e.children).forEach(o=>{if(o.id&&(n.add(o.id),s.has(o.id))){let a=o.previousElementSibling&&o.previousElementSibling.id;r.push({elementId:o.id,previousElementId:a})}}),this.containerId=t.id,this.updateType=i,this.elementsToModify=r,this.elementIdsToAdd=[...s].filter(o=>!n.has(o))}perform(){let e=l.byId(this.containerId);this.elementsToModify.forEach(t=>{t.previousElementId?F(document.getElementById(t.previousElementId),i=>{F(document.getElementById(t.elementId),n=>{n.previousElementSibling&&n.previousElementSibling.id==i.id||i.insertAdjacentElement("afterend",n)})}):F(document.getElementById(t.elementId),i=>{i.previousElementSibling==null||e.insertAdjacentElement("afterbegin",i)})}),this.updateType=="prepend"&&this.elementIdsToAdd.reverse().forEach(t=>{F(document.getElementById(t),i=>e.insertAdjacentElement("afterbegin",i))})}},Ct=11;function xi(e,t){var i=t.attributes,n,s,r,o,a;if(!(t.nodeType===Ct||e.nodeType===Ct)){for(var h=i.length-1;h>=0;h--)n=i[h],s=n.name,r=n.namespaceURI,o=n.value,r?(s=n.localName||s,a=e.getAttributeNS(r,s),a!==o&&(n.prefix==="xmlns"&&(s=n.name),e.setAttributeNS(r,s,o))):(a=e.getAttribute(s),a!==o&&e.setAttribute(s,o));for(var d=e.attributes,f=d.length-1;f>=0;f--)n=d[f],s=n.name,r=n.namespaceURI,r?(s=n.localName||s,t.hasAttributeNS(r,s)||e.removeAttributeNS(r,s)):t.hasAttribute(s)||e.removeAttribute(s)}}var _e,Ii="http://www.w3.org/1999/xhtml",T=typeof document=="undefined"?void 0:document,Di=!!T&&"content"in T.createElement("template"),Oi=!!T&&T.createRange&&"createContextualFragment"in T.createRange();function Ni(e){var t=T.createElement("template");return t.innerHTML=e,t.content.childNodes[0]}function Hi(e){_e||(_e=T.createRange(),_e.selectNode(T.body));var t=_e.createContextualFragment(e);return t.childNodes[0]}function Mi(e){var t=T.createElement("body");return t.innerHTML=e,t.childNodes[0]}function Ui(e){return e=e.trim(),Di?Ni(e):Oi?Hi(e):Mi(e)}function Te(e,t){var i=e.nodeName,n=t.nodeName,s,r;return i===n?!0:(s=i.charCodeAt(0),r=n.charCodeAt(0),s<=90&&r>=97?i===n.toUpperCase():r<=90&&s>=97?n===i.toUpperCase():!1)}function ji(e,t){return!t||t===Ii?T.createElement(e):T.createElementNS(t,e)}function $i(e,t){for(var i=e.firstChild;i;){var n=i.nextSibling;t.appendChild(i),i=n}return t}function Ve(e,t,i){e[i]!==t[i]&&(e[i]=t[i],e[i]?e.setAttribute(i,""):e.removeAttribute(i))}var _t={OPTION:function(e,t){var i=e.parentNode;if(i){var n=i.nodeName.toUpperCase();n==="OPTGROUP"&&(i=i.parentNode,n=i&&i.nodeName.toUpperCase()),n==="SELECT"&&!i.hasAttribute("multiple")&&(e.hasAttribute("selected")&&!t.selected&&(e.setAttribute("selected","selected"),e.removeAttribute("selected")),i.selectedIndex=-1)}Ve(e,t,"selected")},INPUT:function(e,t){Ve(e,t,"checked"),Ve(e,t,"disabled"),e.value!==t.value&&(e.value=t.value),t.hasAttribute("value")||e.removeAttribute("value")},TEXTAREA:function(e,t){var i=t.value;e.value!==i&&(e.value=i);var n=e.firstChild;if(n){var s=n.nodeValue;if(s==i||!i&&s==e.placeholder)return;n.nodeValue=i}},SELECT:function(e,t){if(!t.hasAttribute("multiple")){for(var i=-1,n=0,s=e.firstChild,r,o;s;)if(o=s.nodeName&&s.nodeName.toUpperCase(),o==="OPTGROUP")r=s,s=r.firstChild;else{if(o==="OPTION"){if(s.hasAttribute("selected")){i=n;break}n++}s=s.nextSibling,!s&&r&&(s=r.nextSibling,r=null)}e.selectedIndex=i}}},ae=1,Fi=11,Tt=3,Pt=8;function K(){}function Bi(e){if(e)return e.getAttribute&&e.getAttribute("id")||e.id}function Ji(e){return function(i,n,s){if(s||(s={}),typeof n=="string")if(i.nodeName==="#document"||i.nodeName==="HTML"||i.nodeName==="BODY"){var r=n;n=T.createElement("html"),n.innerHTML=r}else n=Ui(n);var o=s.getNodeKey||Bi,a=s.onBeforeNodeAdded||K,h=s.onNodeAdded||K,d=s.onBeforeElUpdated||K,f=s.onElUpdated||K,p=s.onBeforeNodeDiscarded||K,v=s.onNodeDiscarded||K,u=s.onBeforeElChildrenUpdated||K,m=s.childrenOnly===!0,g=Object.create(null),E=[];function x(k){E.push(k)}function I(k,y){if(k.nodeType===ae)for(var b=k.firstChild;b;){var S=void 0;y&&(S=o(b))?x(S):(v(b),b.firstChild&&I(b,y)),b=b.nextSibling}}function c(k,y,b){p(k)!==!1&&(y&&y.removeChild(k),v(k),I(k,b))}function A(k){if(k.nodeType===ae||k.nodeType===Fi)for(var y=k.firstChild;y;){var b=o(y);b&&(g[b]=y),A(y),y=y.nextSibling}}A(i);function ue(k){h(k);for(var y=k.firstChild;y;){var b=y.nextSibling,S=o(y);if(S){var D=g[S];D&&Te(y,D)?(y.parentNode.replaceChild(D,y),pe(D,y)):ue(y)}else ue(y);y=b}}function fe(k,y,b){for(;y;){var S=y.nextSibling;(b=o(y))?x(b):c(y,k,!0),y=S}}function pe(k,y,b){var S=o(y);S&&delete g[S],!(!b&&(d(k,y)===!1||(e(k,y),f(k),u(k,y)===!1)))&&(k.nodeName!=="TEXTAREA"?Ft(k,y):_t.TEXTAREA(k,y))}function Ft(k,y){var b=y.firstChild,S=k.firstChild,D,B,Q,me,J;e:for(;b;){for(me=b.nextSibling,D=o(b);S;){if(Q=S.nextSibling,b.isSameNode&&b.isSameNode(S)){b=me,S=Q;continue e}B=o(S);var ve=S.nodeType,V=void 0;if(ve===b.nodeType&&(ve===ae?(D?D!==B&&((J=g[D])?Q===J?V=!1:(k.insertBefore(J,S),B?x(B):c(S,k,!0),S=J):V=!1):B&&(V=!1),V=V!==!1&&Te(S,b),V&&pe(S,b)):(ve===Tt||ve==Pt)&&(V=!0,S.nodeValue!==b.nodeValue&&(S.nodeValue=b.nodeValue))),V){b=me,S=Q;continue e}B?x(B):c(S,k,!0),S=Q}if(D&&(J=g[D])&&Te(J,b))k.appendChild(J),pe(J,b);else{var De=a(b);De!==!1&&(De&&(b=De),b.actualize&&(b=b.actualize(k.ownerDocument||T)),k.appendChild(b),ue(b))}b=me,S=Q}fe(k,S,B);var it=_t[k.nodeName];it&&it(k,y)}var w=i,ge=w.nodeType,tt=n.nodeType;if(!m){if(ge===ae)tt===ae?Te(i,n)||(v(i),w=$i(i,ji(n.nodeName,n.namespaceURI))):w=n;else if(ge===Tt||ge===Pt){if(tt===ge)return w.nodeValue!==n.nodeValue&&(w.nodeValue=n.nodeValue),w;w=n}}if(w===n)v(i);else{if(n.isSameNode&&n.isSameNode(w))return;if(pe(w,n,m),E)for(var xe=0,Bt=E.length;xe{if(i&&i.isSameNode(n)&&l.isFormInput(n))return l.mergeFocusedInput(n,s),!1}})}constructor(e,t,i,n,s){this.view=e,this.liveSocket=e.liveSocket,this.container=t,this.id=i,this.rootID=e.root.id,this.html=n,this.targetCID=s,this.cidPatch=z(this.targetCID),this.callbacks={beforeadded:[],beforeupdated:[],beforephxChildAdded:[],afteradded:[],afterupdated:[],afterdiscarded:[],afterphxChildAdded:[],aftertransitionsDiscarded:[]}}before(e,t){this.callbacks[`before${e}`].push(t)}after(e,t){this.callbacks[`after${e}`].push(t)}trackBefore(e,...t){this.callbacks[`before${e}`].forEach(i=>i(...t))}trackAfter(e,...t){this.callbacks[`after${e}`].forEach(i=>i(...t))}markPrunableContentForRemoval(){l.all(this.container,"[phx-update=append] > *, [phx-update=prepend] > *",e=>{e.setAttribute(ut,"")})}perform(){let{view:e,liveSocket:t,container:i,html:n}=this,s=this.isCIDPatch()?this.targetCIDContainer(n):i;if(this.isCIDPatch()&&!s)return;let r=t.getActiveElement(),{selectionStart:o,selectionEnd:a}=r&&l.hasSelectionRange(r)?r:{},h=t.binding(Ye),d=t.binding(Ke),f=t.binding(Ge),p=t.binding(di),v=t.binding("remove"),u=[],m=[],g=[],E=[],x=null,I=t.time("premorph container prep",()=>this.buildDiffHTML(i,n,h,s));return this.trackBefore("added",i),this.trackBefore("updated",i,i),t.time("morphdom",()=>{Rt(s,I,{childrenOnly:s.getAttribute(L)===null,getNodeKey:c=>l.isPhxDestroyed(c)?null:c.id,onBeforeNodeAdded:c=>(this.trackBefore("added",c),c),onNodeAdded:c=>{c instanceof HTMLImageElement&&c.srcset?c.srcset=c.srcset:c instanceof HTMLVideoElement&&c.autoplay&&c.play(),l.isNowTriggerFormExternal(c,p)&&(x=c),l.discardError(s,c,d),(l.isPhxChild(c)&&e.ownsElement(c)||l.isPhxSticky(c)&&e.ownsElement(c.parentNode))&&this.trackAfter("phxChildAdded",c),u.push(c)},onNodeDiscarded:c=>{(l.isPhxChild(c)||l.isPhxSticky(c))&&t.destroyViewByEl(c),this.trackAfter("discarded",c)},onBeforeNodeDiscarded:c=>c.getAttribute&&c.getAttribute(ut)!==null?!0:c.parentNode!==null&&l.isPhxUpdate(c.parentNode,h,["append","prepend"])&&c.id?!1:c.getAttribute&&c.getAttribute(v)?(E.push(c),!1):!this.skipCIDSibling(c),onElUpdated:c=>{l.isNowTriggerFormExternal(c,p)&&(x=c),m.push(c)},onBeforeElUpdated:(c,A)=>{if(l.cleanChildNodes(A,h),this.skipCIDSibling(A)||l.isPhxSticky(c))return!1;if(l.isIgnored(c,h))return this.trackBefore("updated",c,A),l.mergeAttrs(c,A,{isIgnored:!0}),m.push(c),l.applyStickyOperations(c),!1;if(c.type==="number"&&c.validity&&c.validity.badInput)return!1;if(!l.syncPendingRef(c,A,f))return l.isUploadInput(c)&&(this.trackBefore("updated",c,A),m.push(c)),l.applyStickyOperations(c),!1;if(l.isPhxChild(A)){let fe=c.getAttribute(W);return l.mergeAttrs(c,A,{exclude:[le]}),fe!==""&&c.setAttribute(W,fe),c.setAttribute(ce,this.rootID),l.applyStickyOperations(c),!1}return l.copyPrivates(A,c),l.discardError(s,A,d),r&&c.isSameNode(r)&&l.isFormInput(c)?(this.trackBefore("updated",c,A),l.mergeFocusedInput(c,A),l.syncAttrsToProps(c),m.push(c),l.applyStickyOperations(c),!1):(l.isPhxUpdate(A,h,["append","prepend"])&&g.push(new Li(c,A,A.getAttribute(h))),l.syncAttrsToProps(A),l.applyStickyOperations(A),this.trackBefore("updated",c,A),!0)}})}),t.isDebugEnabled()&&Ei(),g.length>0&&t.time("post-morph append/prepend restoration",()=>{g.forEach(c=>c.perform())}),t.silenceEvents(()=>l.restoreFocus(r,o,a)),l.dispatchEvent(document,"phx:update"),u.forEach(c=>this.trackAfter("added",c)),m.forEach(c=>this.trackAfter("updated",c)),E.length>0&&(t.transitionRemoves(E),t.requestDOMUpdate(()=>{E.forEach(c=>{let A=l.firstPhxChild(c);A&&t.destroyViewByEl(A),c.remove()}),this.trackAfter("transitionsDiscarded",E)})),x&&(t.disconnect(),x.submit()),!0}isCIDPatch(){return this.cidPatch}skipCIDSibling(e){return e.nodeType===Node.ELEMENT_NODE&&e.getAttribute(qe)!==null}targetCIDContainer(e){if(!this.isCIDPatch())return;let[t,...i]=l.findComponentNodeList(this.container,this.targetCID);return i.length===0&&l.childNodeLength(e)===1?t:t&&t.parentNode}buildDiffHTML(e,t,i,n){let s=this.isCIDPatch(),r=s&&n.getAttribute(L)===this.targetCID.toString();if(!s||r)return t;{let o=null,a=document.createElement("template");o=l.cloneNode(n);let[h,...d]=l.findComponentNodeList(o,this.targetCID);return a.innerHTML=t,d.forEach(f=>f.remove()),Array.from(o.childNodes).forEach(f=>{f.id&&f.nodeType===Node.ELEMENT_NODE&&f.getAttribute(L)!==this.targetCID.toString()&&(f.setAttribute(qe,""),f.innerHTML="")}),Array.from(a.content.childNodes).forEach(f=>o.insertBefore(f,h)),h.remove(),o.outerHTML}}},Lt=class{static extract(e){let{[At]:t,[St]:i,[Et]:n}=e;return delete e[At],delete e[St],delete e[Et],{diff:e,title:n,reply:t||null,events:i||[]}}constructor(e,t){this.viewId=e,this.rendered={},this.mergeDiff(t)}parentViewId(){return this.viewId}toString(e){return this.recursiveToString(this.rendered,this.rendered[R],e)}recursiveToString(e,t=e[R],i){i=i?new Set(i):null;let n={buffer:"",components:t,onlyCids:i};return this.toOutputBuffer(e,null,n),n.buffer}componentCIDs(e){return Object.keys(e[R]||{}).map(t=>parseInt(t))}isComponentOnlyDiff(e){return e[R]?Object.keys(e).length===1:!1}getComponent(e,t){return e[R][t]}mergeDiff(e){let t=e[R],i={};if(delete e[R],this.rendered=this.mutableMerge(this.rendered,e),this.rendered[R]=this.rendered[R]||{},t){let n=this.rendered[R];for(let s in t)t[s]=this.cachedFindComponent(s,t[s],n,t,i);for(let s in t)n[s]=t[s];e[R]=t}}cachedFindComponent(e,t,i,n,s){if(s[e])return s[e];{let r,o,a=t[M];if(z(a)){let h;a>0?h=this.cachedFindComponent(a,n[a],i,n,s):h=i[-a],o=h[M],r=this.cloneMerge(h,t),r[M]=o}else r=t[M]!==void 0?t:this.cloneMerge(i[e]||{},t);return s[e]=r,r}}mutableMerge(e,t){return t[M]!==void 0?t:(this.doMutableMerge(e,t),e)}doMutableMerge(e,t){for(let i in t){let n=t[i],s=e[i];oe(n)&&n[M]===void 0&&oe(s)?this.doMutableMerge(s,n):e[i]=n}}cloneMerge(e,t){let i=te(te({},e),t);for(let n in i){let s=t[n],r=e[n];oe(s)&&s[M]===void 0&&oe(r)&&(i[n]=this.cloneMerge(r,s))}return i}componentToString(e){return this.recursiveCIDToString(this.rendered[R],e)}pruneCIDs(e){e.forEach(t=>delete this.rendered[R][t])}get(){return this.rendered}isNewFingerprint(e={}){return!!e[M]}templateStatic(e,t){return typeof e=="number"?t[e]:e}toOutputBuffer(e,t,i){if(e[kt])return this.comprehensionToBuffer(e,t,i);let{[M]:n}=e;n=this.templateStatic(n,t),i.buffer+=n[0];for(let s=1;sp.nodeType===Node.ELEMENT_NODE?p.getAttribute(L)?[d,!0]:(p.setAttribute(L,t),p.id||(p.id=`${this.parentViewId()}-${t}-${v}`),o&&(p.setAttribute(qe,""),p.innerHTML=""),[!0,f]):p.nodeValue.trim()!==""?(_(`only HTML element tags are allowed at the root of components. + +got: "${p.nodeValue.trim()}" + +within: +`,s.innerHTML.trim()),p.replaceWith(this.createSpan(p.nodeValue,t)),[!0,f]):(p.remove(),[d,f]),[!1,!1]);return!a&&!h?(_(`expected at least one HTML element tag inside a component, but the component is empty: +`,s.innerHTML.trim()),this.createSpan("",t).outerHTML):(!a&&h&&_("expected at least one HTML element tag directly inside a component, but only subcomponents were found. A component must render at least one HTML tag directly inside itself.",s.innerHTML.trim()),s.innerHTML)}createSpan(e,t){let i=document.createElement("span");return i.innerText=e,i.setAttribute(L,t),i}},Xi=1,he=class{static makeID(){return Xi++}static elementID(e){return e.phxHookId}constructor(e,t,i){this.__view=e,this.__liveSocket=e.liveSocket,this.__callbacks=i,this.__listeners=new Set,this.__isDisconnected=!1,this.el=t,this.el.phxHookId=this.constructor.makeID();for(let n in this.__callbacks)this[n]=this.__callbacks[n]}__mounted(){this.mounted&&this.mounted()}__updated(){this.updated&&this.updated()}__beforeUpdate(){this.beforeUpdate&&this.beforeUpdate()}__destroyed(){this.destroyed&&this.destroyed()}__reconnected(){this.__isDisconnected&&(this.__isDisconnected=!1,this.reconnected&&this.reconnected())}__disconnected(){this.__isDisconnected=!0,this.disconnected&&this.disconnected()}pushEvent(e,t={},i=function(){}){return this.__view.pushHookEvent(null,e,t,i)}pushEventTo(e,t,i={},n=function(){}){return this.__view.withinTargets(e,(s,r)=>s.pushHookEvent(r,t,i,n))}handleEvent(e,t){let i=(n,s)=>s?e:t(n.detail);return window.addEventListener(`phx:${e}`,i),this.__listeners.add(i),i}removeHandleEvent(e){let t=e(null,!0);window.removeEventListener(`phx:${t}`,e),this.__listeners.delete(e)}upload(e,t){return this.__view.dispatchUploads(e,t)}uploadTo(e,t,i){return this.__view.withinTargets(e,n=>n.dispatchUploads(t,i))}__cleanup__(){this.__listeners.forEach(e=>this.removeHandleEvent(e))}},zi={exec(e,t,i,n,s){let[r,o]=s||[null,{}];(t.charAt(0)==="["?JSON.parse(t):[[r,o]]).forEach(([h,d])=>{h===r&&o.data&&(d.data=Object.assign(d.data||{},o.data)),this.filterToEls(n,d).forEach(f=>{this[`exec_${h}`](e,t,i,n,f,d)})})},isVisible(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length>0)},exec_dispatch(e,t,i,n,s,{to:r,event:o,detail:a}){l.dispatchEvent(s,o,a)},exec_push(e,t,i,n,s,r){let{event:o,data:a,target:h,page_loading:d,loading:f,value:p}=r,v={loading:f,value:p,target:h,page_loading:!!d},u=e==="change"?n.form:n,m=h||u.getAttribute(i.binding("target"))||u;i.withinTargets(m,(g,E)=>{if(e==="change"){let{newCid:x,_target:I,callback:c}=r;I&&(v._target=I),g.pushInput(n,E,x,o||t,v,c)}else e==="submit"?g.submitForm(n,E,o||t,v):g.pushEvent(e,n,E,o||t,a,v)})},exec_add_class(e,t,i,n,s,{names:r,transition:o,time:a}){this.addOrRemoveClasses(s,r,[],o,a,i)},exec_remove_class(e,t,i,n,s,{names:r,transition:o,time:a}){this.addOrRemoveClasses(s,[],r,o,a,i)},exec_transition(e,t,i,n,s,{time:r,transition:o}){let[a,h,d]=o,f=()=>this.addOrRemoveClasses(s,a.concat(h),[]),p=()=>this.addOrRemoveClasses(s,d,a.concat(h));i.transition(r,f,p)},exec_toggle(e,t,i,n,s,{display:r,ins:o,outs:a,time:h}){this.toggle(e,i,s,r,o,a,h)},exec_show(e,t,i,n,s,{display:r,transition:o,time:a}){this.show(e,i,s,r,o,a)},exec_hide(e,t,i,n,s,{display:r,transition:o,time:a}){this.hide(e,i,s,r,o,a)},exec_set_attr(e,t,i,n,s,{attr:[r,o]}){this.setOrRemoveAttrs(s,[[r,o]],[])},exec_remove_attr(e,t,i,n,s,{attr:r}){this.setOrRemoveAttrs(s,[],[r])},show(e,t,i,n,s,r){this.isVisible(i)||this.toggle(e,t,i,n,s,null,r)},hide(e,t,i,n,s,r){this.isVisible(i)&&this.toggle(e,t,i,n,null,s,r)},toggle(e,t,i,n,s,r,o){let[a,h,d]=s||[[],[],[]],[f,p,v]=r||[[],[],[]];if(a.length>0||f.length>0)if(this.isVisible(i)){let u=()=>{this.addOrRemoveClasses(i,p,a.concat(h).concat(d)),window.requestAnimationFrame(()=>{this.addOrRemoveClasses(i,f,[]),window.requestAnimationFrame(()=>this.addOrRemoveClasses(i,v,p))})};i.dispatchEvent(new Event("phx:hide-start")),t.transition(o,u,()=>{this.addOrRemoveClasses(i,[],f.concat(v)),l.putSticky(i,"toggle",m=>m.style.display="none"),i.dispatchEvent(new Event("phx:hide-end"))})}else{if(e==="remove")return;let u=()=>{this.addOrRemoveClasses(i,h,f.concat(p).concat(v)),l.putSticky(i,"toggle",m=>m.style.display=n||"block"),window.requestAnimationFrame(()=>{this.addOrRemoveClasses(i,a,[]),window.requestAnimationFrame(()=>this.addOrRemoveClasses(i,d,h))})};i.dispatchEvent(new Event("phx:show-start")),t.transition(o,u,()=>{this.addOrRemoveClasses(i,[],a.concat(d)),i.dispatchEvent(new Event("phx:show-end"))})}else this.isVisible(i)?window.requestAnimationFrame(()=>{i.dispatchEvent(new Event("phx:hide-start")),l.putSticky(i,"toggle",u=>u.style.display="none"),i.dispatchEvent(new Event("phx:hide-end"))}):window.requestAnimationFrame(()=>{i.dispatchEvent(new Event("phx:show-start")),l.putSticky(i,"toggle",u=>u.style.display=n||"block"),i.dispatchEvent(new Event("phx:show-end"))})},addOrRemoveClasses(e,t,i,n,s,r){let[o,a,h]=n||[[],[],[]];if(o.length>0){let d=()=>this.addOrRemoveClasses(e,a.concat(o),[]),f=()=>this.addOrRemoveClasses(e,t.concat(h),i.concat(o).concat(a));return r.transition(s,d,f)}window.requestAnimationFrame(()=>{let[d,f]=l.getSticky(e,"classes",[[],[]]),p=t.filter(g=>d.indexOf(g)<0&&!e.classList.contains(g)),v=i.filter(g=>f.indexOf(g)<0&&e.classList.contains(g)),u=d.filter(g=>i.indexOf(g)<0).concat(p),m=f.filter(g=>t.indexOf(g)<0).concat(v);l.putSticky(e,"classes",g=>(g.classList.remove(...m),g.classList.add(...u),[u,m]))})},setOrRemoveAttrs(e,t,i){let[n,s]=l.getSticky(e,"attrs",[[],[]]),r=t.filter(([d,f])=>!this.hasSet(n,d)&&!e.attributes.getNamedItem(d)),o=i.filter(d=>s.indexOf(d)<0&&e.attributes.getNamedItem(d)),a=n.filter(([d,f])=>i.indexOf(d)<0).concat(r),h=s.filter(d=>!this.hasSet(t,d)).concat(o);l.putSticky(e,"attrs",d=>(h.forEach(f=>d.removeAttribute(f)),a.forEach(([f,p])=>d.setAttribute(f,p)),[a,h]))},hasSet(e,t){return e.find(([i,n])=>i===t)},hasAllClasses(e,t){return t.every(i=>e.classList.contains(i))},isToggledOut(e,t){return!this.isVisible(e)||this.hasAllClasses(e,t)},filterToEls(e,{to:t}){return t?l.all(document,t):[e]}},U=zi,Xe=(e,t={})=>{let i=new FormData(e),n=[];i.forEach((r,o,a)=>{r instanceof File&&n.push(o)}),n.forEach(r=>i.delete(r));let s=new URLSearchParams;for(let[r,o]of i.entries())s.append(r,o);for(let r in t)s.append(r,t[r]);return s.toString()},Ut=class{constructor(e,t,i,n){this.liveSocket=t,this.flash=n,this.parent=i,this.root=i?i.root:this,this.el=e,this.id=this.el.id,this.ref=0,this.childJoins=0,this.loaderTimer=null,this.pendingDiffs=[],this.pruningCIDs=[],this.redirect=!1,this.href=null,this.joinCount=this.parent?this.parent.joinCount-1:0,this.joinPending=!0,this.destroyed=!1,this.joinCallback=function(s){s&&s()},this.stopCallback=function(){},this.pendingJoinOps=this.parent?null:[],this.viewHooks={},this.uploaders={},this.formSubmits=[],this.children=this.parent?null:{},this.root.children[this.id]={},this.channel=this.liveSocket.channel(`lv:${this.id}`,()=>({redirect:this.redirect?this.href:void 0,url:this.redirect?void 0:this.href||void 0,params:this.connectParams(),session:this.getSession(),static:this.getStatic(),flash:this.flash})),this.showLoader(this.liveSocket.loaderTimeout),this.bindChannel()}setHref(e){this.href=e}setRedirect(e){this.redirect=!0,this.href=e}isMain(){return this.el.getAttribute(Ze)!==null}connectParams(){let e=this.liveSocket.params(this.el),t=l.all(document,`[${this.binding(ai)}]`).map(i=>i.src||i.href).filter(i=>typeof i=="string");return t.length>0&&(e._track_static=t),e._mounts=this.joinCount,e}isConnected(){return this.channel.canPush()}getSession(){return this.el.getAttribute(W)}getStatic(){let e=this.el.getAttribute(le);return e===""?null:e}destroy(e=function(){}){this.destroyAllChildren(),this.destroyed=!0,delete this.root.children[this.id],this.parent&&delete this.root.children[this.parent.id][this.id],clearTimeout(this.loaderTimer);let t=()=>{e();for(let i in this.viewHooks)this.destroyHook(this.viewHooks[i])};l.markPhxChildDestroyed(this.el),this.log("destroyed",()=>["the child has been removed from the parent"]),this.channel.leave().receive("ok",t).receive("error",t).receive("timeout",t)}setContainerClasses(...e){this.el.classList.remove(pt,Me,mt),this.el.classList.add(...e)}showLoader(e){if(clearTimeout(this.loaderTimer),e)this.loaderTimer=setTimeout(()=>this.showLoader(),e);else{for(let t in this.viewHooks)this.viewHooks[t].__disconnected();this.setContainerClasses(Me)}}hideLoader(){clearTimeout(this.loaderTimer),this.setContainerClasses(pt)}triggerReconnected(){for(let e in this.viewHooks)this.viewHooks[e].__reconnected()}log(e,t){this.liveSocket.log(this,e,t)}transition(e,t,i=function(){}){this.liveSocket.transition(e,t,i)}withinTargets(e,t){if(e instanceof HTMLElement||e instanceof SVGElement)return this.liveSocket.owner(e,i=>t(i,e));if(z(e))l.findComponentNodeList(this.el,e).length===0?_(`no component found matching phx-target of ${e}`):t(this,parseInt(e));else{let i=Array.from(document.querySelectorAll(e));i.length===0&&_(`nothing found matching the phx-target selector "${e}"`),i.forEach(n=>this.liveSocket.owner(n,s=>t(s,n)))}}applyDiff(e,t,i){this.log(e,()=>["",Re(t)]);let{diff:n,reply:s,events:r,title:o}=Lt.extract(t);return o&&l.putTitle(o),i({diff:n,reply:s,events:r}),s}onJoin(e){let{rendered:t,container:i}=e;if(i){let[n,s]=i;this.el=l.replaceRootContainer(this.el,n,s)}this.childJoins=0,this.joinPending=!0,this.flash=null,X.dropLocal(this.liveSocket.localStorage,window.location.pathname,xt),this.applyDiff("mount",t,({diff:n,events:s})=>{this.rendered=new Lt(this.id,n);let r=this.renderContainer(null,"join");this.dropPendingRefs();let o=this.formsForRecovery(r);this.joinCount++,o.length>0?o.forEach(([a,h,d],f)=>{this.pushFormRecovery(a,d,p=>{f===o.length-1&&this.onJoinComplete(p,r,s)})}):this.onJoinComplete(e,r,s)})}dropPendingRefs(){l.all(document,`[${G}="${this.id}"][${j}]`,e=>{e.removeAttribute(j),e.removeAttribute(G)})}onJoinComplete({live_patch:e},t,i){if(this.joinCount>1||this.parent&&!this.parent.isJoinPending())return this.applyJoinPatch(e,t,i);l.findPhxChildrenInFragment(t,this.id).filter(s=>{let r=s.id&&this.el.querySelector(`[id="${s.id}"]`),o=r&&r.getAttribute(le);return o&&s.setAttribute(le,o),this.joinChild(s)}).length===0?this.parent?(this.root.pendingJoinOps.push([this,()=>this.applyJoinPatch(e,t,i)]),this.parent.ackJoin(this)):(this.onAllChildJoinsComplete(),this.applyJoinPatch(e,t,i)):this.root.pendingJoinOps.push([this,()=>this.applyJoinPatch(e,t,i)])}attachTrueDocEl(){this.el=l.byId(this.id),this.el.setAttribute(ce,this.root.id)}applyJoinPatch(e,t,i){this.attachTrueDocEl();let n=new Pe(this,this.el,this.id,t,null);if(n.markPrunableContentForRemoval(),this.performPatch(n,!1),this.joinNewChildren(),l.all(this.el,`[${this.binding(we)}], [data-phx-${we}]`,s=>{let r=this.addHook(s);r&&r.__mounted()}),this.joinPending=!1,this.liveSocket.dispatchEvents(i),this.applyPendingUpdates(),e){let{kind:s,to:r}=e;this.liveSocket.historyPatch(r,s)}this.hideLoader(),this.joinCount>1&&this.triggerReconnected(),this.stopCallback()}triggerBeforeUpdateHook(e,t){this.liveSocket.triggerDOM("onBeforeElUpdated",[e,t]);let i=this.getHook(e),n=i&&l.isIgnored(e,this.binding(Ye));if(i&&!e.isEqualNode(t)&&!(n&&Ci(e.dataset,t.dataset)))return i.__beforeUpdate(),i}performPatch(e,t){let i=[],n=!1,s=new Set;return e.after("added",r=>{this.liveSocket.triggerDOM("onNodeAdded",[r]);let o=this.addHook(r);o&&o.__mounted()}),e.after("phxChildAdded",r=>{l.isPhxSticky(r)?this.liveSocket.joinRootViews():n=!0}),e.before("updated",(r,o)=>{this.triggerBeforeUpdateHook(r,o)&&s.add(r.id)}),e.after("updated",r=>{s.has(r.id)&&this.getHook(r).__updated()}),e.after("discarded",r=>{r.nodeType===Node.ELEMENT_NODE&&i.push(r)}),e.after("transitionsDiscarded",r=>this.afterElementsRemoved(r,t)),e.perform(),this.afterElementsRemoved(i,t),n}afterElementsRemoved(e,t){let i=[];e.forEach(n=>{l.all(n,`[${L}]`).concat(n).forEach(r=>{let o=this.componentID(r);z(o)&&i.indexOf(o)===-1&&i.push(o);let a=this.getHook(r);a&&this.destroyHook(a)})}),t&&this.maybePushComponentsDestroyed(i)}joinNewChildren(){l.findPhxChildren(this.el,this.id).forEach(e=>this.joinChild(e))}getChildById(e){return this.root.children[this.id][e]}getDescendentByEl(e){return e.id===this.id?this:this.children[e.getAttribute(Z)][e.id]}destroyDescendent(e){for(let t in this.root.children)for(let i in this.root.children[t])if(i===e)return this.root.children[t][i].destroy()}joinChild(e){if(!this.getChildById(e.id)){let i=new Ut(e,this.liveSocket,this);return this.root.children[this.id][i.id]=i,i.join(),this.childJoins++,!0}}isJoinPending(){return this.joinPending}ackJoin(e){this.childJoins--,this.childJoins===0&&(this.parent?this.parent.ackJoin(this):this.onAllChildJoinsComplete())}onAllChildJoinsComplete(){this.joinCallback(()=>{this.pendingJoinOps.forEach(([e,t])=>{e.isDestroyed()||t()}),this.pendingJoinOps=[]})}update(e,t){if(this.isJoinPending()||this.liveSocket.hasPendingLink())return this.pendingDiffs.push({diff:e,events:t});this.rendered.mergeDiff(e);let i=!1;this.rendered.isComponentOnlyDiff(e)?this.liveSocket.time("component patch complete",()=>{l.findParentCIDs(this.el,this.rendered.componentCIDs(e)).forEach(s=>{this.componentPatch(this.rendered.getComponent(e,s),s)&&(i=!0)})}):wt(e)||this.liveSocket.time("full patch complete",()=>{let n=this.renderContainer(e,"update"),s=new Pe(this,this.el,this.id,n,null);i=this.performPatch(s,!0)}),this.liveSocket.dispatchEvents(t),i&&this.joinNewChildren()}renderContainer(e,t){return this.liveSocket.time(`toString diff (${t})`,()=>{let i=this.el.tagName,n=e?this.rendered.componentCIDs(e).concat(this.pruningCIDs):null,s=this.rendered.toString(n);return`<${i}>${s}`})}componentPatch(e,t){if(wt(e))return!1;let i=this.rendered.componentToString(t),n=new Pe(this,this.el,this.id,i,t);return this.performPatch(n,!0)}getHook(e){return this.viewHooks[he.elementID(e)]}addHook(e){if(he.elementID(e)||!e.getAttribute)return;let t=e.getAttribute(`data-phx-${we}`)||e.getAttribute(this.binding(we));if(t&&!this.ownsElement(e))return;let i=this.liveSocket.getHookCallbacks(t);if(i){e.id||_(`no DOM ID for hook "${t}". Hooks require a unique ID on each element.`,e);let n=new he(this,e,i);return this.viewHooks[he.elementID(n.el)]=n,n}else t!==null&&_(`unknown hook found for "${t}"`,e)}destroyHook(e){e.__destroyed(),e.__cleanup__(),delete this.viewHooks[he.elementID(e.el)]}applyPendingUpdates(){this.pendingDiffs.forEach(({diff:e,events:t})=>this.update(e,t)),this.pendingDiffs=[]}onChannel(e,t){this.liveSocket.onChannel(this.channel,e,i=>{this.isJoinPending()?this.root.pendingJoinOps.push([this,()=>t(i)]):this.liveSocket.requestDOMUpdate(()=>t(i))})}bindChannel(){this.liveSocket.onChannel(this.channel,"diff",e=>{this.liveSocket.requestDOMUpdate(()=>{this.applyDiff("update",e,({diff:t,events:i})=>this.update(t,i))})}),this.onChannel("redirect",({to:e,flash:t})=>this.onRedirect({to:e,flash:t})),this.onChannel("live_patch",e=>this.onLivePatch(e)),this.onChannel("live_redirect",e=>this.onLiveRedirect(e)),this.channel.onError(e=>this.onError(e)),this.channel.onClose(e=>this.onClose(e))}destroyAllChildren(){for(let e in this.root.children[this.id])this.getChildById(e).destroy()}onLiveRedirect(e){let{to:t,kind:i,flash:n}=e,s=this.expandURL(t);this.liveSocket.historyRedirect(s,i,n)}onLivePatch(e){let{to:t,kind:i}=e;this.href=this.expandURL(t),this.liveSocket.historyPatch(t,i)}expandURL(e){return e.startsWith("/")?`${window.location.protocol}//${window.location.host}${e}`:e}onRedirect({to:e,flash:t}){this.liveSocket.redirect(e,t)}isDestroyed(){return this.destroyed}join(e){this.isMain()&&(this.stopCallback=this.liveSocket.withPageLoading({to:this.href,kind:"initial"})),this.joinCallback=t=>{t=t||function(){},e?e(this.joinCount,t):t()},this.liveSocket.wrapPush(this,{timeout:!1},()=>this.channel.join().receive("ok",t=>{this.isDestroyed()||this.liveSocket.requestDOMUpdate(()=>this.onJoin(t))}).receive("error",t=>!this.isDestroyed()&&this.onJoinError(t)).receive("timeout",()=>!this.isDestroyed()&&this.onJoinError({reason:"timeout"})))}onJoinError(e){return e.reason==="unauthorized"||e.reason==="stale"?(this.log("error",()=>["unauthorized live_redirect. Falling back to page request",e]),this.onRedirect({to:this.href})):((e.redirect||e.live_redirect)&&(this.joinPending=!1,this.channel.leave()),e.redirect?this.onRedirect(e.redirect):e.live_redirect?this.onLiveRedirect(e.live_redirect):(this.log("error",()=>["unable to join",e]),this.liveSocket.reloadWithJitter(this)))}onClose(e){if(!this.isDestroyed()){if(this.isJoinPending()&&document.visibilityState!=="hidden"||this.liveSocket.hasPendingLink()&&e!=="leave")return this.liveSocket.reloadWithJitter(this);this.destroyAllChildren(),this.liveSocket.dropActiveElement(this),document.activeElement&&document.activeElement.blur(),this.liveSocket.isUnloaded()&&this.showLoader(vi)}}onError(e){this.onClose(e),this.log("error",()=>["view crashed",e]),this.liveSocket.isUnloaded()||this.displayError()}displayError(){this.isMain()&&l.dispatchEvent(window,"phx:page-loading-start",{to:this.href,kind:"error"}),this.showLoader(),this.setContainerClasses(Me,mt)}pushWithReply(e,t,i,n=function(){}){if(!this.isConnected())return;let[s,[r],o]=e?e():[null,[],{}],a=function(){};return(o.page_loading||r&&r.getAttribute(this.binding(ft))!==null)&&(a=this.liveSocket.withPageLoading({kind:"element",target:r})),typeof i.cid!="number"&&delete i.cid,this.liveSocket.wrapPush(this,{timeout:!0},()=>this.channel.push(t,i,yi).receive("ok",h=>{s!==null&&this.undoRefs(s);let d=f=>{h.redirect&&this.onRedirect(h.redirect),h.live_patch&&this.onLivePatch(h.live_patch),h.live_redirect&&this.onLiveRedirect(h.live_redirect),a(),n(h,f)};h.diff?this.liveSocket.requestDOMUpdate(()=>{let f=this.applyDiff("update",h.diff,({diff:p,events:v})=>{this.update(p,v)});d(f)}):d(null)}))}undoRefs(e){l.all(document,`[${G}="${this.id}"][${j}="${e}"]`,t=>{let i=t.getAttribute(Ae);t.removeAttribute(j),t.removeAttribute(G),t.getAttribute(Ue)!==null&&(t.readOnly=!1,t.removeAttribute(Ue)),i!==null&&(t.disabled=i==="true",t.removeAttribute(Ae)),It.forEach(r=>l.removeClass(t,r));let n=t.getAttribute(Ee);n!==null&&(t.innerText=n,t.removeAttribute(Ee));let s=l.private(t,j);if(s){let r=this.triggerBeforeUpdateHook(t,s);Pe.patchEl(t,s,this.liveSocket.getActiveElement()),r&&r.__updated(),l.deletePrivate(t,j)}})}putRef(e,t,i={}){let n=this.ref++,s=this.binding(Ge);return i.loading&&(e=e.concat(l.all(document,i.loading))),e.forEach(r=>{r.classList.add(`phx-${t}-loading`),r.setAttribute(j,n),r.setAttribute(G,this.el.id);let o=r.getAttribute(s);o!==null&&(r.getAttribute(Ee)||r.setAttribute(Ee,r.innerText),o!==""&&(r.innerText=o),r.setAttribute("disabled",""))}),[n,e,i]}componentID(e){let t=e.getAttribute&&e.getAttribute(L);return t?parseInt(t):null}targetComponentID(e,t,i={}){if(z(t))return t;let n=e.getAttribute(this.binding("target"));return z(n)?parseInt(n):t&&(n!==null||i.target)?this.closestComponentID(t):null}closestComponentID(e){return z(e)?e:e?F(e.closest(`[${L}]`),t=>this.ownsElement(t)&&this.componentID(t)):null}pushHookEvent(e,t,i,n){if(!this.isConnected())return this.log("hook",()=>["unable to push hook event. LiveView not connected",t,i]),!1;let[s,r,o]=this.putRef([],"hook");return this.pushWithReply(()=>[s,r,o],"event",{type:"hook",event:t,value:i,cid:this.closestComponentID(e)},(a,h)=>n(h,s)),s}extractMeta(e,t,i){let n=this.binding("value-");for(let s=0;s=0&&!e.checked&&delete t.value),i){t||(t={});for(let s in i)t[s]=i[s]}return t}pushEvent(e,t,i,n,s,r={}){this.pushWithReply(()=>this.putRef([t],e,r),"event",{type:e,event:n,value:this.extractMeta(t,s,r.value),cid:this.targetComponentID(t,i,r)})}pushFileProgress(e,t,i,n=function(){}){this.liveSocket.withinOwners(e.form,(s,r)=>{s.pushWithReply(null,"progress",{event:e.getAttribute(s.binding(gi)),ref:e.getAttribute(Y),entry_ref:t,progress:i,cid:s.targetComponentID(e.form,r)},n)})}pushInput(e,t,i,n,s,r){let o,a=z(i)?i:this.targetComponentID(e.form,t),h=()=>this.putRef([e,e.form],"change",s),d=Xe(e.form,{_target:s._target});l.isUploadInput(e)&&e.files&&e.files.length>0&&C.trackFiles(e,Array.from(e.files)),o=C.serializeUploads(e);let f={type:"form",event:n,value:d,uploads:o,cid:a};this.pushWithReply(h,"event",f,p=>{if(l.showError(e,this.liveSocket.binding(Ke)),l.isUploadInput(e)&&e.getAttribute("data-phx-auto-upload")!==null){if(C.filesAwaitingPreflight(e).length>0){let[v,u]=h();this.uploadFiles(e.form,t,v,a,m=>{r&&r(p),this.triggerAwaitingSubmit(e.form)})}}else r&&r(p)})}triggerAwaitingSubmit(e){let t=this.getScheduledSubmit(e);if(t){let[i,n,s,r]=t;this.cancelSubmit(e),r()}}getScheduledSubmit(e){return this.formSubmits.find(([t,i,n,s])=>t.isSameNode(e))}scheduleSubmit(e,t,i,n){if(this.getScheduledSubmit(e))return!0;this.formSubmits.push([e,t,i,n])}cancelSubmit(e){this.formSubmits=this.formSubmits.filter(([t,i,n])=>t.isSameNode(e)?(this.undoRefs(i),!1):!0)}pushFormSubmit(e,t,i,n,s){let r=p=>!(de(p,`${this.binding(Ye)}=ignore`,p.form)||de(p,"data-phx-update=ignore",p.form)),o=p=>p.hasAttribute(this.binding(Ge)),a=p=>p.tagName=="BUTTON",h=p=>["INPUT","TEXTAREA","SELECT"].includes(p.tagName),d=()=>{let p=Array.from(e.elements),v=p.filter(o),u=p.filter(a).filter(r),m=p.filter(h).filter(r);return u.forEach(g=>{g.setAttribute(Ae,g.disabled),g.disabled=!0}),m.forEach(g=>{g.setAttribute(Ue,g.readOnly),g.readOnly=!0,g.files&&(g.setAttribute(Ae,g.disabled),g.disabled=!0)}),e.setAttribute(this.binding(ft),""),this.putRef([e].concat(v).concat(u).concat(m),"submit",n)},f=this.targetComponentID(e,t);if(C.hasUploadsInProgress(e)){let[p,v]=d(),u=()=>this.pushFormSubmit(e,t,i,n,s);return this.scheduleSubmit(e,p,n,u)}else if(C.inputsAwaitingPreflight(e).length>0){let[p,v]=d(),u=()=>[p,v,n];this.uploadFiles(e,t,p,f,m=>{let g=Xe(e,{});this.pushWithReply(u,"event",{type:"form",event:i,value:g,cid:f},s)})}else{let p=Xe(e);this.pushWithReply(d,"event",{type:"form",event:i,value:p,cid:f},s)}}uploadFiles(e,t,i,n,s){let r=this.joinCount,o=C.activeFileInputs(e),a=o.length;o.forEach(h=>{let d=new C(h,this,()=>{a--,a===0&&s()});this.uploaders[h]=d;let f=d.entries().map(v=>v.toPreflightPayload()),p={ref:h.getAttribute(Y),entries:f,cid:this.targetComponentID(h.form,t)};this.log("upload",()=>["sending preflight request",p]),this.pushWithReply(null,"allow_upload",p,v=>{if(this.log("upload",()=>["got preflight response",v]),v.error){this.undoRefs(i);let[u,m]=v.error;this.log("upload",()=>[`error for entry ${u}`,m])}else{let u=m=>{this.channel.onError(()=>{this.joinCount===r&&m()})};d.initAdapterUpload(v,u,this.liveSocket)}})})}dispatchUploads(e,t){let i=l.findUploadInputs(this.el).filter(n=>n.name===e);i.length===0?_(`no live file inputs found matching the name "${e}"`):i.length>1?_(`duplicate live file inputs found matching the name "${e}"`):l.dispatchEvent(i[0],Dt,{files:t})}pushFormRecovery(e,t,i){this.liveSocket.withinOwners(e,(n,s)=>{let r=e.elements[0],o=e.getAttribute(this.binding(bt))||e.getAttribute(this.binding("change"));U.exec("change",o,n,r,["push",{_target:r.name,newCid:t,callback:i}])})}pushLinkPatch(e,t,i){let n=this.liveSocket.setPendingLink(e),s=t?()=>this.putRef([t],"click"):null,r=()=>this.liveSocket.redirect(window.location.href),o=this.pushWithReply(s,"live_patch",{url:e},a=>{this.liveSocket.requestDOMUpdate(()=>{a.link_redirect?this.liveSocket.replaceMain(e,null,i,n):(this.liveSocket.commitPendingLink(n)&&(this.href=e),this.applyPendingUpdates(),i&&i(n))})});o?o.receive("timeout",r):r()}formsForRecovery(e){if(this.joinCount===0)return[];let t=this.binding("change"),i=document.createElement("template");return i.innerHTML=e,l.all(this.el,`form[${t}]`).filter(n=>n.id&&this.ownsElement(n)).filter(n=>n.elements.length>0).filter(n=>n.getAttribute(this.binding(bt))!=="ignore").map(n=>{let s=i.content.querySelector(`form[id="${n.id}"][${t}="${n.getAttribute(t)}"]`);return s?[n,s,this.targetComponentID(s)]:[n,null,null]}).filter(([n,s,r])=>s)}maybePushComponentsDestroyed(e){let t=e.filter(i=>l.findComponentNodeList(this.el,i).length===0);t.length>0&&(this.pruningCIDs.push(...t),this.pushWithReply(null,"cids_will_destroy",{cids:t},()=>{this.pruningCIDs=this.pruningCIDs.filter(n=>t.indexOf(n)!==-1);let i=t.filter(n=>l.findComponentNodeList(this.el,n).length===0);i.length>0&&this.pushWithReply(null,"cids_destroyed",{cids:i},n=>{this.rendered.pruneCIDs(n.cids)})}))}ownsElement(e){return e.getAttribute(Z)===this.id||F(e.closest(ee),t=>t.id)===this.id}submitForm(e,t,i,n={}){l.putPrivate(e,Ht,!0);let s=this.liveSocket.binding(Ke),r=Array.from(e.elements);this.liveSocket.blurActiveElement(this),this.pushFormSubmit(e,t,i,n,()=>{r.forEach(o=>l.showError(o,s)),this.liveSocket.restorePreviouslyActiveFocus()})}binding(e){return this.liveSocket.binding(e)}},jt=class{constructor(e,t,i={}){if(this.unloaded=!1,!t||t.constructor.name==="Object")throw new Error(` + a phoenix Socket must be provided as the second argument to the LiveSocket constructor. For example: + + import {Socket} from "phoenix" + import {LiveSocket} from "phoenix_live_view" + let liveSocket = new LiveSocket("/live", Socket, {...}) + `);this.socket=new t(e,i),this.bindingPrefix=i.bindingPrefix||bi,this.opts=i,this.params=Be(i.params||{}),this.viewLogger=i.viewLogger,this.metadataCallbacks=i.metadata||{},this.defaults=Object.assign(Re(ki),i.defaults||{}),this.activeElement=null,this.prevActive=null,this.silenced=!1,this.main=null,this.linkRef=1,this.clickRef=1,this.roots={},this.href=window.location.href,this.pendingLink=null,this.currentLocation=Re(window.location),this.hooks=i.hooks||{},this.uploaders=i.uploaders||{},this.loaderTimeout=i.loaderTimeout||mi,this.maxReloads=i.maxReloads||ni,this.reloadJitterMin=i.reloadJitterMin||si,this.reloadJitterMax=i.reloadJitterMax||ri,this.failsafeJitter=i.failsafeJitter||oi,this.localStorage=i.localStorage||window.localStorage,this.sessionStorage=i.sessionStorage||window.sessionStorage,this.boundTopLevelEvents=!1,this.domCallbacks=Object.assign({onNodeAdded:Be(),onBeforeElUpdated:Be()},i.dom||{}),this.transitions=new Wi,window.addEventListener("pagehide",n=>{this.unloaded=!0}),this.socket.onOpen(()=>{this.isUnloaded()&&window.location.reload()})}isProfileEnabled(){return this.sessionStorage.getItem($e)==="true"}isDebugEnabled(){return this.sessionStorage.getItem(je)==="true"}enableDebug(){this.sessionStorage.setItem(je,"true")}enableProfiling(){this.sessionStorage.setItem($e,"true")}disableDebug(){this.sessionStorage.removeItem(je)}disableProfiling(){this.sessionStorage.removeItem($e)}enableLatencySim(e){this.enableDebug(),console.log("latency simulator enabled for the duration of this browser session. Call disableLatencySim() to disable"),this.sessionStorage.setItem(Fe,e)}disableLatencySim(){this.sessionStorage.removeItem(Fe)}getLatencySim(){let e=this.sessionStorage.getItem(Fe);return e?parseInt(e):null}getSocket(){return this.socket}connect(){let e=()=>{this.joinRootViews()&&(this.bindTopLevelEvents(),this.socket.connect())};["complete","loaded","interactive"].indexOf(document.readyState)>=0?e():document.addEventListener("DOMContentLoaded",()=>e())}disconnect(e){this.socket.disconnect(e)}execJS(e,t,i=null){this.owner(e,n=>U.exec(i,t,n,e))}triggerDOM(e,t){this.domCallbacks[e](...t)}time(e,t){if(!this.isProfileEnabled()||!console.time)return t();console.time(e);let i=t();return console.timeEnd(e),i}log(e,t,i){if(this.viewLogger){let[n,s]=i();this.viewLogger(e,t,n,s)}else if(this.isDebugEnabled()){let[n,s]=i();wi(e,t,n,s)}}requestDOMUpdate(e){this.transitions.after(e)}transition(e,t,i=function(){}){this.transitions.addTransition(e,t,i)}onChannel(e,t,i){e.on(t,n=>{let s=this.getLatencySim();s?(console.log(`simulating ${s}ms of latency from server to client`),setTimeout(()=>i(n),s)):i(n)})}wrapPush(e,t,i){let n=this.getLatencySim(),s=e.joinCount;if(!n)return t.timeout?i().receive("timeout",()=>{e.joinCount===s&&!e.isDestroyed()&&this.reloadWithJitter(e,()=>{this.log(e,"timeout",()=>["received timeout while communicating with server. Falling back to hard refresh for recovery"])})}):i();console.log(`simulating ${n}ms of latency from client to server`);let r={receives:[],receive(o,a){this.receives.push([o,a])}};return setTimeout(()=>{e.isDestroyed()||r.receives.reduce((o,[a,h])=>o.receive(a,h),i())},n),r}reloadWithJitter(e,t){e.destroy(),this.disconnect();let i=this.reloadJitterMin,n=this.reloadJitterMax,s=Math.floor(Math.random()*(n-i+1))+i,r=X.updateLocal(this.localStorage,window.location.pathname,xt,0,o=>o+1);t?t():this.log(e,"join",()=>[`encountered ${r} consecutive reloads`]),r>this.maxReloads&&(this.log(e,"join",()=>[`exceeded ${this.maxReloads} consecutive reloads. Entering failsafe mode`]),s=this.failsafeJitter),setTimeout(()=>{this.hasPendingLink()?window.location=this.pendingLink:window.location.reload()},s)}getHookCallbacks(e){return e&&e.startsWith("Phoenix.")?Ri[e.split(".")[1]]:this.hooks[e]}isUnloaded(){return this.unloaded}isConnected(){return this.socket.isConnected()}getBindingPrefix(){return this.bindingPrefix}binding(e){return`${this.getBindingPrefix()}${e}`}channel(e,t){return this.socket.channel(e,t)}joinRootViews(){let e=!1;return l.all(document,`${ee}:not([${Z}])`,t=>{if(!this.getRootById(t.id)){let i=this.newRootView(t);i.setHref(this.getHref()),i.join(),t.getAttribute(Ze)&&(this.main=i)}e=!0}),e}redirect(e,t){this.disconnect(),X.redirect(e,t)}replaceMain(e,t,i=null,n=this.setPendingLink(e)){let s=this.main.el,r=l.cloneNode(s,"");this.main.showLoader(this.loaderTimeout),this.main.destroy(),this.main=this.newRootView(r,t),this.main.setRedirect(e),this.transitionRemoves(),this.main.join((o,a)=>{o===1&&this.commitPendingLink(n)&&this.requestDOMUpdate(()=>{l.findPhxSticky(document).forEach(h=>r.appendChild(h)),s.replaceWith(r),i&&i(),a()})})}transitionRemoves(e){let t=this.binding("remove");e=e||l.all(document,`[${t}]`),e.forEach(i=>{document.body.contains(i)&&this.execJS(i,i.getAttribute(t),"remove")})}isPhxView(e){return e.getAttribute&&e.getAttribute(W)!==null}newRootView(e,t){let i=new Ut(e,this,null,t);return this.roots[i.id]=i,i}owner(e,t){let i=F(e.closest(ee),n=>this.getViewByEl(n))||this.main;i&&t(i)}withinOwners(e,t){this.owner(e,i=>t(i,e))}getViewByEl(e){let t=e.getAttribute(ce);return F(this.getRootById(t),i=>i.getDescendentByEl(e))}getRootById(e){return this.roots[e]}destroyAllViews(){for(let e in this.roots)this.roots[e].destroy(),delete this.roots[e]}destroyViewByEl(e){let t=this.getRootById(e.getAttribute(ce));t&&t.id===e.id?(t.destroy(),delete this.roots[t.id]):t&&t.destroyDescendent(e.id)}setActiveElement(e){if(this.activeElement===e)return;this.activeElement=e;let t=()=>{e===this.activeElement&&(this.activeElement=null),e.removeEventListener("mouseup",this),e.removeEventListener("touchend",this)};e.addEventListener("mouseup",t),e.addEventListener("touchend",t)}getActiveElement(){return document.activeElement===document.body?this.activeElement||document.activeElement:document.activeElement||document.body}dropActiveElement(e){this.prevActive&&e.ownsElement(this.prevActive)&&(this.prevActive=null)}restorePreviouslyActiveFocus(){this.prevActive&&this.prevActive!==document.body&&this.prevActive.focus()}blurActiveElement(){this.prevActive=this.getActiveElement(),this.prevActive!==document.body&&this.prevActive.blur()}bindTopLevelEvents(){this.boundTopLevelEvents||(this.boundTopLevelEvents=!0,this.socket.onClose(e=>{e.code===1e3&&this.main&&this.reloadWithJitter(this.main)}),document.body.addEventListener("click",function(){}),window.addEventListener("pageshow",e=>{e.persisted&&(this.getSocket().disconnect(),this.withPageLoading({to:window.location.href,kind:"redirect"}),window.location.reload())},!0),this.bindNav(),this.bindClicks(),this.bindForms(),this.bind({keyup:"keyup",keydown:"keydown"},(e,t,i,n,s,r)=>{let o=n.getAttribute(this.binding(pi)),a=e.key&&e.key.toLowerCase();if(o&&o.toLowerCase()!==a)return;let h=te({key:e.key},this.eventMeta(t,e,n));U.exec(t,s,i,n,["push",{data:h}])}),this.bind({blur:"focusout",focus:"focusin"},(e,t,i,n,s,r)=>{if(!r){let o=te({key:e.key},this.eventMeta(t,e,n));U.exec(t,s,i,n,["push",{data:o}])}}),this.bind({blur:"blur",focus:"focus"},(e,t,i,n,s,r,o)=>{if(o==="window"){let a=this.eventMeta(t,e,n);U.exec(t,r,i,n,["push",{data:a}])}}),window.addEventListener("dragover",e=>e.preventDefault()),window.addEventListener("drop",e=>{e.preventDefault();let t=F(de(e.target,this.binding(ct)),s=>s.getAttribute(this.binding(ct))),i=t&&document.getElementById(t),n=Array.from(e.dataTransfer.files||[]);!i||i.disabled||n.length===0||!(i.files instanceof FileList)||(C.trackFiles(i,n),i.dispatchEvent(new Event("input",{bubbles:!0})))}),this.on(Dt,e=>{let t=e.target;if(!l.isUploadInput(t))return;let i=Array.from(e.detail.files||[]).filter(n=>n instanceof File||n instanceof Blob);C.trackFiles(t,i),t.dispatchEvent(new Event("input",{bubbles:!0}))}))}eventMeta(e,t,i){let n=this.metadataCallbacks[e];return n?n(t,i):{}}setPendingLink(e){return this.linkRef++,this.pendingLink=e,this.linkRef}commitPendingLink(e){return this.linkRef!==e?!1:(this.href=this.pendingLink,this.pendingLink=null,!0)}getHref(){return this.href}hasPendingLink(){return!!this.pendingLink}bind(e,t){for(let i in e){let n=e[i];this.on(n,s=>{let r=this.binding(i),o=this.binding(`window-${i}`),a=s.target.getAttribute&&s.target.getAttribute(r);a?this.debounce(s.target,s,()=>{this.withinOwners(s.target,h=>{t(s,i,h,s.target,a,null)})}):l.all(document,`[${o}]`,h=>{let d=h.getAttribute(o);this.debounce(h,s,()=>{this.withinOwners(h,f=>{t(s,i,f,h,d,"window")})})})})}}bindClicks(){this.bindClick("click","click",!1),this.bindClick("mousedown","capture-click",!0)}bindClick(e,t,i){let n=this.binding(t);window.addEventListener(e,s=>{if(!this.isConnected())return;this.clickRef++;let r=this.clickRef,o=null;i?o=s.target.matches(`[${n}]`)?s.target:s.target.querySelector(`[${n}]`):(o=de(s.target,n),this.dispatchClickAway(s,r));let a=o&&o.getAttribute(n);a&&(o.getAttribute("href")==="#"&&s.preventDefault(),this.debounce(o,s,()=>{this.withinOwners(o,h=>{U.exec("click",a,h,o,["push",{data:this.eventMeta("click",s,o)}])})}))},i)}dispatchClickAway(e,t){let i=this.binding("click-away"),n=this.binding("click");l.all(document,`[${i}]`,s=>{s.isSameNode(e.target)||s.contains(e.target)||this.withinOwners(e.target,r=>{let o=s.getAttribute(i);if(U.isVisible(s)){let a=e.target.closest(`[${n}]`)||e.target;U.exec("click",o,r,s,["push",{data:this.eventMeta("click",e,e.target)}])}})})}bindNav(){if(!X.canPushState())return;history.scrollRestoration&&(history.scrollRestoration="manual");let e=null;window.addEventListener("scroll",t=>{clearTimeout(e),e=setTimeout(()=>{X.updateCurrentState(i=>Object.assign(i,{scroll:window.scrollY}))},100)}),window.addEventListener("popstate",t=>{if(!this.registerNewLocation(window.location))return;let{type:i,id:n,root:s,scroll:r}=t.state||{},o=window.location.href;this.requestDOMUpdate(()=>{this.main.isConnected()&&i==="patch"&&n===this.main.id?this.main.pushLinkPatch(o,null):this.replaceMain(o,null,()=>{s&&this.replaceRootHistory(),typeof r=="number"&&setTimeout(()=>{window.scrollTo(0,r)},0)})})},!1),window.addEventListener("click",t=>{let i=de(t.target,He),n=i&&i.getAttribute(He),s=t.metaKey||t.ctrlKey||t.button===1;if(!n||!this.isConnected()||!this.main||s)return;let r=i.href,o=i.getAttribute(hi);t.preventDefault(),this.pendingLink!==r&&this.requestDOMUpdate(()=>{if(n==="patch")this.pushHistoryPatch(r,o,i);else if(n==="redirect")this.historyRedirect(r,o);else throw new Error(`expected ${He} to be "patch" or "redirect", got: ${n}`)})},!1)}dispatchEvent(e,t={}){l.dispatchEvent(window,`phx:${e}`,t)}dispatchEvents(e){e.forEach(([t,i])=>this.dispatchEvent(t,i))}withPageLoading(e,t){l.dispatchEvent(window,"phx:page-loading-start",e);let i=()=>l.dispatchEvent(window,"phx:page-loading-stop",e);return t?t(i):i}pushHistoryPatch(e,t,i){this.withPageLoading({to:e,kind:"patch"},n=>{this.main.pushLinkPatch(e,i,s=>{this.historyPatch(e,t,s),n()})})}historyPatch(e,t,i=this.setPendingLink(e)){this.commitPendingLink(i)&&(X.pushState(t,{type:"patch",id:this.main.id},e),this.registerNewLocation(window.location))}historyRedirect(e,t,i){let n=window.scrollY;this.withPageLoading({to:e,kind:"redirect"},s=>{this.replaceMain(e,i,()=>{X.pushState(t,{type:"redirect",id:this.main.id,scroll:n},e),this.registerNewLocation(window.location),s()})})}replaceRootHistory(){X.pushState("replace",{root:!0,type:"patch",id:this.main.id})}registerNewLocation(e){let{pathname:t,search:i}=this.currentLocation;return t+i===e.pathname+e.search?!1:(this.currentLocation=Re(e),!0)}bindForms(){let e=0;this.on("submit",t=>{let i=t.target.getAttribute(this.binding("submit"));i&&(t.preventDefault(),t.target.disabled=!0,this.withinOwners(t.target,n=>{U.exec("submit",i,n,t.target,["push",{}])}))},!1);for(let t of["change","input"])this.on(t,i=>{let n=i.target,s=n.form&&n.form.getAttribute(this.binding("change"));if(!s||n.type==="number"&&n.validity&&n.validity.badInput)return;let r=e;e++;let{at:o,type:a}=l.private(n,"prev-iteration")||{};o===r-1&&t!==a||(l.putPrivate(n,"prev-iteration",{at:r,type:t}),this.debounce(n,i,()=>{this.withinOwners(n.form,h=>{l.putPrivate(n,Ot,!0),l.isTextualInput(n)||this.setActiveElement(n),U.exec("change",s,h,n,["push",{_target:i.target.name}])})}))},!1)}debounce(e,t,i){let n=this.binding(ui),s=this.binding(fi),r=this.defaults.debounce.toString(),o=this.defaults.throttle.toString();l.debounce(e,t,n,r,s,o,i)}silenceEvents(e){this.silenced=!0,e(),this.silenced=!1}on(e,t){window.addEventListener(e,i=>{this.silenced||t(i)})}},Wi=class{constructor(){this.transitions=new Set,this.pendingOps=[],this.reset()}reset(){this.transitions.forEach(e=>{cancelTimeout(e),this.transitions.delete(e)}),this.flushPendingOps()}after(e){this.size()===0?e():this.pushPendingOp(e)}addTransition(e,t,i){t();let n=setTimeout(()=>{this.transitions.delete(n),i(),this.size()===0&&this.flushPendingOps()},e);this.transitions.add(n)}pushPendingOp(e){this.pendingOps.push(e)}size(){return this.transitions.size}flushPendingOps(){this.pendingOps.forEach(e=>e()),this.pendingOps=[]}};var qi=document.querySelector("html").getAttribute("phx-socket")||"/live",Ki=document.querySelector("meta[name='csrf-token']").getAttribute("content"),q={},$t={};q.JsonEditor={mounted(){let e=this.el.getAttribute("data-input-id"),t=this;this.editor=new JSONEditor(this.el,{onChangeText:i=>{let n=document.getElementById(e);try{JSON.parse(i),n.value=i,n.dispatchEvent(new Event("change",{bubbles:!0}))}catch(s){}},onChange:()=>{try{let i=document.getElementById(e);json=t.editor.get(),i.value=JSON.stringify(json),i.dispatchEvent(new Event("change",{bubbles:!0}))}catch(i){}},onModeChange:i=>{t.mode=i},modes:["text","tree"]},JSON.parse(document.getElementById(e).value)),$t[this.el.id]=this.editor}};q.JsonEditorSource={updated(){try{let e=$t[this.el.getAttribute("data-editor-id")];e.getMode()==="tree"?e.update(JSON.parse(this.el.value)):e.get()!==JSON.parse(this.el.value)&&e.setText(this.el.value)}catch(e){}}};q.JsonView={updated(){let e=JSON.parse(this.el.getAttribute("data-json"));this.editor=new JSONEditor(this.el,{mode:"preview"},e)},mounted(){let e=JSON.parse(this.el.getAttribute("data-json"));this.editor=new JSONEditor(this.el,{mode:"preview"},e)}};var Gi=e=>new EasyMDE({element:e,initialValue:e.getAttribute("value")});q.MarkdownEditor={mounted(){let e=this.el.getAttribute("data-target-id"),t=document.getElementById(e),i=Gi(t);i.codemirror.on("change",()=>{t.value=i.value(),t.dispatchEvent(new Event("change",{bubbles:!0}))})}};q.Actor={mounted(){this.handleEvent("set_actor",e=>{document.cookie="actor_resource="+e.resource+";path=/",document.cookie="actor_primary_key="+e.primary_key+";path=/",document.cookie="actor_action="+e.action+";path=/",document.cookie="actor_api="+e.api+";path=/"}),this.handleEvent("clear_actor",()=>{document.cookie="actor_resource=;path=/",document.cookie="actor_primary_key=;path=/",document.cookie="actor_action;path=/",document.cookie="actor_api=;path=/",document.cookie="actor_authorizing=false;path=/",document.cookie="actor_paused=true;path=/"}),this.handleEvent("toggle_authorizing",e=>{document.cookie="actor_authorizing="+e.authorizing+";path=/"}),this.handleEvent("toggle_actor_paused",e=>{document.cookie="actor_paused="+e.actor_paused+";path=/"}),this.pushEvent("set_actor_from_session",{actor_resource:document.cookie.actor_resource,actor_primary_key:document.cookie.actor_primary_key,actor_action:document.cookie.actor_action,actor_api:document.cookie.actor_api,actor_authorizing:document.cookie.actor_authorizing,actor_paused:document.cookie.actor_paused})}};q.Tenant={mounted(){this.handleEvent("set_tenant",e=>{document.cookie="tenant="+e.tenant+";path=/"}),this.handleEvent("clear_tenant",()=>{document.cookie="tenant=;path=/"})}};q.MaintainAttrs={attrs(){return this.el.getAttribute("data-attrs").split(", ")},beforeUpdate(){this.prevAttrs=this.attrs().map(e=>[e,this.el.getAttribute(e)])},updated(){this.prevAttrs.forEach(([e,t])=>this.el.setAttribute(e,t))}};var et=new jt(qi,ht,{params:{_csrf_token:Ki},hooks:q,dom:{onBeforeElUpdated(e,t){e._x_dataStack&&window.Alpine.clone(e,t)}}});Le.default.config({barColors:{0:"#29d"},shadowColor:"rgba(0, 0, 0, .3)"});window.addEventListener("phx:page-loading-start",e=>Le.default.show(300));window.addEventListener("phx:page-loading-stop",e=>Le.default.hide());et.connect()>>et.enableDebug();window.liveSocket=et;})(); +/** + * @license MIT + * topbar 2.0.0, 2023-02-04 + * https://buunguyen.github.io/topbar + * Copyright (c) 2021 Buu Nguyen + */ diff --git a/priv/static/assets/app-c9fc8078e7bd6db471c3dfa3fcebe839.js.gz b/priv/static/assets/app-c9fc8078e7bd6db471c3dfa3fcebe839.js.gz new file mode 100644 index 0000000000000000000000000000000000000000..64af25a846fb4347f0a1fe24a6629ec6a37a11f6 GIT binary patch literal 29338 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