- Added the `allowEmailContact` property to the `CardBoxClient` component to display the email contact status. - Added the `allowEmailContact` computed property to the `Person` model to determine if email contact is allowed based on the related datasets. - Preloaded the datasets relation in the `AuthorsController` to access the pivot attributes. - Updated the `Dashboard.vue` to pass the `allowEmailContact` prop to the `CardBoxClient` component. - Updated the `array_contains_types` validation rule to correct the error message for descriptions. - Updated the `FormCheckRadio.vue` to correctly handle the radio button and checkbox components.
98 lines
2.9 KiB
TypeScript
98 lines
2.9 KiB
TypeScript
import { column, SnakeCaseNamingStrategy, computed, manyToMany } from '@adonisjs/lucid/orm';
|
|
import { DateTime } from 'luxon';
|
|
import dayjs from 'dayjs';
|
|
import Dataset from './dataset.js';
|
|
import BaseModel from './base_model.js';
|
|
import type { ManyToMany } from '@adonisjs/lucid/types/relations';
|
|
|
|
export default class Person extends BaseModel {
|
|
public static namingStrategy = new SnakeCaseNamingStrategy();
|
|
public static primaryKey = 'id';
|
|
public static table = 'persons';
|
|
public static selfAssignPrimaryKey = false;
|
|
// only the academic_title, email, first_name, identifier_orcid, last_name and name_type attributes are allowed to be mass assigned.
|
|
public static fillable: string[] = ['academic_title', 'email', 'first_name', 'identifier_orcid', 'last_name', 'name_type'];
|
|
|
|
@column({
|
|
isPrimary: true,
|
|
})
|
|
public id: number;
|
|
|
|
@column({ columnName: 'academic_title' })
|
|
public academicTitle: string;
|
|
|
|
@column()
|
|
public email: string;
|
|
|
|
@column({})
|
|
public firstName: string;
|
|
|
|
@column({})
|
|
public lastName: string;
|
|
|
|
@column({})
|
|
public identifierOrcid: string;
|
|
|
|
@column({})
|
|
public status: boolean;
|
|
|
|
@column({})
|
|
public nameType: string;
|
|
|
|
@column.dateTime({
|
|
serialize: (value: Date | null) => {
|
|
return value ? dayjs(value).format('MMMM D YYYY HH:mm a') : value;
|
|
},
|
|
autoCreate: true,
|
|
})
|
|
public createdAt: DateTime;
|
|
|
|
@computed({
|
|
serializeAs: 'name',
|
|
})
|
|
public get fullName() {
|
|
return [this.firstName, this.lastName].filter(Boolean).join(' ');
|
|
}
|
|
|
|
// @computed()
|
|
// public get progress(): number {
|
|
// return 50;
|
|
// }
|
|
|
|
// @computed()
|
|
// public get created_at() {
|
|
// return '2023-03-21 08:45:00';
|
|
// }
|
|
|
|
@computed({
|
|
serializeAs: 'dataset_count',
|
|
})
|
|
public get datasetCount() {
|
|
const stock = this.$extras.datasets_count; //my pivot column name was "stock"
|
|
return Number(stock);
|
|
}
|
|
|
|
@computed()
|
|
public get pivot_contributor_type() {
|
|
const contributor_type = this.$extras.pivot_contributor_type; //my pivot column name was "stock"
|
|
return contributor_type;
|
|
}
|
|
|
|
@computed({ serializeAs: 'allow_email_contact' })
|
|
public get allowEmailContact() {
|
|
// If the datasets relation is missing or empty, return false instead of null.
|
|
if (!this.datasets || this.datasets.length === 0) {
|
|
return false;
|
|
}
|
|
// Otherwise return the pivot attribute from the first related dataset.
|
|
return this.datasets[0].$extras?.pivot_allow_email_contact;
|
|
}
|
|
|
|
@manyToMany(() => Dataset, {
|
|
pivotForeignKey: 'person_id',
|
|
pivotRelatedForeignKey: 'document_id',
|
|
pivotTable: 'link_documents_persons',
|
|
pivotColumns: ['role', 'sort_order', 'allow_email_contact'],
|
|
})
|
|
public datasets: ManyToMany<typeof Dataset>;
|
|
}
|