mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-13 12:34:09 +08:00
125 lines
3.2 KiB
JavaScript
125 lines
3.2 KiB
JavaScript
/*
|
|
|
|
Copyright (c) 2018 - 2022 Michael Mayer <hello@photoprism.app>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
PhotoPrism® is a registered trademark of Michael Mayer. You may use it as required
|
|
to describe our software, run your own server, for educational purposes, but not for
|
|
offering commercial goods, products, or services without prior written permission.
|
|
In other words, please ask.
|
|
|
|
Feel free to send an e-mail to hello@photoprism.app if you have questions,
|
|
want to support our work, or just want to say hello.
|
|
|
|
Additional information can be found in our Developer Guide:
|
|
https://docs.photoprism.app/developer-guide/
|
|
|
|
*/
|
|
|
|
import RestModel from "model/rest";
|
|
import Api from "common/api";
|
|
import { DateTime } from "luxon";
|
|
import { config } from "../session";
|
|
import { $gettext } from "common/vm";
|
|
|
|
export class Label extends RestModel {
|
|
getDefaults() {
|
|
return {
|
|
ID: 0,
|
|
UID: "",
|
|
Slug: "",
|
|
CustomSlug: "",
|
|
Name: "",
|
|
Priority: 0,
|
|
Favorite: false,
|
|
Description: "",
|
|
Notes: "",
|
|
PhotoCount: 0,
|
|
CreatedAt: "",
|
|
UpdatedAt: "",
|
|
DeletedAt: "",
|
|
};
|
|
}
|
|
|
|
route(view) {
|
|
return { name: view, query: { q: "label:" + (this.CustomSlug ? this.CustomSlug : this.Slug) } };
|
|
}
|
|
|
|
classes(selected) {
|
|
let classes = ["is-label", "uid-" + this.UID];
|
|
|
|
if (this.Favorite) classes.push("is-favorite");
|
|
if (selected) classes.push("is-selected");
|
|
|
|
return classes;
|
|
}
|
|
|
|
getEntityName() {
|
|
return this.Slug;
|
|
}
|
|
|
|
getTitle() {
|
|
return this.Name;
|
|
}
|
|
|
|
thumbnailUrl(size) {
|
|
if (this.Thumb) {
|
|
return `${config.contentUri}/t/${this.Thumb}/${config.previewToken()}/${size}`;
|
|
} else if (this.UID) {
|
|
return `${config.contentUri}/labels/${this.UID}/t/${config.previewToken()}/${size}`;
|
|
} else {
|
|
return `${config.contentUri}/svg/label`;
|
|
}
|
|
}
|
|
|
|
getDateString() {
|
|
return DateTime.fromISO(this.CreatedAt).toLocaleString(DateTime.DATETIME_MED);
|
|
}
|
|
|
|
toggleLike() {
|
|
this.Favorite = !this.Favorite;
|
|
|
|
if (this.Favorite) {
|
|
return Api.post(this.getEntityResource() + "/like");
|
|
} else {
|
|
return Api.delete(this.getEntityResource() + "/like");
|
|
}
|
|
}
|
|
|
|
like() {
|
|
this.Favorite = true;
|
|
return Api.post(this.getEntityResource() + "/like");
|
|
}
|
|
|
|
unlike() {
|
|
this.Favorite = false;
|
|
return Api.delete(this.getEntityResource() + "/like");
|
|
}
|
|
|
|
static batchSize() {
|
|
return 24;
|
|
}
|
|
|
|
static getCollectionResource() {
|
|
return "labels";
|
|
}
|
|
|
|
static getModelName() {
|
|
return $gettext("Label");
|
|
}
|
|
}
|
|
|
|
export default Label;
|