style: lint and prettier

This commit is contained in:
Northword 2023-04-30 14:11:44 +08:00
parent 67f2dcb7fc
commit 5852ecfc9f
7 changed files with 72 additions and 80 deletions

10
.vscode/launch.json vendored
View File

@ -9,20 +9,14 @@
"request": "launch",
"name": "Restart",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"restart"
],
"runtimeArgs": ["run", "restart"]
},
{
"type": "node",
"request": "launch",
"name": "Restart in Prod Mode",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"restart-prod"
],
"runtimeArgs": ["run", "restart-prod"]
}
]
}

View File

@ -21,7 +21,7 @@ class Addon {
// Lifecycle hooks
public hooks: typeof hooks;
// APIs
public api: {};
public api: object;
constructor() {
this.data = {

View File

@ -8,10 +8,7 @@ export function initLocale() {
};
}
export function getString(
localString: string,
noReload: boolean = false
): string {
export function getString(localString: string, noReload = false): string {
try {
return addon.data.locale?.stringBundle.GetStringFromName(localString);
} catch (e) {

View File

@ -46,7 +46,8 @@ async function updatePrefsUI() {
// with addon.data.prefs.window.document
// Or bind some events to the elements
const renderLock = ztoolkit.getGlobal("Zotero").Promise.defer();
const tableHelper = new ztoolkit.VirtualizedTable(addon.data.prefs?.window!)
if (addon.data.prefs?.window == undefined) return;
const tableHelper = new ztoolkit.VirtualizedTable(addon.data.prefs?.window)
.setContainerId(`${config.addonRef}-table-container`)
.setProp({
id: `${config.addonRef}-prefs-table`,
@ -122,7 +123,7 @@ function bindPrefEvents() {
});
addon.data
.prefs!!.window.document.querySelector(
.prefs!.window.document.querySelector(
`#zotero-prefpane-${config.addonRef}-input`
)
?.addEventListener("change", (e) => {