Run prettier
authorTim Düsterhus <duesterhus@woltlab.com>
Mon, 2 Nov 2020 10:34:42 +0000 (11:34 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Mon, 2 Nov 2020 10:34:42 +0000 (11:34 +0100)
12 files changed:
wcfsetup/install/files/js/WoltLabSuite/Core/Ajax/Request.js
wcfsetup/install/files/ts/WoltLabSuite/Core/Ajax/Request.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Template.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/ItemList.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/ItemList/Filter.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/ItemList/Static.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/Sortable/List.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/Style/FontAwesome.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/TabMenu/Simple.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/User/Activity/Recent.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Ui/User/Trophy/List.ts
wcfsetup/install/files/ts/WoltLabSuite/Core/Upload.ts

index f4000facd534475f09aa30558d1da9be54c1daa0..7d605c1fc47c35d5b8da1951e6e32054b6c0ff4d 100644 (file)
@@ -293,7 +293,7 @@ define(["require", "exports", "tslib", "./Status", "../Core", "../Dom/Change/Lis
             this._previousXhr = undefined;
             Listener_1.default.trigger();
             // fix anchor tags generated through WCF::getAnchor()
-            document.querySelectorAll("a[href*=\"#\"]").forEach((link) => {
+            document.querySelectorAll('a[href*="#"]').forEach((link) => {
                 let href = link.href;
                 if (href.indexOf("AJAXProxy") !== -1 || href.indexOf("ajax-proxy") !== -1) {
                     href = href.substr(href.indexOf("#"));
index cef45d0f4994c90b6cf3953291756236d681c9d2..23dd37458e094ce814d0b25ffbd12f13b67c583f 100644 (file)
@@ -368,7 +368,7 @@ class AjaxRequest {
     DomChangeListener.trigger();
 
     // fix anchor tags generated through WCF::getAnchor()
-    document.querySelectorAll("a[href*=\"#\"]").forEach((link: HTMLAnchorElement) => {
+    document.querySelectorAll('a[href*="#"]').forEach((link: HTMLAnchorElement) => {
       let href = link.href;
       if (href.indexOf("AJAXProxy") !== -1 || href.indexOf("ajax-proxy") !== -1) {
         href = href.substr(href.indexOf("#"));
index d90ddc6facb424f4e4e614867f02f22de67a8766..b43694b70443498680f088a4f649919c176f5c85 100644 (file)
@@ -72,10 +72,10 @@ class Template {
 Object.defineProperty(Template, "callbacks", {
   enumerable: false,
   configurable: false,
-  get: function() {
+  get: function () {
     throw new Error("WCF.Template.callbacks is no longer supported");
   },
-  set: function(_value) {
+  set: function (_value) {
     throw new Error("WCF.Template.callbacks is no longer supported");
   },
 });
index c80707161a0dfbeb4874087b09fdece2a2ba6a1b..8d3de3b4a380a31e76406dc9a01f8a3fb312ff4c 100644 (file)
@@ -379,7 +379,7 @@ export function init(elementId: string, values: ItemDataOrPlainValue[], opts: Pa
       // value may contain the placeholder `{$objectId}`
       submitFieldName: "",
     },
-    opts
+    opts,
   ) as ItemListOptions;
 
   const form = DomTraverse.parentByTag(element, "FORM") as HTMLFormElement;
index 127ab8ca8e4e4d11fea99afe6e5cb9e348ec061e..539e5e89f02ab1968002d4af42d89d6ff14f46a1 100644 (file)
@@ -49,7 +49,7 @@ class UiItemListFilter {
         enableVisibilityFilter: true,
         filterPosition: "bottom",
       },
-      options
+      options,
     ) as FilterOptions;
 
     if (this._options.filterPosition !== "top") {
index 60521525bf758e45426c33d4e26a768a4f80891e..1b45ab2bded4aceb8bf800e7aee9da8ebf5d8152 100644 (file)
@@ -349,7 +349,7 @@ export function init(elementId: string, values: ItemDataOrPlainValue[], opts: Pa
       // value may contain the placeholder `{$objectId}`
       submitFieldName: "",
     },
-    opts
+    opts,
   ) as ItemListStaticOptions;
 
   const form = DomTraverse.parentByTag(element, "FORM") as HTMLFormElement;
@@ -357,7 +357,7 @@ export function init(elementId: string, values: ItemDataOrPlainValue[], opts: Pa
     if (!options.isCSV) {
       if (!options.submitFieldName.length && typeof options.callbackSubmit !== "function") {
         throw new Error(
-          "Expected a valid function for option 'callbackSubmit', a non-empty value for option 'submitFieldName' or enabling the option 'submitFieldCSV'."
+          "Expected a valid function for option 'callbackSubmit', a non-empty value for option 'submitFieldName' or enabling the option 'submitFieldCSV'.",
         );
       }
 
index 8d9fff06ed1664da5fe0fb7fdc6bdebb624a77b6..974240960fa6c55f4a23a088b54b0d94576bdd47 100644 (file)
@@ -39,7 +39,7 @@ class UiSortableList {
         isSimpleSorting: false,
         additionalParameters: {},
       },
-      opts
+      opts,
     ) as SortableListOptions;
 
     UiScreen.on("screen-sm-md", {
@@ -70,7 +70,7 @@ class UiSortableList {
       this._options.offset,
       options,
       this._options.isSimpleSorting,
-      this._options.additionalParameters
+      this._options.additionalParameters,
     );
   }
 
index 90b937024d012e22d702374e184962550a215e0e..39b0aec32e1af7653a8564fba90e5e3b82a51cb5 100644 (file)
@@ -103,7 +103,7 @@ export function setup(icons: string[]): void {
 export function open(callback: CallbackSelect): void {
   if (!uiStyleFontAwesome) {
     throw new Error(
-      "Missing icon data, please include the template before calling this method using `{include file='fontAwesomeJavaScript'}`."
+      "Missing icon data, please include the template before calling this method using `{include file='fontAwesomeJavaScript'}`.",
     );
   }
 
index de2050810b9ea04ac321ed06e8179b4c7cf39a26..e97fbe7e009db6a95b0d758d540b4410b0d3c233 100644 (file)
@@ -74,10 +74,10 @@ class TabMenuSimple {
       if (this.tabs.has(name)) {
         throw new Error(
           "Tab names must be unique, li[data-name='" +
-          name +
-          "'] (tab menu id: '" +
-          containerId +
-          "') exists more than once.",
+            name +
+            "'] (tab menu id: '" +
+            containerId +
+            "') exists more than once.",
         );
       }
 
@@ -109,7 +109,7 @@ class TabMenuSimple {
     if (this.isLegacy) {
       this.container.dataset.isLegacy = "true";
 
-      this.tabs.forEach(function(tab, name) {
+      this.tabs.forEach(function (tab, name) {
         tab.setAttribute("aria-controls", name);
       });
     }
@@ -183,7 +183,7 @@ class TabMenuSimple {
         }
 
         if (preselect === true) {
-          this.tabs.forEach(function(tab) {
+          this.tabs.forEach(function (tab) {
             if (
               !selectTab &&
               !DomUtil.isHidden(tab) &&
index fbdd53a82f83f76fffe39818c73261897842afcd..41f196f69141eaf9b30f2197affc60113626a3a0 100644 (file)
@@ -74,7 +74,7 @@ class UiUserActivityRecent implements AjaxCallbackObject {
       () => {
         window.location.hash = `#${this.containerId}`;
         window.location.reload();
-      }
+      },
     );
   }
 
index d5c47eb4d00d2461e98265aef15549243b383084..798756f8b92ad54cd2ab5b62509817083cfb4e02 100644 (file)
@@ -18,8 +18,7 @@ import UiPagination from "../../Pagination";
 class CacheData {
   private readonly cache = new Map<number, string>();
 
-  constructor(readonly pageCount: number, readonly title: string) {
-  }
+  constructor(readonly pageCount: number, readonly title: string) {}
 
   has(pageNo: number): boolean {
     return this.cache.has(pageNo);
index abd44db076492429aa6b20c138a7029b074c6a42..26fedee0a9bee29fbf97951bba2adb9f79297fb9 100644 (file)
@@ -70,7 +70,7 @@ abstract class Upload {
         // url for uploading file
         url: `index.php?ajax-upload/&t=${window.SECURITY_TOKEN}`,
       },
-      options
+      options,
     ) as UploadOptions;
 
     this._options.url = Core.convertLegacyUrl(this._options.url);
@@ -207,7 +207,7 @@ abstract class Upload {
     _data: ResponseData,
     _responseText: string,
     _xhr: XMLHttpRequest,
-    _requestOptions: RequestOptions
+    _requestOptions: RequestOptions,
   ): boolean {
     // This should be an abstract method, but cannot be marked as such for backwards compatibility.
 
@@ -266,7 +266,7 @@ abstract class Upload {
     _data: ResponseData,
     _responseText: string,
     _xhr: XMLHttpRequestEventTarget,
-    _requestOptions: RequestOptions
+    _requestOptions: RequestOptions,
   ): void {
     // This should be an abstract method, but cannot be marked as such for backwards compatibility.
   }