Commit remaining pre-existing changes across CMS files

This commit is contained in:
root
2026-06-26 19:39:50 +02:00
parent 5bd7b2333f
commit 6add7cdfb1
23 changed files with 748 additions and 780 deletions
-12
View File
@@ -1,15 +1,3 @@
import _ from "lodash";
window._ = _;
/**
* We'll load the axios HTTP library which allows us to easily issue requests
* to our Laravel back-end. This library automatically handles sending the
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
import axios from "axios";
window.axios = axios;
window.axios.defaults.headers.common["X-Requested-With"] = "XMLHttpRequest";
/**
+2 -8
View File
@@ -1,12 +1,6 @@
import "./bootstrap";
import "./external/flowbite";
import "swiper/css";
import "swiper/css/pagination";
import Alpine from "alpinejs";
import Focus from "@alpinejs/focus";
import ArticleReactions from "./components/ArticleReactions.js";
import ThemeSwitcher from "./components/ThemeSwitcher.js";
@@ -15,8 +9,8 @@ import AtomSliders from "./components/AtomSliders.js";
ThemeSwitcher.init();
ArticleReactions.init();
AtomSliders.init();
Alpine.plugin(Focus);
Alpine.start();
window.Alpine.plugin(window.AlpineFocus);
window.Alpine.start();
console.log(
"%cAtom CMS%c\n\nAtom CMS is a CMS for made for the community to enjoy. You can join our wonderful community at https://discord.gg/rX3aShUHdg\n\n",
+1 -5
View File
@@ -4,13 +4,9 @@
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
import axios from "axios";
import Turbolinks from "turbolinks";
window.axios = axios;
window.axios.defaults.headers.common["X-Requested-With"] = "XMLHttpRequest";
Turbolinks.start();
window.Turbolinks.start();
/**
* Echo exposes an expressive API for subscribing to channels and listening
@@ -1,12 +1,10 @@
import Alpine from "alpinejs";
const ArticleReactions = {
init() {
document.addEventListener("alpine:init", () => this.startComponent());
},
startComponent() {
Alpine.data(
window.Alpine.data(
"reactions",
(myReactions = [], articleReactions = [], url = "") => ({
url,
@@ -1,5 +1,3 @@
import Swiper from "swiper";
const AtomSliders = {
init() {
document.addEventListener("turbolinks:load", () => {
@@ -10,7 +8,7 @@ const AtomSliders = {
initArticleSlider() {
if (!document.querySelector(".article-slider")) return;
new Swiper(".articles-slider", {
new window.Swiper(".articles-slider", {
modules: [],
slidesPerView: 1,
loop: true,
@@ -9,6 +9,13 @@
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
@vite(['resources/themes/' . setting('theme') . '/css/app.css', 'resources/themes/' . setting('theme') . '/js/app.js'], 'build')
<style>
@@ -26,6 +26,13 @@
<script src="{{ config('habbo.cdn.popper_js') }}"></script>
<script src="{{ config('habbo.cdn.tippy_js') }}"></script>
<link rel="stylesheet" href="{{ asset('assets/css/scale.min.css') }}"/>
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
<script src="{{ config('habbo.cdn.turbolinks_js') }}"></script>
@vite(['resources/themes/' . setting('theme', 'atom') . '/css/app.css', 'resources/themes/' . setting('theme', 'atom') . '/js/app.js'], 'build')
@@ -11,6 +11,13 @@
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
@vite(['resources/themes/' . setting('theme') . '/css/app.css', 'resources/themes/' . setting('theme') . '/js/app.js'], 'build')
<style>
@@ -7,8 +7,15 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ setting('hotel_name') }} - {{ __('Maintenance') }}</title>
<link rel="stylesheet" href="https://unpkg.com/flowbite@1.5.1/dist/flowbite.min.css"/>
<script src="https://unpkg.com/flowbite@1.5.1/dist/flowbite.js"></script>
<link rel="stylesheet" href="{{ config('habbo.cdn.flowbite_css', asset('assets/css/flowbite.min.css')) }}" />
<script src="{{ config('habbo.cdn.popper_js') }}"></script>
<script src="{{ config('habbo.cdn.tippy_js') }}"></script>
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
@vite(['resources/themes/' . setting('theme') . '/css/app.css', 'resources/themes/' . setting('theme') . '/js/app.js'], 'build')
+3 -15
View File
@@ -1,27 +1,15 @@
import "./bootstrap";
import "./external/flowbite";
import "swiper/css";
import "swiper/css/navigation";
import "swiper/css/pagination";
import Alpine from "alpinejs";
import Focus from "@alpinejs/focus";
import ArticleReactions from "./components/ArticleReactions.js";
import Swiper from "swiper";
import { Navigation, Pagination } from "swiper/modules";
ArticleReactions.init();
Alpine.plugin(Focus);
Alpine.start();
Swiper.use([Navigation, Pagination]);
window.Alpine.plugin(window.AlpineFocus);
window.Alpine.start();
// Swiper Initialization
document.addEventListener("DOMContentLoaded", function () {
const swiper = new Swiper(".swiper", {
const swiper = new window.Swiper(".swiper", {
// Your Swiper options here
navigation: {
nextEl: ".swiper-button-next",
-3
View File
@@ -4,9 +4,6 @@
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
import axios from "axios";
window.axios = axios;
window.axios.defaults.headers.common["X-Requested-With"] = "XMLHttpRequest";
/**
@@ -1,12 +1,10 @@
import Alpine from "alpinejs";
const ArticleReactions = {
init() {
document.addEventListener("alpine:init", () => this.startComponent());
},
startComponent() {
Alpine.data(
window.Alpine.data(
"reactions",
(myReactions = [], articleReactions = [], url = "") => ({
url,
@@ -9,6 +9,13 @@
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
@vite(['resources/themes/' . setting('theme') . '/css/app.css', 'resources/themes/' . setting('theme') . '/js/app.js'], 'build')
@if(setting('button_enabled') == '1')
@@ -10,6 +10,13 @@
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
@vite(['resources/themes/' . setting('theme', 'dusk') . '/css/app.css', 'resources/themes/' . setting('theme') . '/js/app.js'], 'build')
<style>
@@ -8,8 +8,13 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ setting('hotel_name') }} - {{ __('Maintenance') }}</title>
<link rel="stylesheet" href="https://unpkg.com/flowbite@1.5.1/dist/flowbite.min.css"/>
<script src="https://unpkg.com/flowbite@1.5.1/dist/flowbite.js"></script>
<link rel="stylesheet" href="{{ config('habbo.cdn.flowbite_css', asset('assets/css/flowbite.min.css')) }}" />
<link rel="stylesheet" href="{{ config('habbo.cdn.swiper_css') }}" />
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_js') }}"></script>
<script defer src="{{ config('habbo.cdn.alpine_focus_js') }}"></script>
<script src="{{ config('habbo.cdn.swiper_js') }}"></script>
@vite(['resources/themes/' . setting('theme') . '/css/app.css', 'resources/themes/' . setting('theme') . '/js/app.js'], 'build')
</head>
+3
View File
@@ -25,6 +25,9 @@
<script src="{{ config('habbo.cdn.tippy_js') }}"></script>
<link rel="stylesheet" href="{{ asset('assets/css/scale.min.css') }}"/>
<script src="{{ config('habbo.cdn.lodash_js') }}"></script>
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
@vite(['resources/js/ssr.jsx', 'resources/themes/' . setting('theme', 'atom') . '/css/app.css', 'resources/themes/' . setting('theme', 'atom') . '/js/app.js'], 'build')
<style>
@@ -14,6 +14,9 @@
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">
<script src="{{ config('habbo.cdn.lodash_js') }}"></script>
<script src="{{ config('habbo.cdn.axios_js') }}"></script>
@vite(['resources/css/global.css', 'resources/js/global.js'], 'build')
@stack('scripts')
</head>