forked from inveniosoftware/invenio-vocabularies
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2024 CERN. | ||
# | ||
# Invenio-RDM-Records is free software; you can redistribute it and/or modify | ||
# it under the terms of the MIT License; see LICENSE file for more details. | ||
|
||
|
||
"""Custom fields.""" | ||
from invenio_i18n import lazy_gettext as _ | ||
|
||
from ...contrib.subjects.api import Subject | ||
from ...contrib.subjects.schema import SubjectRelationSchema | ||
from .vocabulary import VocabularyCF | ||
|
||
|
||
class SubjectCF(VocabularyCF): | ||
"""Custom field for subjects.""" | ||
|
||
field_keys = ["id", "subject"] | ||
|
||
def __init__(self, **kwargs): | ||
"""Constructor.""" | ||
super().__init__( | ||
vocabulary_id="subjects", | ||
schema=SubjectRelationSchema, | ||
ui_schema=SubjectRelationSchema, | ||
**kwargs | ||
) | ||
self.pid_field = Subject.pid | ||
|
||
@property | ||
def mapping(self): | ||
"""Return the mapping.""" | ||
_mapping = { | ||
"type": "object", | ||
"properties": { | ||
"@v": {"type": "keyword"}, | ||
"id": {"type": "keyword"}, | ||
"subject": {"type": "keyword"}, | ||
}, | ||
} | ||
|
||
return _mapping | ||
|
||
|
||
SUBJECT_FIELDS_UI = [ | ||
{ | ||
"section": _("Subjects"), | ||
"fields": [ | ||
dict( | ||
field="subjects", | ||
ui_widget="SubjectAutocompleteDropdown", | ||
isGenericVocabulary=False, | ||
props=dict( | ||
label="Keywords and subjects", | ||
icon="tag", | ||
description="The subjects related to the community", | ||
placeholder="Search for a subject by name e.g. Psychology ...", | ||
autocompleteFrom="api/subjects", | ||
noQueryMessage="Search for subjects...", | ||
autocompleteFromAcceptHeader="application/vnd.inveniordm.v1+json", | ||
required=False, | ||
multiple=True, | ||
clearable=True, | ||
allowAdditions=False, | ||
), | ||
) | ||
], | ||
} | ||
] | ||
|
||
|
||
SUBJECT_FIELDS = { | ||
SubjectCF( | ||
name="subjects", | ||
multiple=True, | ||
dump_options=False, | ||
) | ||
} |