From dede5dc1dfb887085f9aa0efdfb4c31ec9fac2ea Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Wed, 27 Nov 2024 14:52:36 +0000 Subject: [PATCH] Format js files --- assets/js/app.js | 8 +++---- assets/tailwind.config.js | 44 +++++++++++++++++++-------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/assets/js/app.js b/assets/js/app.js index 22778a7c..5437a9c5 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -18,18 +18,18 @@ // Include phoenix_html to handle method=PUT/DELETE in forms and buttons. import "phoenix_html" // Establish Phoenix Socket and LiveView configuration. -import {Socket} from "phoenix" -import {LiveSocket} from "phoenix_live_view" +import { Socket } from "phoenix" +import { LiveSocket } from "phoenix_live_view" import topbar from "../vendor/topbar" let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content") let liveSocket = new LiveSocket("/live", Socket, { longPollFallbackMs: 2500, - params: {_csrf_token: csrfToken} + params: { _csrf_token: csrfToken } }) // Show progress bar on live navigation and form submits -topbar.config({barColors: {0: "#FD4F00"}, shadowColor: "rgba(0, 0, 0, .3)"}) +topbar.config({ barColors: { 0: "#FD4F00" }, shadowColor: "rgba(0, 0, 0, .3)" }) window.addEventListener("phx:page-loading-start", _info => topbar.show(300)) window.addEventListener("phx:page-loading-stop", _info => topbar.hide()) window.addEventListener("music_library:clipcopy", (event) => { diff --git a/assets/tailwind.config.js b/assets/tailwind.config.js index eae31325..b8d6465b 100644 --- a/assets/tailwind.config.js +++ b/assets/tailwind.config.js @@ -20,24 +20,24 @@ module.exports = { fontFamily: { sans: ['Inter', ...defaultTheme.fontFamily.sans], }, - animation:{ - 'shake': 'shake 0.82s cubic-bezier(.36,.07,.19,.97) both', + animation: { + 'shake': 'shake 0.82s cubic-bezier(.36,.07,.19,.97) both', }, keyframes: { - 'shake' : { - '10%, 90%': { - transform: 'translate3d(-1px, 0, 0)' - }, - '20%, 80%' : { - transform: 'translate3d(2px, 0, 0)' - }, - '30%, 50%, 70%': { - transform: 'translate3d(-4px, 0, 0)' - }, - '40%, 60%': { - transform: 'translate3d(4px, 0, 0)' - } + 'shake': { + '10%, 90%': { + transform: 'translate3d(-1px, 0, 0)' + }, + '20%, 80%': { + transform: 'translate3d(2px, 0, 0)' + }, + '30%, 50%, 70%': { + transform: 'translate3d(-4px, 0, 0)' + }, + '40%, 60%': { + transform: 'translate3d(4px, 0, 0)' } + } } }, }, @@ -48,14 +48,14 @@ module.exports = { // //
// - plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])), - plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])), - plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])), + plugin(({ addVariant }) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])), + plugin(({ addVariant }) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])), + plugin(({ addVariant }) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])), // Embeds Heroicons (https://heroicons.com) into your app.css bundle // See your `CoreComponents.icon/1` for more information. // - plugin(function({matchComponents, theme}) { + plugin(function ({ matchComponents, theme }) { let iconsDir = path.join(__dirname, "../deps/heroicons/optimized") let values = {} let icons = [ @@ -67,11 +67,11 @@ module.exports = { icons.forEach(([suffix, dir]) => { fs.readdirSync(path.join(iconsDir, dir)).forEach(file => { let name = path.basename(file, ".svg") + suffix - values[name] = {name, fullPath: path.join(iconsDir, dir, file)} + values[name] = { name, fullPath: path.join(iconsDir, dir, file) } }) }) matchComponents({ - "hero": ({name, fullPath}) => { + "hero": ({ name, fullPath }) => { let content = fs.readFileSync(fullPath).toString().replace(/\r?\n|\r/g, "") let size = theme("spacing.6") if (name.endsWith("-mini")) { @@ -91,7 +91,7 @@ module.exports = { "height": size } } - }, {values}) + }, { values }) }) ] }