// retoor import "./components/index.js"; import { ModalManager } from "./ModalManager.js"; import { FormManager } from "./FormManager.js"; import { VoteManager } from "./VoteManager.js"; import { NotificationManager } from "./NotificationManager.js"; import { ProfileEditor } from "./ProfileEditor.js"; import { MobileNav } from "./MobileNav.js"; import { CommentManager } from "./CommentManager.js"; import { ContentEnhancer } from "./ContentEnhancer.js"; import { DomUtils } from "./DomUtils.js"; import { PushManager } from "./PushManager.js"; import { CounterManager } from "./CounterManager.js"; import { ReactionBar } from "./ReactionBar.js"; import { BookmarkManager } from "./BookmarkManager.js"; import { PollManager } from "./PollManager.js"; import { ApiKeyManager } from "./ApiKeyManager.js"; import { AvatarRegenerator } from "./AvatarRegenerator.js"; import { CustomizationToggle } from "./CustomizationToggle.js"; import { NotificationPrefs } from "./NotificationPrefs.js"; import { AiCorrection } from "./AiCorrection.js"; import { AiModifier } from "./AiModifier.js"; import { InteractionsPref } from "./InteractionsPref.js"; import { TelegramPairing } from "./TelegramPairing.js"; import { AdminNotificationDefaults } from "./AdminNotificationDefaults.js"; import { UserAiUsage } from "./UserAiUsage.js"; import { Tabs } from "./Tabs.js"; import { DeviiTerminal } from "./DeviiTerminal.js"; import { ZipDownloader } from "./ZipDownloader.js"; import { ProjectForker } from "./ProjectForker.js"; import { IssueReporter } from "./IssueReporter.js"; import { IssueAttachments } from "./IssueAttachments.js"; import { PlanningGenerator } from "./PlanningGenerator.js"; import { MediaGallery } from "./MediaGallery.js"; import { ReportDialog } from "./ReportDialog.js"; import { TermsGate } from "./TermsGate.js"; import WindowManager from "./components/WindowManager.js"; import { ContainerTerminalManager } from "./ContainerTerminalManager.js"; import { PubSubClient } from "./PubSubClient.js"; import { LiveNotifications } from "./LiveNotifications.js"; import { PresenceManager } from "./PresenceManager.js"; import { OnlineUsers } from "./OnlineUsers.js"; import { LocalTime } from "./LocalTime.js"; import { ScrollMemory } from "./ScrollMemory.js"; import { GameFarm } from "./GameFarm.js"; import { Accessibility } from "./Accessibility.js"; import { OverflowTabs } from "./OverflowTabs.js"; import { AiAutoload } from "./autoload/AiAutoload.js"; import "./components/AiInteraction.js"; import "./components/AiStatus.js"; import "./components/AiActions.js"; import "./components/AiHelp.js"; import "./components/AiOption.js"; import "./components/AiConfirm.js"; import "./components/AiChoice.js"; import "./components/AiChoiceMulti.js"; import "./components/AiField.js"; import "./components/AiSelect.js"; import "./components/AiGroup.js"; import "./components/AiMarkdownFallback.js"; class Application { constructor() { this.accessibility = new Accessibility(); this.aiAutoload = new AiAutoload(document); this.aiAutoload.start(); this.dialog = document.createElement("dp-dialog"); this.contextMenu = document.createElement("dp-context-menu"); this.toast = document.createElement("dp-toast"); this.lightbox = document.createElement("dp-lightbox"); document.body.append(this.dialog, this.contextMenu, this.toast, this.lightbox); this.termsGate = new TermsGate(this.dialog); this.modals = new ModalManager(); this.forms = new FormManager(); this.votes = new VoteManager(); this.notifications = new NotificationManager(); this.profile = new ProfileEditor(); this.mobileNav = new MobileNav(); this.comments = new CommentManager(); this.content = new ContentEnhancer(); this.dom = new DomUtils(); this.push = new PushManager(); this.pubsub = new PubSubClient(); this.counters = new CounterManager(this.pubsub); this.reactions = new ReactionBar(); this.bookmarks = new BookmarkManager(); this.polls = new PollManager(); this.apiKey = new ApiKeyManager(); this.avatarRegenerator = new AvatarRegenerator(); this.customizationToggle = new CustomizationToggle(); this.notificationPrefs = new NotificationPrefs(this.pubsub); this.aiCorrection = new AiCorrection(); this.aiModifier = new AiModifier(); this.interactionsPref = new InteractionsPref(); this.telegramPairing = new TelegramPairing(this.pubsub); this.adminNotificationDefaults = new AdminNotificationDefaults(); this.userAiUsage = new UserAiUsage(); this.tabs = new Tabs(); this.windows = new WindowManager(); this.containerTerminals = new ContainerTerminalManager(); this.devii = new DeviiTerminal(); this.zipDownloader = new ZipDownloader(); this.projectForker = new ProjectForker(); this.issueReporter = new IssueReporter(); this.issueAttachments = new IssueAttachments(); this.planningGenerator = new PlanningGenerator(); this.mediaGallery = new MediaGallery(); this.reportDialog = new ReportDialog(); this.liveNotifications = new LiveNotifications(this.pubsub, this.toast); this.presence = new PresenceManager(this.pubsub); this.onlineUsers = new OnlineUsers(this.pubsub); this.localTime = new LocalTime(); this.scrollMemory = new ScrollMemory(); this.gameFarm = new GameFarm(); this.overflowTabs = new OverflowTabs(); } } const app = new Application(); window.app = app; app.containerTerminals.restore();