clean: use camel case for class file
This commit is contained in:
parent
c143d96443
commit
40a9395340
@ -1,4 +1,4 @@
|
|||||||
import { Client } from "./client.js";
|
import { Client } from "./Client.js";
|
||||||
|
|
||||||
class Account
|
class Account
|
||||||
{
|
{
|
@ -1,12 +1,12 @@
|
|||||||
import { Account } from "./account.js";
|
import { Account } from "./Account.js";
|
||||||
import { MatchMaking } from "./matchmaking.js";
|
import { MatchMaking } from "./matchmaking.js";
|
||||||
import { Profiles } from "./profiles.js";
|
import { Profiles } from "./Profiles.js";
|
||||||
import { Channels } from './chat/channels.js';
|
import { Channels } from './chat/Channels.js';
|
||||||
import { MyProfile } from "./MyProfile.js";
|
import { MyProfile } from "./MyProfile.js";
|
||||||
import { navigateTo } from "../index.js";
|
import { navigateTo } from "../index.js";
|
||||||
import { Tourmanents } from "./tournament/tournaments.js";
|
import { Tourmanents } from "./tournament/Tournaments.js";
|
||||||
import {Notice} from "./chat/notice.js";
|
import {Notice} from "./chat/Notice.js";
|
||||||
import { Channel } from "./chat/channel.js";
|
import { Channel } from "./chat/Channel.js";
|
||||||
import LanguageManager from './LanguageManager.js';
|
import LanguageManager from './LanguageManager.js';
|
||||||
|
|
||||||
function getCookie(name)
|
function getCookie(name)
|
@ -1,5 +1,5 @@
|
|||||||
import { Client } from "./client.js";
|
import { Client } from "./Client.js";
|
||||||
import { Profile } from "./profile.js";
|
import { Profile } from "./Profile.js";
|
||||||
|
|
||||||
class MyProfile extends Profile
|
class MyProfile extends Profile
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Client } from "./client.js";
|
import { Client } from "./Client.js";
|
||||||
|
|
||||||
class Profile
|
class Profile
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
import { Profile } from "./profile.js";
|
import { Profile } from "./Profile.js";
|
||||||
|
|
||||||
class Profiles
|
class Profiles
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
import {Message} from "./message.js";
|
import {Message} from "./Message.js";
|
||||||
|
|
||||||
class Channel {
|
class Channel {
|
||||||
constructor(client, channel_id, members_id, messages, reload) {
|
constructor(client, channel_id, members_id, messages, reload) {
|
@ -1,4 +1,4 @@
|
|||||||
import {Channel} from "./channel.js";
|
import {Channel} from "./Channel.js";
|
||||||
|
|
||||||
class Channels {
|
class Channels {
|
||||||
constructor(client) {
|
constructor(client) {
|
@ -4,7 +4,7 @@ import { GameConfig } from "./GameConfig.js";
|
|||||||
import { Player } from "./Player.js";
|
import { Player } from "./Player.js";
|
||||||
import { Time } from "./Time.js";
|
import { Time } from "./Time.js";
|
||||||
import { Wall } from "./Wall.js";
|
import { Wall } from "./Wall.js";
|
||||||
import { Client } from "../client.js";
|
import { Client } from "../Client.js";
|
||||||
|
|
||||||
class Game
|
class Game
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Player } from "./Player.js";
|
import { Player } from "./Player.js";
|
||||||
import { Client } from "../client.js";
|
import { Client } from "../Client.js";
|
||||||
import { Game } from "./Game.js";
|
import { Game } from "./Game.js";
|
||||||
import { Segment } from "./Segment.js";
|
import { Segment } from "./Segment.js";
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Client } from "./client.js";
|
import { Client } from "./Client.js";
|
||||||
|
|
||||||
class MatchMaking
|
class MatchMaking
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Client } from "../client.js";
|
import { Client } from "../Client.js";
|
||||||
|
|
||||||
class Tourmanent
|
class Tourmanent
|
||||||
{
|
{
|
@ -1,5 +1,5 @@
|
|||||||
import { Client } from "../client.js";
|
import { Client } from "../Client.js";
|
||||||
import { Tourmanent } from "./tournament.js";
|
import { Tourmanent } from "./Tournament.js";
|
||||||
|
|
||||||
class Tourmanents
|
class Tourmanents
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
import { Client } from "./api/client.js";
|
import { Client } from "./api/Client.js";
|
||||||
|
|
||||||
import Dashboard from "./views/Dashboard.js";
|
import Dashboard from "./views/Dashboard.js";
|
||||||
import Search from "./views/Search.js";
|
import Search from "./views/Search.js";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import AbstractView from "./abstracts/AbstractView.js";
|
import AbstractView from "./abstracts/AbstractView.js";
|
||||||
import { client, lang } from "../index.js";
|
import { client, lang } from "../index.js";
|
||||||
import {Message} from "../api/chat/message.js";
|
import {Message} from "../api/chat/Message.js";
|
||||||
|
|
||||||
export default class extends AbstractView {
|
export default class extends AbstractView {
|
||||||
constructor(params) {
|
constructor(params) {
|
||||||
|
Loading…
Reference in New Issue
Block a user