228 lines
7.8 KiB
JavaScript
228 lines
7.8 KiB
JavaScript
import ArtImage from './artImage';
|
|
import { artStatus } from './artEnum';
|
|
import { EditTask, Query, QueryTask } from './artUtil';
|
|
import { artApi } from './artApi';
|
|
import ArtRepairFile from './artRepairFile';
|
|
import ConditionReport from './conditionReport';
|
|
import ArtCategory from './artCategory';
|
|
import { formatterMillisecond } from './utils/date';
|
|
|
|
class CellsysArt {
|
|
constructor(params = {}) {
|
|
this.id = params.id;
|
|
this.oldName = params.old_name; //不带书名号
|
|
this.recordNumber = params.record_number;
|
|
this.artworkName = params.artwork_name;
|
|
this.author = params.author;
|
|
this.createPeriod = params.create_period || '未知';
|
|
this.actualNumber = params.actual_number || 1;
|
|
this.textureId = params.texture_id; //材质id
|
|
this.textureName = params.texture_name; //材质名称
|
|
this.countryId = params.country_id;
|
|
this.countryName = params.country_name;
|
|
this.length = params.length;
|
|
this.width = params.width;
|
|
this.height = params.height;
|
|
this.categoryOne = params.category_one;
|
|
this.categoryOneName = params.category_one_name;
|
|
this.categoryTwo = params.category_two;
|
|
this.categoryTwoName = params.category_two_name;
|
|
this.categoryThree = params.category_three;
|
|
this.categoryThreeName = params.category_three_name;
|
|
this.originalRegistrationNumber = params.original_registration_number;
|
|
this.remark = params.remark;
|
|
this.creator = params.creator;
|
|
this.createTime = params.create_time;
|
|
this.updater = params.updater;
|
|
this.updateTime = params.update_time;
|
|
this.status = params.status;
|
|
this.artworkImages = [];
|
|
if (params.images) {
|
|
this.artworkImages = params.images.map((url) => {
|
|
return new ArtImage(url);
|
|
});
|
|
}
|
|
this.tags = [];
|
|
if (params.tag_name) {
|
|
this.tags = params.tag_name.map((name) => {
|
|
return { name: name };
|
|
});
|
|
}
|
|
this.materialIds = params.material_ids; //材料Id数组
|
|
this.geometry = params.geometry; //当前位置
|
|
}
|
|
get oldNameFormat() {
|
|
//带书名号
|
|
return `《${this.oldName}》`;
|
|
}
|
|
//封面图
|
|
get coverImageUrl() {
|
|
if (this.artworkImages.length > 0) {
|
|
return this.artworkImages[0].compressionUrl;
|
|
}
|
|
}
|
|
|
|
get statusMsg() {
|
|
return artStatus[this.status];
|
|
}
|
|
|
|
get artworkImagesUrl() {
|
|
if (this.artworkImages.length > 0) {
|
|
return this.artworkImages.map((artImage) => {
|
|
return artImage.url;
|
|
});
|
|
}
|
|
}
|
|
|
|
get statusMsg() {
|
|
return artStatus[this.status];
|
|
}
|
|
get createTimeFormat() {
|
|
return formatterMillisecond(this.createTime);
|
|
}
|
|
get updateTimeFormat() {
|
|
return formatterMillisecond(this.updateTime);
|
|
}
|
|
|
|
//查看艺术品详情
|
|
getDetails() {
|
|
let editTask = new EditTask(artApi.artworkDetails);
|
|
editTask.addParam('_id', this.id);
|
|
return new Promise((resolve, reject) => {
|
|
editTask
|
|
.execute()
|
|
.then((res) => {
|
|
if (res.data) {
|
|
let cellsysArt = new CellsysArt(res.data);
|
|
resolve(cellsysArt);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
//编辑艺术品档案
|
|
updateArtwork(params = {}) {
|
|
let editTask = new EditTask(artApi.artArtworkRecordUpdate);
|
|
editTask.addParam('_id', params.id);
|
|
editTask.addParam('_oldname', params.oldName);
|
|
editTask.addParam('_author', params.author);
|
|
editTask.addParam('_create_period', params.createPeriod);
|
|
editTask.addParam('_length', params.length);
|
|
editTask.addParam('_width', params.width);
|
|
editTask.addParam('_height', params.height);
|
|
if (params.texture) {
|
|
editTask.addParam('_texture', params.texture.dict_code);
|
|
}
|
|
editTask.addParam('_original_registration_number', params.originalRegistrationNumber);
|
|
editTask.addParam('_remark', params.remarks);
|
|
editTask.addParam('_images', params.images);
|
|
return new Promise((resolve, reject) => {
|
|
editTask
|
|
.execute()
|
|
.then((res) => {
|
|
if (res.data) {
|
|
let cellsysArt = new CellsysArt(res.data);
|
|
resolve(cellsysArt);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
//删除艺术品档案
|
|
removeArtwork(params = {}) {
|
|
let editTask = new EditTask(artApi.artArtworkRecordDelete);
|
|
editTask.addParam('_id', this.id);
|
|
editTask.addParam('_password', params.password);
|
|
return new Promise((resolve, reject) => {
|
|
editTask
|
|
.execute()
|
|
.then((res) => {
|
|
resolve(res);
|
|
})
|
|
.catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
//创建修复档案
|
|
createRepairFile(params = {}) {
|
|
let { name, description, conditionCheckId } = params;
|
|
let editTask = new EditTask(artApi.repairRecordInsert);
|
|
editTask.addParam('_artwork_record_id', this.id);
|
|
editTask.addParam('_description', description);
|
|
editTask.addParam('_name', name);
|
|
editTask.addParam('_condition_check_id', conditionCheckId);
|
|
return new Promise((resolve, reject) => {
|
|
editTask
|
|
.execute()
|
|
.then((res) => {
|
|
if (res.data) {
|
|
let artRepairFile = new ArtRepairFile(res.data);
|
|
resolve(artRepairFile);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
//查询修复状况检查记录
|
|
queryConditionRecords(params = {}) {
|
|
let query = new Query();
|
|
query.addFilter('artwork_record_id', '=', this.id); //病害报告模板
|
|
let { filter, pageInfo } = params;
|
|
if (filter) {
|
|
filter.forEach((item) => {
|
|
query.addFilter(item['name'], item['operator'], item['value']);
|
|
});
|
|
}
|
|
let queryTask = new QueryTask(artApi.viewConditionCheck, !!pageInfo);
|
|
return new Promise((resolve, reject) => {
|
|
queryTask
|
|
.execute(query)
|
|
.then((res) => {
|
|
if (pageInfo) {
|
|
if (res.data) {
|
|
res.data = res.data.map((item) => {
|
|
return new ConditionReport(item);
|
|
});
|
|
resolve(res);
|
|
} else {
|
|
reject(new Error('状况检查记录数据格式异常!'));
|
|
}
|
|
} else {
|
|
let resArr = res.map((item) => {
|
|
return new ConditionReport(item);
|
|
});
|
|
resolve(resArr);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
reject(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
//获取艺术品所属类别的病害信息
|
|
queryCategoryDiseases() {
|
|
/* if (!this.categoryTwo) {
|
|
throw new Error('该艺术品没有二级类别,无法获取类别病害信息!');
|
|
}*/
|
|
let artCategory = new ArtCategory({
|
|
id: this.categoryTwo,
|
|
name: this.categoryTwoName,
|
|
});
|
|
return artCategory.queryDisease();
|
|
}
|
|
}
|
|
|
|
export default CellsysArt;
|