Frontend: Format code and update package-lock.json

This commit is contained in:
Michael Mayer 2022-06-17 05:20:28 +02:00
parent 580de58346
commit 735136c25c
3 changed files with 69 additions and 47 deletions

View file

@ -2,7 +2,7 @@ module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
es2021: true,
node: true,
mocha: true,
},
@ -39,6 +39,7 @@ module.exports = {
},
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
rules: {

View file

@ -4533,9 +4533,9 @@
}
},
"node_modules/electron-to-chromium": {
"version": "1.4.158",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.158.tgz",
"integrity": "sha512-gppO3/+Y6sP432HtvwvuU8S+YYYLH4PmAYvQwqUtt9HDOmEsBwQfLnK9T8+1NIKwAS1BEygIjTaATC4H5EzvxQ=="
"version": "1.4.160",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.160.tgz",
"integrity": "sha512-O1Z12YfyeX2LXYO7MdHIPazGXzLzQnr1ADW55U2ARQsJBPgfpJz3u+g3Mo2l1wSyfOCdiGqaX9qtV4XKZ0HNRA=="
},
"node_modules/emoji-regex": {
"version": "8.0.0",
@ -11871,9 +11871,9 @@
}
},
"node_modules/uglify-js": {
"version": "3.16.0",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.16.0.tgz",
"integrity": "sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw==",
"version": "3.16.1",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.16.1.tgz",
"integrity": "sha512-X5BGTIDH8U6IQ1TIRP62YC36k+ULAa1d59BxlWvPUJ1NkW5L3FwcGfEzuVvGmhJFBu0YJ5Ge25tmRISqCmLiRQ==",
"optional": true,
"bin": {
"uglifyjs": "bin/uglifyjs"
@ -16172,9 +16172,9 @@
}
},
"electron-to-chromium": {
"version": "1.4.158",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.158.tgz",
"integrity": "sha512-gppO3/+Y6sP432HtvwvuU8S+YYYLH4PmAYvQwqUtt9HDOmEsBwQfLnK9T8+1NIKwAS1BEygIjTaATC4H5EzvxQ=="
"version": "1.4.160",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.160.tgz",
"integrity": "sha512-O1Z12YfyeX2LXYO7MdHIPazGXzLzQnr1ADW55U2ARQsJBPgfpJz3u+g3Mo2l1wSyfOCdiGqaX9qtV4XKZ0HNRA=="
},
"emoji-regex": {
"version": "8.0.0",
@ -21396,9 +21396,9 @@
"integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ=="
},
"uglify-js": {
"version": "3.16.0",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.16.0.tgz",
"integrity": "sha512-FEikl6bR30n0T3amyBh3LoiBdqHRy/f4H80+My34HOesOKyHfOsxAPAxOoqC0JUnC1amnO0IwkYC3sko51caSw==",
"version": "3.16.1",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.16.1.tgz",
"integrity": "sha512-X5BGTIDH8U6IQ1TIRP62YC36k+ULAa1d59BxlWvPUJ1NkW5L3FwcGfEzuVvGmhJFBu0YJ5Ge25tmRISqCmLiRQ==",
"optional": true
},
"uid-safe": {

View file

@ -23,7 +23,7 @@ Additional information can be found in our Developer Guide:
*/
import memoizeOne from 'memoize-one';
import memoizeOne from "memoize-one";
import RestModel from "model/rest";
import File from "model/file";
@ -181,10 +181,18 @@ export class Photo extends RestModel {
}
classes() {
return this.generateClasses(this.isPlayable(), Clipboard.has(this), this.Portrait, this.Favorite, this.Private, this.Files.length > 1)
return this.generateClasses(
this.isPlayable(),
Clipboard.has(this),
this.Portrait,
this.Favorite,
this.Private,
this.Files.length > 1
);
}
generateClasses = memoizeOne((isPlayable, isInClipboard, portrait, favorite, isPrivate, hasMultipleFiles) => {
generateClasses = memoizeOne(
(isPlayable, isInClipboard, portrait, favorite, isPrivate, hasMultipleFiles) => {
let classes = ["is-photo", "uid-" + this.UID, "type-" + this.Type];
if (isPlayable) classes.push("is-playable");
@ -195,7 +203,8 @@ export class Photo extends RestModel {
if (hasMultipleFiles) classes.push("is-stack");
return classes;
})
}
);
localDayString() {
if (!this.TakenAtLocal) {
@ -314,7 +323,7 @@ export class Photo extends RestModel {
generateUtcDate = memoizeOne((takenAt) => {
return DateTime.fromISO(takenAt).toUTC();
})
});
baseName(truncate) {
let result = this.fileBase(this.FileName ? this.FileName : this.mainFile().Name);
@ -373,7 +382,7 @@ export class Photo extends RestModel {
}
return files.some((f) => f.Video);
})
});
videoParams() {
const uri = this.videoUrl();
@ -453,7 +462,7 @@ export class Photo extends RestModel {
}
return file;
})
});
gifFile() {
if (!this.Files) {
@ -474,7 +483,7 @@ export class Photo extends RestModel {
}
mainFile() {
return this.getMainFileFromFiles(this.Files)
return this.getMainFileFromFiles(this.Files);
}
getMainFileFromFiles = memoizeOne((files) => {
@ -489,7 +498,7 @@ export class Photo extends RestModel {
}
return files.find((f) => f.FileType === FormatJpeg);
})
});
jpegFiles() {
if (!this.Files) {
@ -540,7 +549,13 @@ export class Photo extends RestModel {
}
thumbnailUrl(size) {
return this.generateThumbnailUrl(this.mainFileHash(), this.videoFile(), config.contentUri, config.previewToken(), size);
return this.generateThumbnailUrl(
this.mainFileHash(),
this.videoFile(),
config.contentUri,
config.previewToken(),
size
);
}
generateThumbnailUrl = memoizeOne((mainFileHash, videoFile, contentUri, previewToken, size) => {
@ -555,7 +570,7 @@ export class Photo extends RestModel {
}
return `${contentUri}/t/${hash}/${previewToken}/${size}`;
})
});
getDownloadUrl() {
return `${config.apiUri}/dl/${this.mainFileHash()}?t=${config.downloadToken()}`;
@ -642,7 +657,14 @@ export class Photo extends RestModel {
}
getDateString(showTimeZone) {
return this.generateDateString(showTimeZone, this.TakenAt, this.Year, this.Month, this.Day, this.TimeZone);
return this.generateDateString(
showTimeZone,
this.TakenAt,
this.Year,
this.Month,
this.Day,
this.TimeZone
);
}
generateDateString = memoizeOne((showTimeZone, takenAt, year, month, day, timeZone) => {
@ -660,11 +682,11 @@ export class Photo extends RestModel {
}
return this.localDate().toLocaleString(DateTime.DATE_HUGE);
})
});
shortDateString = () => {
return this.generateShortDateString(this.TakenAt, this.Year, this.Month, this.Day)
}
return this.generateShortDateString(this.TakenAt, this.Year, this.Month, this.Day);
};
generateShortDateString = memoizeOne((takenAt, year, month, day) => {
if (!takenAt || year === YearUnknown) {
@ -676,7 +698,7 @@ export class Photo extends RestModel {
}
return this.localDate().toLocaleString(DateTime.DATE_MED);
})
});
hasLocation() {
return this.Lat !== 0 || this.Lng !== 0;
@ -695,8 +717,8 @@ export class Photo extends RestModel {
}
locationInfo = () => {
return this.generateLocationInfo(this.PlaceID, this.Country, this.Place, this.PlaceLabel)
}
return this.generateLocationInfo(this.PlaceID, this.Country, this.Place, this.PlaceLabel);
};
generateLocationInfo = memoizeOne((placeId, countryCode, place, placeLabel) => {
if (placeId === "zz" && countryCode !== "zz") {
@ -710,7 +732,7 @@ export class Photo extends RestModel {
}
return placeLabel ? placeLabel : $gettext("Unknown");
})
});
addSizeInfo(file, info) {
if (!file) {
@ -739,8 +761,8 @@ export class Photo extends RestModel {
getVideoInfo = () => {
let file = this.videoFile() || this.mainFile();
return this.generateVideoInfo(file)
}
return this.generateVideoInfo(file);
};
generateVideoInfo = memoizeOne((file) => {
if (!file) {
@ -749,7 +771,6 @@ export class Photo extends RestModel {
const info = [];
if (file.Duration > 0) {
info.push(Util.duration(file.Duration));
}
@ -765,7 +786,7 @@ export class Photo extends RestModel {
}
return info.join(", ");
})
});
getPhotoInfo = () => {
let file = this.videoFile();
@ -774,7 +795,7 @@ export class Photo extends RestModel {
}
return this.generatePhotoInfo(this.Camera, this.CameraModel, this.CameraMake, file);
}
};
generatePhotoInfo = memoizeOne((camera, cameraModel, cameraMake, file) => {
let info = [];
@ -804,7 +825,7 @@ export class Photo extends RestModel {
}
return info.join(", ");
})
});
getCamera() {
if (this.Camera) {