|
| 1 | +<template> |
| 2 | + <div class="pkpFormField pkpFormField--html"> |
| 3 | + <div class="pkpFormField__heading"> |
| 4 | + <span class="pkpFormFieldLabel"> |
| 5 | + {{ label }} |
| 6 | + </span> |
| 7 | + <tooltip v-if="tooltip" aria-hidden="true" :tooltip="tooltip" label="" /> |
| 8 | + <span v-if="tooltip" class="-screenReader" v-html="tooltip" /> |
| 9 | + <help-button |
| 10 | + v-if="helpTopic" |
| 11 | + :topic="helpTopic" |
| 12 | + :section="helpSection" |
| 13 | + :label="t('help.help')" |
| 14 | + /> |
| 15 | + </div> |
| 16 | + <div |
| 17 | + v-if="!isVerified && hasOrcid" |
| 18 | + class="pkpFormField__description" |
| 19 | + v-html="t('orcid.field.unverified.shouldRequest')" |
| 20 | + /> |
| 21 | + <div> |
| 22 | + <!-- When ORCID is present --> |
| 23 | + <Icon |
| 24 | + v-if="isVerified && hasOrcid" |
| 25 | + :class="'mr-2'" |
| 26 | + :icon="'orcid'" |
| 27 | + :inline="true" |
| 28 | + /> |
| 29 | + <div |
| 30 | + v-if="hasOrcid" |
| 31 | + class="pkpFormField__control pkpFormField__control--html" |
| 32 | + v-html="orcidDisplayValue" |
| 33 | + /> |
| 34 | + <pkp-button |
| 35 | + v-if="hasOrcid" |
| 36 | + class="pkpFormField__control--html__button" |
| 37 | + :is-warnable="true" |
| 38 | + :is-disabled="isButtonDisabled" |
| 39 | + @click="openDeleteDialog" |
| 40 | + > |
| 41 | + {{ t('common.delete') }} |
| 42 | + </pkp-button> |
| 43 | + <!-- When ORCID is absent --> |
| 44 | + <pkp-button |
| 45 | + v-if="!hasOrcid" |
| 46 | + :disabled="verificationRequested || isButtonDisabled" |
| 47 | + :icon="verificationRequested ? 'Complete' : null" |
| 48 | + @click="openSendAuthorEmailDialog" |
| 49 | + > |
| 50 | + {{ |
| 51 | + verificationRequested |
| 52 | + ? t('orcid.field.verification.requested') |
| 53 | + : t('orcid.field.verification.request') |
| 54 | + }} |
| 55 | + </pkp-button> |
| 56 | + </div> |
| 57 | + </div> |
| 58 | +</template> |
| 59 | + |
| 60 | +<script> |
| 61 | +import FieldBase from '@/components/Form/fields/FieldBase.vue'; |
| 62 | +import {useApiUrl} from '@/composables/useApiUrl'; |
| 63 | +import {useFetch} from '@/composables/useFetch'; |
| 64 | +import {useModal} from '@/composables/useModal'; |
| 65 | +
|
| 66 | +export default { |
| 67 | + name: 'FieldOrcid', |
| 68 | + extends: FieldBase, |
| 69 | + props: { |
| 70 | + /** ORCID URL that has been verified */ |
| 71 | + orcid: { |
| 72 | + type: String, |
| 73 | + required: true, |
| 74 | + default: '', |
| 75 | + }, |
| 76 | + /** Author ID used in ORCID related actions */ |
| 77 | + authorId: { |
| 78 | + type: Number, |
| 79 | + required: true, |
| 80 | + default: 0, |
| 81 | + }, |
| 82 | + /** Whether ORCID ID has been verified and authenticated by the owner */ |
| 83 | + isVerified: { |
| 84 | + type: Boolean, |
| 85 | + required: true, |
| 86 | + default: false, |
| 87 | + }, |
| 88 | + }, |
| 89 | + data() { |
| 90 | + return { |
| 91 | + /** Internal value used for displaying ORCID in component. Takes initial value from `orcid` prop */ |
| 92 | + orcidValue: '', |
| 93 | + /** Whether an email requesting users verify their ORCID has been sent or not */ |
| 94 | + verificationRequested: false, |
| 95 | + /** Whether request verification/delete ORCID button should be disabled or not */ |
| 96 | + isButtonDisabled: false, |
| 97 | + }; |
| 98 | + }, |
| 99 | + computed: { |
| 100 | + /** |
| 101 | + * Helper to see if an ORCID value is present |
| 102 | + * @returns {boolean} |
| 103 | + */ |
| 104 | + hasOrcid: function () { |
| 105 | + return this.orcidValue.length !== 0; |
| 106 | + }, |
| 107 | + /** |
| 108 | + * Wraps ORCID in <a> tag for HTML display |
| 109 | + * @returns {string} |
| 110 | + */ |
| 111 | + orcidDisplayValue: function () { |
| 112 | + if (this.hasOrcid) { |
| 113 | + return `<a target="_blank" class="underline" href="${this.orcidValue}">${this.orcidValue}</a>`; |
| 114 | + } else { |
| 115 | + return this.orcidValue; |
| 116 | + } |
| 117 | + }, |
| 118 | + }, |
| 119 | + created() { |
| 120 | + this.orcidValue = this.orcid; |
| 121 | + }, |
| 122 | + methods: { |
| 123 | + /** |
| 124 | + * Triggers author email request via API |
| 125 | + * |
| 126 | + * @returns {Promise<void>} |
| 127 | + */ |
| 128 | + sendAuthorEmail: async function () { |
| 129 | + this.isButtonDisabled = true; |
| 130 | +
|
| 131 | + const {apiUrl} = useApiUrl( |
| 132 | + `orcid/requestAuthorVerification/${this.authorId}`, |
| 133 | + ); |
| 134 | +
|
| 135 | + const {isSuccess, fetch} = useFetch(apiUrl, { |
| 136 | + method: 'POST', |
| 137 | + expectValidationError: true, |
| 138 | + }); |
| 139 | + await fetch(); |
| 140 | +
|
| 141 | + if (isSuccess) { |
| 142 | + this.verificationRequested = true; |
| 143 | + } |
| 144 | +
|
| 145 | + this.isButtonDisabled = false; |
| 146 | + }, |
| 147 | + /** |
| 148 | + * Open confirmation dialog for requesting author ORCID verification |
| 149 | + */ |
| 150 | + openSendAuthorEmailDialog: function () { |
| 151 | + const {openDialog} = useModal(); |
| 152 | + openDialog({ |
| 153 | + name: 'sendAuthorEmail', |
| 154 | + title: this.t('orcid.field.authorEmailModal.title'), |
| 155 | + message: this.t('orcid.field.authorEmailModal.message'), |
| 156 | + actions: [ |
| 157 | + { |
| 158 | + label: this.t('common.yes'), |
| 159 | + isPrimary: true, |
| 160 | + callback: async (close) => { |
| 161 | + await this.sendAuthorEmail(); |
| 162 | + close(); |
| 163 | + }, |
| 164 | + }, |
| 165 | + { |
| 166 | + label: this.t('common.no'), |
| 167 | + isWarnable: true, |
| 168 | + callback: (close) => { |
| 169 | + close(); |
| 170 | + }, |
| 171 | + }, |
| 172 | + ], |
| 173 | + close: () => {}, |
| 174 | + }); |
| 175 | + }, |
| 176 | + /** |
| 177 | + * Trigger API request to remove ORCID and access tokens from author/user |
| 178 | + * |
| 179 | + * @returns {Promise<void>} |
| 180 | + */ |
| 181 | + deleteOrcid: async function () { |
| 182 | + this.isButtonDisabled = true; |
| 183 | +
|
| 184 | + const {apiUrl} = useApiUrl(`orcid/deleteForAuthor/${this.authorId}`); |
| 185 | + const {isSuccess, fetch} = useFetch(apiUrl, { |
| 186 | + method: 'POST', |
| 187 | + expectValidationError: true, |
| 188 | + }); |
| 189 | +
|
| 190 | + await fetch(); |
| 191 | +
|
| 192 | + if (isSuccess) { |
| 193 | + this.orcidValue = ''; |
| 194 | + } |
| 195 | +
|
| 196 | + this.isButtonDisabled = false; |
| 197 | + }, |
| 198 | + /** |
| 199 | + * Opens dialog to confirm deletion of ORCID from author/user |
| 200 | + */ |
| 201 | + openDeleteDialog: function () { |
| 202 | + const {openDialog} = useModal(); |
| 203 | + openDialog({ |
| 204 | + name: 'deleteOrcid', |
| 205 | + title: this.t('orcid.field.deleteOrcidModal.title'), |
| 206 | + message: this.t('orcid.field.deleteOrcidModal.message'), |
| 207 | + actions: [ |
| 208 | + { |
| 209 | + label: this.t('common.yes'), |
| 210 | + isPrimary: true, |
| 211 | + callback: async (close) => { |
| 212 | + await this.deleteOrcid(); |
| 213 | + close(); |
| 214 | + }, |
| 215 | + }, |
| 216 | + { |
| 217 | + label: this.t('common.no'), |
| 218 | + isWarnable: true, |
| 219 | + callback: (close) => { |
| 220 | + close(); |
| 221 | + }, |
| 222 | + }, |
| 223 | + ], |
| 224 | + close: () => {}, |
| 225 | + }); |
| 226 | + }, |
| 227 | + }, |
| 228 | +}; |
| 229 | +</script> |
| 230 | + |
| 231 | +<style lang="less"> |
| 232 | +@import '../../../styles/_import'; |
| 233 | +
|
| 234 | +.pkpFormField__control--html { |
| 235 | + font-size: @font-sml; |
| 236 | + line-height: 1.8em; |
| 237 | + display: inline-block; |
| 238 | +
|
| 239 | + p:first-child { |
| 240 | + margin-top: 0; |
| 241 | + } |
| 242 | +
|
| 243 | + p:last-child { |
| 244 | + margin-bottom: 0; |
| 245 | + } |
| 246 | +} |
| 247 | +
|
| 248 | +.pkpFormField__control--html__button { |
| 249 | + margin-inline-start: 0.25rem; |
| 250 | +} |
| 251 | +</style> |
0 commit comments