\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./index.vue?vue&type=template&id=ac93c16e&\"\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import moment from 'moment'\r\n\r\nlet DEFAULT_FORM_VALUES_INIT = {\r\n fullName: '',\r\n emailAddress: '',\r\n phone: ''\r\n}\r\n\r\nexport const data = () => ({\r\n formComplete: false,\r\n formData: {\r\n ...DEFAULT_FORM_VALUES_INIT\r\n },\r\n toggle: false,\r\n loading: true,\r\n isDebug: true,\r\n profile: null,\r\n hoaList: [{}],\r\n imageContent: null,\r\n formatDateFn: function(value) {\r\n return value && value != undefined\r\n ? moment(value.toString(), 'YYYY/MM/DD HH:mm:ss')\r\n .format('MM-DD-YYYY')\r\n .toString()\r\n : ''\r\n }\r\n})\r\n","import { ValidationError } from '@/services/errors'\r\nimport { mapActions } from 'vuex'\r\nimport kms from '@/services/kms'\r\nimport { profileImageStore } from '@/services/UserProfileImage/store'\r\nimport { notifyMessage, notifyError } from '@/services/notify'\r\n\r\nlet DEFAULT_FORM_VALUES = {\r\n fullName: '',\r\n emailAddress: '',\r\n phone: ''\r\n}\r\n\r\nexport const methods = {\r\n ...mapActions('user', ['selectHoaId']),\r\n\r\n confirmUpdate() {\r\n this.$buefy.dialog.confirm({\r\n title: 'Updating Profile',\r\n message:\r\n 'Are you sure you want to update this record? Changing your email address will require that you use your new email address the next time that you login.',\r\n confirmText: 'Update User Profile',\r\n type: 'is-danger',\r\n hasIcon: true,\r\n onConfirm: () => this.onProfileFormSubmit()\r\n })\r\n },\r\n\r\n saveProfileImage() {\r\n console.debug('saveProfileImage...')\r\n this.toggle = true\r\n },\r\n\r\n removeProfileImage() {\r\n console.debug('removeProfileImage...')\r\n },\r\n\r\n async reload() {\r\n this.loading = true\r\n\r\n this.refreshUserProfile()\r\n\r\n this.formData = { ...DEFAULT_FORM_VALUES }\r\n if (this.$refs.form) {\r\n this.$refs.form.reset()\r\n }\r\n\r\n this.loading = false\r\n },\r\n\r\n async refreshUserProfile() {\r\n try {\r\n const refreshedUser = await kms.get('/User')\r\n\r\n if (this.isDebug == true) console.debug('refreshedUser=' + JSON.stringify(refreshedUser))\r\n\r\n if (refreshedUser && refreshedUser != undefined) {\r\n this.profile = refreshedUser\r\n this.formData.fullName = this.profile.name\r\n this.formData.emailAddress = this.profile.email\r\n this.formData.phone = this.profile.phoneNumber\r\n\r\n await this.loadCurrentDocument()\r\n if (this.isDebug == true) console.debug('this.profile=' + JSON.stringify(this.profile))\r\n } else {\r\n if (this.isDebug == true) console.debug('else this.profile')\r\n }\r\n } catch (e) {\r\n notifyError(e)\r\n }\r\n },\r\n\r\n async loadCurrentDocument() {\r\n console.debug('in loadCurrrentDocument()...')\r\n if (\r\n !this.profile ||\r\n !this.profile.profileImageDocumentID ||\r\n this.profile.profileImageDocumentID <= 0\r\n ) {\r\n return\r\n }\r\n\r\n console.debug('in loadCurrrentDocument()...')\r\n\r\n try {\r\n const params = {\r\n asBase64: true\r\n }\r\n\r\n await profileImageStore.dispatch('getProfileImageFile', {\r\n params: params,\r\n done: ({ details }) => {\r\n if (details) {\r\n if (this.isDebug == true)\r\n console.debug(\r\n ' - params' + JSON.stringify(params) + ' - this.getProfileImageFile=' + details\r\n )\r\n\r\n this.base64pdf = null\r\n this.imageContent = details\r\n }\r\n }\r\n })\r\n } catch (e) {\r\n if (this.isDebug == true) console.debug(e)\r\n }\r\n },\r\n\r\n getProfileFormPayload() {\r\n const payload = {\r\n name: this.formData.fullName,\r\n email: this.formData.emailAddress,\r\n phoneNumber: this.formData.phone\r\n }\r\n\r\n return payload\r\n },\r\n\r\n async onProfileFormSubmit() {\r\n try {\r\n if (!this.formData || this.formData == undefined) {\r\n notifyError('There was a problem saving your user profile.')\r\n return\r\n }\r\n\r\n this.loading = true\r\n console.debug('payload formData= ' + JSON.stringify(this.formData))\r\n const returnPayload = this.getProfileFormPayload()\r\n console.debug('payload= ' + JSON.stringify(returnPayload))\r\n\r\n try {\r\n const path = `/User/SaveIdentityUserProfile`\r\n const results = await kms.post(path, returnPayload)\r\n\r\n if (this.isDebug == true) console.debug(JSON.stringify(results))\r\n\r\n if (results && results != undefined) {\r\n if (results == true) {\r\n notifyMessage(`Your user profile has been updated`)\r\n this.reload()\r\n } else {\r\n notifyError(`There was a problem updating your user profile`)\r\n }\r\n } else {\r\n notifyError('There was a problem updating the detailed description.')\r\n }\r\n this.loading = false\r\n } catch (e) {\r\n notifyError(e)\r\n }\r\n this.loading = false\r\n } catch (e) {\r\n //If this is a validation error, get the details for each field\r\n if (e instanceof ValidationError) {\r\n this.$refs.form.setErrors(e.fields)\r\n } else {\r\n notifyError(e)\r\n }\r\n }\r\n\r\n this.loading = false\r\n }\r\n}\r\n","\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Profile.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Profile.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Profile.vue?vue&type=template&id=55fd5d2c&\"\nimport script from \"./Profile.vue?vue&type=script&lang=js&\"\nexport * from \"./Profile.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Profile.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AccountSecurity.vue?vue&type=style&index=0&lang=scss&\"; export default mod; export * from \"-!../../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AccountSecurity.vue?vue&type=style&index=0&lang=scss&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('PageContentLayoutOnly',{attrs:{\"aria-label\":_vm.$t('waiver.title'),\"role\":\"region\"}},[_c('ModernTable',{attrs:{\"region\":_vm.region,\"filters\":_vm.filters,\"rows\":_vm.rows,\"columns\":_vm.columns,\"pagination\":{\n perPage: 12\n },\"loading\":_vm.loading,\"headerColor\":\"#FFF\",\"condensed\":\"\"},scopedSlots:_vm._u([{key:\"header\",fn:function(){return [_c('div',{style:({ width: '100%', height: '60px' })},[_c('b-button',{class:'filter-button ' + (_vm.filters.show ? 'active' : ''),style:({ float: 'right', background: 'none', border: 0 }),attrs:{\"type\":\"is-ghost\"},on:{\"click\":function($event){_vm.filters.show = !_vm.filters.show}}},[_c('b-icon',{staticStyle:{\"display\":\"inline-block\"},attrs:{\"pack\":\"mdi\",\"icon\":\"filter-outline\",\"size\":\"is-small\"}}),_c('div',{staticStyle:{\"display\":\"inline-block\"}},[_vm._v(\"Filter\")])],1)],1)]},proxy:true}])}),_c('Modal',{attrs:{\"toggle\":_vm.toggle},on:{\"update:toggle\":function($event){_vm.toggle=$event}}},[_c('WaiverModal',{attrs:{\"waiver\":_vm.selectedWaiver,\"ownerID\":parseInt(_vm.ownerID),\"arTransactionID\":parseInt(_vm.arTransactionID)}})],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\r\n import { waiverList } from '@/services/Units/Tabs/WaiverFeeRequests/store'\r\n*/\r\n\r\nimport Vue from 'vue'\r\nimport Vuex from 'vuex'\r\nimport _get from 'lodash/get'\r\n\r\nimport { notifyProblem, notifyError, notifyMessage } from '@/services/notify'\r\nimport kms from '@/services/kms'\r\n\r\nconst isDebug = true\r\n\r\n/* eslint-disable no-empty-pattern */\r\nconst actions = {\r\n /*\r\n const { list } = await waiverList.dispatch ('getWaiverList', {\r\n hoaId\r\n });\r\n */\r\n async getWaiverList({}, { ownerID }) {\r\n console.log('in getWaiverList...')\r\n try {\r\n const result = await kms.get('/AccountsReceivable/WaiverRequest/List', {\r\n params: {\r\n ownerID\r\n }\r\n })\r\n\r\n if (isDebug == true) console.debug('getWaiverList log=' + JSON.stringify(result))\r\n\r\n return {\r\n list: result.results\r\n }\r\n } catch (exception) {\r\n notifyProblem(`The waiver request list could not be retrieved.`)\r\n console.error(exception)\r\n }\r\n\r\n return {\r\n list: []\r\n }\r\n },\r\n\r\n async deleteWaiver({ dispatch }, { waiverRequestID, done }) {\r\n try {\r\n const path = `/AccountsReceivable/WaiverRequest/${waiverRequestID}?forceDelete=false`\r\n\r\n const results = await kms.delete(path)\r\n\r\n if (this.isDebug == true) console.debug('results=' + JSON.stringify(results))\r\n\r\n if (dispatch && dispatch != undefined) console.debug(dispatch)\r\n\r\n const wasDeleted = _get(results, 'deleted', false)\r\n\r\n if (wasDeleted === true) {\r\n notifyMessage(`Successfully deleted the selected waiver request.`)\r\n done()\r\n } else {\r\n notifyError('There was a problem deleting the selected waiver request.')\r\n }\r\n } catch (exception) {\r\n notifyProblem(`There was a problem deleting the selected waiver request.`)\r\n console.error(exception)\r\n }\r\n }\r\n}\r\n/* eslint-enable no-empty-pattern */\r\n\r\nVue.use(Vuex)\r\nexport const waiverList = new Vuex.Store({\r\n state: {},\r\n mutations: {},\r\n getters: {},\r\n actions\r\n})\r\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('button',{staticClass:\"w-5 h-5 ml-0\",on:{\"click\":function($event){return _vm.loadUpdateWaiver(_vm.waiver)}}},[_c('svg',{staticClass:\"w-6 h-6\",attrs:{\"fill\":\"none\",\"stroke\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"xmlns\":\"http://www.w3.org/2000/svg\"}},[_c('path',{attrs:{\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",\"stroke-width\":\"2\",\"d\":\"M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z\"}})])]),_c('button',{staticClass:\"w-5 h-5 ml-4\",on:{\"click\":function($event){return _vm.confirmWaiverDelete(_vm.reason, _vm.waiverRequestID)}}},[_c('svg',{staticClass:\"w-6 h-6\",attrs:{\"fill\":\"none\",\"stroke\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"xmlns\":\"http://www.w3.org/2000/svg\"}},[_c('path',{attrs:{\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",\"stroke-width\":\"2\",\"d\":\"M6 18L18 6M6 6l12 12\"}})])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n \r\n \r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./WaiverActions.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./WaiverActions.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./WaiverActions.vue?vue&type=template&id=107a5662&\"\nimport script from \"./WaiverActions.vue?vue&type=script&lang=js&\"\nexport * from \"./WaiverActions.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"waiver-modal\":\"\"}},[(_vm.formData)?_c('div',{staticClass:\"is-size-4\"},[_vm._v(_vm._s(_vm.buttonText)+\" Waiver Fee Request\")]):_vm._e(),_c('ValidationObserver',{ref:\"formGroup\",scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar handleSubmit = ref.handleSubmit;\nreturn [_c('transition',{attrs:{\"name\":\"fade\",\"mode\":\"out-in\",\"appear\":\"\"}},[_c('form',{on:{\"submit\":function($event){$event.preventDefault();return handleSubmit(_vm.submitWaiver)}}},[_c('fieldset',[(_vm.waiver && _vm.waiver != undefined)?_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{staticClass:\"is-small\",staticStyle:{\"width\":\"50px !important\"},attrs:{\"disabled\":true,\"name\":\"AddedBy\",\"label\":\"Added By\",\"maxlength\":\"100\",\"type\":\"text\",\"vid\":\"AddedBy\",\"placeholder\":\"Added By\",\"spellcheck\":\"true\",\"aria-label\":\"Added By\",\"rules\":\"max:100|required\"},model:{value:(_vm.formData.addedBy),callback:function ($$v) {_vm.$set(_vm.formData, \"addedBy\", $$v)},expression:\"formData.addedBy\"}})],1):_vm._e(),(_vm.waiver && _vm.waiver != undefined)?_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{staticClass:\"is-small\",staticStyle:{\"width\":\"50px !important\"},attrs:{\"disabled\":true,\"name\":\"Status\",\"label\":\"Request Status\",\"maxlength\":\"100\",\"type\":\"text\",\"vid\":\"Status\",\"placeholder\":\"Request Status\",\"spellcheck\":\"true\",\"aria-label\":\"Request Status\",\"rules\":\"max:100|required\"},model:{value:(_vm.formData.status),callback:function ($$v) {_vm.$set(_vm.formData, \"status\", $$v)},expression:\"formData.status\"}})],1):_vm._e(),_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{staticClass:\"is-small\",staticStyle:{\"width\":\"50px !important\"},attrs:{\"name\":\"Amount\",\"label\":\"Amount\",\"maxlength\":\"30\",\"type\":\"decimal\",\"vid\":\"Amount\",\"placeholder\":\"Amount\",\"aria-label\":\"Amount\",\"rules\":\"max:30|required\"},model:{value:(_vm.formData.amount),callback:function ($$v) {_vm.$set(_vm.formData, \"amount\", $$v)},expression:\"formData.amount\"}})],1),_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{staticClass:\"is-small\",staticStyle:{\"width\":\"50px !important\"},attrs:{\"name\":\"Reason\",\"label\":\"Reason\",\"maxlength\":\"100\",\"type\":\"text\",\"vid\":\"Reason\",\"placeholder\":\"Reason\",\"spellcheck\":\"true\",\"aria-label\":\"Reason\",\"rules\":\"max:100|required\"},model:{value:(_vm.formData.reason),callback:function ($$v) {_vm.$set(_vm.formData, \"reason\", $$v)},expression:\"formData.reason\"}})],1),_c('button',{staticClass:\"button is-primary is-rounded\",attrs:{\"type\":\"submit\",\"disabled\":_vm.loading}},[_vm._v(\" \"+_vm._s(_vm.buttonText)+\" \")])]),_c('fieldset',[_c('ValidationProvider',{attrs:{\"vid\":\"providerErrors\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('div',{staticClass:\"field\"},[_c('span',[_vm._v(_vm._s(errors[0]))])])]}}],null,true)})],1)])])]}}])})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","export function data() {\r\n return {\r\n formData: {\r\n waiverRequestID: 0,\r\n amount: 0,\r\n reason: '',\r\n addedBy: '',\r\n status: ''\r\n },\r\n isDebug: true,\r\n isOpen: false,\r\n arTransactionLimitAmount: 0,\r\n summedExistingWaiverRequestAmounts: 0,\r\n loading: true,\r\n openOnFocus: true,\r\n showWeekNumber: false,\r\n buttonText: 'Add',\r\n styles: {\r\n datePickerContainer: { display: 'flex', alignItems: 'end' },\r\n datePicker: { margin: 0, marginRight: '12px' }\r\n }\r\n }\r\n}\r\n","/*\r\n import { suspensionStore } from '@/services/Units/Tabs/WaiverFeeRequests/WaiverModal/store'\r\n*/\r\n\r\nimport Vue from 'vue'\r\nimport Vuex from 'vuex'\r\nimport { notifyProblem, notifyError, notifyMessage } from '@/services/notify'\r\nimport kms from '@/services/kms'\r\n\r\nconst isDebug = true\r\n\r\n/* eslint-disable no-empty-pattern */\r\nconst actions = {\r\n async getArTransactionById({}, id) {\r\n try {\r\n const result = await kms.get(`/AccountsReceivable/ARTransaction/${id}`)\r\n\r\n console.debug('result=' + JSON.stringify(result))\r\n\r\n return {\r\n detail: result\r\n }\r\n } catch (exception) {\r\n notifyProblem(`There was a problem retrieving the A/R transaction for the waiver request.`)\r\n console.error(exception)\r\n }\r\n return {\r\n detail: null\r\n }\r\n },\r\n\r\n // Update Waiver\r\n async updateWaiver({ dispatch }, { payload = {}, done }) {\r\n try {\r\n const results = await kms.put(`/AccountsReceivable/WaiverRequest`, payload)\r\n\r\n if (this.isDebug == true) console.debug('results=' + JSON.stringify(results))\r\n\r\n if (dispatch && dispatch != undefined) console.debug(dispatch)\r\n\r\n if (results.waiverRequestID > 0) {\r\n notifyMessage(`Successfully updated the selected waiver request.`)\r\n done({ details: results })\r\n } else {\r\n notifyError('There was a problem updating the selected waiver request.')\r\n }\r\n } catch (exception) {\r\n notifyProblem(`There was a problem processing the update for this waiver request.`)\r\n console.error(exception)\r\n }\r\n },\r\n\r\n async addWaiver(\r\n { dispatch },\r\n { ownerID, reason, amount, arTransactionID, createdByAspNetUserID, status, done }\r\n ) {\r\n if (isDebug == true) console.debug('...in addSuspension')\r\n try {\r\n const results = await kms.post(`/AccountsReceivable/WaiverRequest`, {\r\n ownerID,\r\n reason,\r\n amount,\r\n arTransactionID,\r\n createdByAspNetUserID,\r\n status\r\n })\r\n\r\n if (this.isDebug == true) console.debug('results=' + JSON.stringify(results))\r\n\r\n if (dispatch && dispatch != undefined) console.debug(dispatch)\r\n\r\n if (results.waiverRequestID > 0) {\r\n notifyMessage(`Successfully added the waiver request.`)\r\n done({ details: results })\r\n } else {\r\n notifyError('There was a problem adding this waiver request.')\r\n }\r\n } catch (exception) {\r\n notifyProblem(`There was a problem adding this waiver request.`)\r\n console.error(exception)\r\n }\r\n }\r\n}\r\n/* eslint-enable no-empty-pattern */\r\n\r\nVue.use(Vuex)\r\nexport const waiverStore = new Vuex.Store({\r\n state: {},\r\n mutations: {},\r\n getters: {},\r\n actions\r\n})\r\n","import { waiverStore } from '@/services/Units/Tabs/WaiverFeeRequests/WaiverModal/store'\r\nimport $ from 'jquery'\r\nimport { notifyError } from '@/services/notify'\r\nimport _get from 'lodash/get'\r\n\r\nexport const methods = {\r\n async reload() {\r\n this.loading = true\r\n\r\n if (this.waiver && this.waiver != undefined) {\r\n let myStatus = this.waiver.status ? this.waiver.status : ''\r\n if (this.waiver.rejectionReason && myStatus == 'Rejected') {\r\n myStatus = `${myStatus} - ${this.waiver.rejectionReason}`\r\n }\r\n\r\n //Update\r\n this.buttonText = 'Update'\r\n this.formData.waiverRequestID = this.waiver.waiverRequestID\r\n this.formData.amount = Number.isInteger(this.waiver.amount || 0)\r\n ? this.waiver.amount + '.00'\r\n : this.waiver.amount || 0\r\n this.formData.reason = this.waiver.reason\r\n this.formData.addedBy =\r\n this.waiver.createdByIdentityInformation &&\r\n this.waiver.createdByIdentityInformation != undefined\r\n ? this.waiver.createdByIdentityInformation.name\r\n : null\r\n this.formData.status = myStatus\r\n\r\n const arTransId = _get(this.waiver, 'arTransactionID', 0)\r\n await this.getArTransactionLimit(arTransId)\r\n this.loading = false\r\n } else {\r\n this.buttonText = 'Add'\r\n await this.getArTransactionLimit(this.arTransactionID)\r\n }\r\n\r\n this.loading = false\r\n },\r\n\r\n open() {\r\n this.formData = {\r\n amount: 0,\r\n addedBy: '',\r\n reason: ''\r\n }\r\n this.isOpen = true\r\n this.loading = false\r\n },\r\n\r\n async getArTransactionLimit(id) {\r\n if (this.isDebug == true) console.debug('getArTransactionLimit id=' + id)\r\n\r\n this.arTransactionLimitAmount = 0\r\n this.summedExistingWaiverRequestAmounts = 0\r\n\r\n if (id && id > 0) {\r\n await waiverStore.dispatch('getArTransactionById', id).then(t => {\r\n if (t && t.detail) {\r\n if (t.detail.waiverRequests && t.detail.waiverRequests != undefined) {\r\n //sum each waiver request amount\r\n this.summedExistingWaiverRequestAmounts = t.detail.waiverRequests.reduce(\r\n (acc, item) => acc + item.amount,\r\n 0\r\n )\r\n }\r\n this.arTransactionLimitAmount = t.detail.amount\r\n if (this.isDebug == true)\r\n console.debug('arTransactionLimitAmount=' + this.arTransactionLimitAmount)\r\n }\r\n })\r\n }\r\n },\r\n\r\n async submitWaiver() {\r\n let isUpdate = false\r\n\r\n if (this.formData && !this.formData.amount) {\r\n notifyError(\r\n 'Please enter an amount. The amount is a required field that must be greater than zero.'\r\n )\r\n return\r\n }\r\n\r\n if (\r\n this.formData.amount &&\r\n this.formData.amount != undefined &&\r\n this.summedExistingWaiverRequestAmounts\r\n ) {\r\n if (this.formData.waiverRequestID && this.formData.waiverRequestID > 0) {\r\n isUpdate = true\r\n }\r\n\r\n //edit sums existing plus new entry, so edit needs to account for previous amount\r\n const calculateFormAdd =\r\n isUpdate && this.waiver\r\n ? Number.parseFloat(this.formData.amount) - Number.parseFloat(this.waiver.amount)\r\n : this.formData.amount\r\n\r\n const summedPlusFormAmount =\r\n Number.parseFloat(this.summedExistingWaiverRequestAmounts) +\r\n Number.parseFloat(calculateFormAdd)\r\n if (summedPlusFormAmount > this.arTransactionLimitAmount) {\r\n notifyError(\r\n `Please enter a waiver amount that is less than the A/R transaction amount of $${this.arTransactionLimitAmount}. This transaction currently has a summed total amount of $${this.summedExistingWaiverRequestAmounts}. You entered $${this.formData.amount}, which would make the total waiver requests $${summedPlusFormAmount}. `\r\n )\r\n return\r\n }\r\n }\r\n\r\n if (this.formData && this.formData != undefined) {\r\n if (isUpdate) {\r\n await this.updateWaiver()\r\n } else {\r\n await this.addWaiver()\r\n }\r\n }\r\n },\r\n\r\n async addWaiver() {\r\n if (!this.formData || this.formData == undefined) {\r\n notifyError('There was a problem processing this waiver fee request.')\r\n return\r\n }\r\n\r\n if (this.formData.amount <= 0) {\r\n notifyError(`The new amount must be greater than zero.`)\r\n return\r\n }\r\n\r\n if (!this.arTransactionID && this.arTransactionID <= 0) {\r\n notifyError(`This request must be associated with an A/R transaction.`)\r\n return\r\n }\r\n\r\n this.loading = true\r\n\r\n if (this.isDebug == true) console.debug('addWaiver params=' + JSON.stringify(this.formData))\r\n\r\n await waiverStore.dispatch('addWaiver', {\r\n ownerID: this.ownerID,\r\n reason: _get(this.formData, 'reason', ''),\r\n amount: _get(this.formData, 'amount', ''),\r\n arTransactionID: this.arTransactionID,\r\n createdByAspNetUserID: 'Stub',\r\n status: 'Pending',\r\n done: ({ details }) => {\r\n this.loading = false\r\n if (details && details != undefined) {\r\n if (this.isDebug == true)\r\n console.debug(\r\n 'details.waiverRequestID=' +\r\n JSON.stringify(details) +\r\n ', waiverRequestID=' +\r\n details.waiverRequestID\r\n )\r\n\r\n this.leaveForm()\r\n }\r\n }\r\n })\r\n\r\n this.loading = false\r\n },\r\n\r\n async updateWaiver() {\r\n if (\r\n !this.formData ||\r\n this.formData == undefined ||\r\n !this.formData.waiverRequestID ||\r\n this.formData.waiverRequestID == undefined ||\r\n !this.waiver ||\r\n this.waiver == undefined\r\n ) {\r\n notifyError('There was a problem updating the selected waiver request.')\r\n return\r\n }\r\n\r\n if (this.formData.amount <= 0) {\r\n notifyError(`The new amount must be greater than zero.`)\r\n return\r\n }\r\n\r\n this.loading = true\r\n\r\n const payload = {\r\n waiverRequestID: _get(this.formData, 'waiverRequestID', 0),\r\n ownerID: _get(this.waiver, 'ownerID', 0),\r\n reason: _get(this.formData, 'reason', ''),\r\n amount: _get(this.formData, 'amount', 0),\r\n status: _get(this.waiver, 'status', ''),\r\n arTransactionID: _get(this.waiver, 'arTransactionID', 0),\r\n createdByAspNetUserID: 'Stub'\r\n }\r\n\r\n await waiverStore.dispatch('updateWaiver', {\r\n payload: payload,\r\n done: ({ details }) => {\r\n this.loading = false\r\n if (details) {\r\n this.leaveForm()\r\n }\r\n }\r\n })\r\n\r\n this.loading = false\r\n },\r\n\r\n leaveForm() {\r\n // auto-close modal\r\n this.$emit('update:toggle', (this.toggle = false))\r\n $('#clickclose').click()\r\n this.loading = false\r\n }\r\n}\r\n","\r\n
\r\n
{{ buttonText }} Waiver Fee Request
\r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./index.vue?vue&type=template&id=5dd61efc&\"\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n
Filter
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./List.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./List.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./List.vue?vue&type=template&id=ce342322&\"\nimport script from \"./List.vue?vue&type=script&lang=js&\"\nexport * from \"./List.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('PageContentLayoutOnly',[_c('ListHomeOwnerConversations',{attrs:{\"ownerAuthor\":_vm.currentOwnerName,\"authenticatedUser\":_vm.authUser.name,\"ownerID\":parseInt(_vm.ownerID)}})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Main.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Main.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Main.vue?vue&type=template&id=246833e4&\"\nimport script from \"./Main.vue?vue&type=script&lang=js&\"\nexport * from \"./Main.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Slide.vue?vue&type=style&index=0&id=308229b2&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Slide.vue?vue&type=style&index=0&id=308229b2&lang=scss&scoped=true&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('PageContentLayoutOnly',{attrs:{\"role\":\"region\",\"aria-label\":_vm.$t('profile.title')}},[_c('div',{staticClass:\"notification headerColor box is-4\"},[_c('div',[_c('ChangePassword',{attrs:{\"scope\":\"management\"}})],1),_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(false),expression:\"false\"}]},[_c('fieldset',[_c('div',{staticClass:\"column is-12\",staticStyle:{\"padding\":\"10px\",\"white-space\":\"nowrap\"}},[_c('label',{staticClass:\"label\"},[_vm._v(\"Additonal Authentication\")])])]),_c('b-button',{staticClass:\"is-medium expanded\",attrs:{\"type\":\"button\",\"expanded\":\"\",\"disabled\":_vm.loading}},[_vm._v(\" Set Up \")])],1)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.hideTitle && _vm.hideTitle == false)?_c('div',{staticClass:\"is-size-4\"},[_vm._v(\"Change Password\")]):_vm._e(),_c('ValidationObserver',{ref:\"form\",scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar handleSubmit = ref.handleSubmit;\nreturn [_c('transition',{attrs:{\"name\":\"fade\",\"mode\":\"out-in\",\"appear\":\"\"}},[_c('form',{staticClass:\"form\",on:{\"submit\":function($event){$event.preventDefault();return handleSubmit(_vm.onFormSubmit)}}},[_c('fieldset',[_c('div',{staticClass:\"form-grid\"},[_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"name\":\"CurrentPassword\",\"label\":\"Current Password\",\"maxlength\":\"8000\",\"type\":\"password\",\"vid\":\"currentPassword\",\"placeholder\":\"Current Password\",\"aria-label\":\"Current Password\",\"rules\":\"required|max:8000\"},model:{value:(_vm.formData.currentPassword),callback:function ($$v) {_vm.$set(_vm.formData, \"currentPassword\", $$v)},expression:\"formData.currentPassword\"}})],1),_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"name\":\"NewPassword\",\"label\":\"New Password\",\"maxlength\":\"8000\",\"type\":\"password\",\"vid\":\"newPassword\",\"placeholder\":\"New Password\",\"aria-label\":\"New Password\",\"rules\":\"required|max:8000\"},model:{value:(_vm.formData.newPassword),callback:function ($$v) {_vm.$set(_vm.formData, \"newPassword\", $$v)},expression:\"formData.newPassword\"}})],1),_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"name\":\"ConfirmNewPassword\",\"label\":\"Confirm New Password\",\"maxlength\":\"8000\",\"type\":\"password\",\"vid\":\"confirmNewPassword\",\"placeholder\":\"Confirm New Password\",\"aria-label\":\"Confirm New Password\",\"rules\":\"required|max:8000\"},model:{value:(_vm.formData.confirmNewPassword),callback:function ($$v) {_vm.$set(_vm.formData, \"confirmNewPassword\", $$v)},expression:\"formData.confirmNewPassword\"}})],1),_c('div',{staticClass:\"column is-12\",style:({ display: 'flex', justifyContent: 'end' })},[_c('button',{staticClass:\"button is-primary is-rounded\",attrs:{\"type\":\"submit\",\"disabled\":_vm.loading}},[_vm._v(\" Save \")])])])]),_c('fieldset',[_c('ValidationProvider',{attrs:{\"vid\":\"providerErrors\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar errors = ref.errors;\nreturn [_c('div',{staticClass:\"field\"},[_c('span',[_vm._v(_vm._s(errors[0]))])])]}}],null,true)})],1)])])]}}])})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n
\r\n
Change Password
\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./index.vue?vue&type=template&id=457005a9&\"\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import moment from 'moment'\r\n\r\nexport const data = () => ({\r\n toggle: false,\r\n loading: true,\r\n isDebug: true,\r\n formatDateFn: function(value) {\r\n return value && value != undefined\r\n ? moment(value.toString(), 'YYYY/MM/DD HH:mm:ss')\r\n .format('MM-DD-YYYY')\r\n .toString()\r\n : ''\r\n }\r\n})\r\n","import { mapActions } from 'vuex'\r\n\r\nexport const methods = {\r\n ...mapActions('user', ['selectHoaId']),\r\n\r\n async reload() {\r\n this.loading = true\r\n this.loading = false\r\n },\r\n\r\n setChangePasswordModal() {\r\n this.toggle = true\r\n }\r\n}\r\n","\r\n \r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n Set Up\r\n \r\n
\r\n
\r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AccountSecurity.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../../node_modules/babel-loader/lib/index.js!../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AccountSecurity.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./AccountSecurity.vue?vue&type=template&id=36b599be&\"\nimport script from \"./AccountSecurity.vue?vue&type=script&lang=js&\"\nexport * from \"./AccountSecurity.vue?vue&type=script&lang=js&\"\nimport style0 from \"./AccountSecurity.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var compareAscending = require('./_compareAscending');\n\n/**\n * Used by `_.orderBy` to compare multiple properties of a value to another\n * and stable sort them.\n *\n * If `orders` is unspecified, all values are sorted in ascending order. Otherwise,\n * specify an order of \"desc\" for descending or \"asc\" for ascending sort order\n * of corresponding values.\n *\n * @private\n * @param {Object} object The object to compare.\n * @param {Object} other The other object to compare.\n * @param {boolean[]|string[]} orders The order to sort by for each property.\n * @returns {number} Returns the sort order indicator for `object`.\n */\nfunction compareMultiple(object, other, orders) {\n var index = -1,\n objCriteria = object.criteria,\n othCriteria = other.criteria,\n length = objCriteria.length,\n ordersLength = orders.length;\n\n while (++index < length) {\n var result = compareAscending(objCriteria[index], othCriteria[index]);\n if (result) {\n if (index >= ordersLength) {\n return result;\n }\n var order = orders[index];\n return result * (order == 'desc' ? -1 : 1);\n }\n }\n // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\n // that causes it, under certain circumstances, to provide the same value for\n // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\n // for more details.\n //\n // This also ensures a stable sort in V8 and other engines.\n // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.\n return object.index - other.index;\n}\n\nmodule.exports = compareMultiple;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return ((_vm.visible && _vm.visible === true) || _vm.visible === undefined)?_c('b-button',{class:_vm.isprimary !== undefined && _vm.isprimary === true\n ? 'button is-primary is-small is-outline is-rounded'\n : 'button is-info is-light is-small is-outline is-rounded',attrs:{\"title\":_vm.tooltip,\"disabled\":_vm.disabled && _vm.disabled !== undefined && _vm.disabled === true},on:{\"click\":function($event){$event.preventDefault();return _vm.onClick.apply(null, arguments)}}},[_vm._v(_vm._s(_vm.text))]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n {{ text }}\r\n\r\n\r\n\r\n","import mod from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../../node_modules/thread-loader/dist/cjs.js!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./index.vue?vue&type=template&id=036d99d6&\"\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=style&index=0&id=ffc058e2&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=style&index=0&id=ffc058e2&lang=scss&scoped=true&\"","import mod from \"-!../../../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../../../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=style&index=0&id=7b23d881&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../../../../../../node_modules/mini-css-extract-plugin/dist/loader.js??ref--8-oneOf-1-0!../../../../../../../node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!../../../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!../../../../../../../node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!../../../../../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./index.vue?vue&type=style&index=0&id=7b23d881&lang=scss&scoped=true&\"","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{attrs:{\"name\":_vm.name}},[_vm._t(\"default\")],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Slide.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/cache-loader/dist/cjs.js??ref--12-0!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js!../../../node_modules/cache-loader/dist/cjs.js??ref--0-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Slide.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Slide.vue?vue&type=template&id=308229b2&scoped=true&\"\nimport script from \"./Slide.vue?vue&type=script&lang=js&\"\nexport * from \"./Slide.vue?vue&type=script&lang=js&\"\nimport style0 from \"./Slide.vue?vue&type=style&index=0&id=308229b2&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"308229b2\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('PageContentLayoutOnly',{attrs:{\"role\":\"region\",\"twofactorsetup\":\"\"}},[_c('section',{staticClass:\"section card\"},[_c('div',{staticClass:\"level pl-5 pr-5\"},[_c('TwoFactorSetup',{attrs:{\"fromFirstLogin\":_vm.fromFirstLogin}})],1)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{\"two-factor-setup\":\"\"}},[_c('ValidationObserver',{ref:\"form\",scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar handleSubmit = ref.handleSubmit;\nreturn [_c('transition',{attrs:{\"name\":\"fade\",\"mode\":\"out-in\",\"appear\":\"\"}},[_c('form',{staticClass:\"form\",on:{\"submit\":function($event){$event.preventDefault();return handleSubmit(_vm.onFormSubmit)}}},[_c('fieldset',[_c('div',{staticClass:\"form-grid\"},[_c('div',{staticClass:\"column is-12\"},[_c('label',{staticClass:\"label\"},[_vm._v(\"Primary Authentication Method\"),_c('Info',{attrs:{\"title\":\"Primary Authentication Method\",\"information\":\"This authentication will be another layer of extra security after you enter your password. It will validate your login with another level of security that is not linked to your password. The following options will allow you to choose how that security will be implemented.\"}})],1),_c('valid-select',{attrs:{\"disabled\":_vm.setForRemoval === true ? true : false,\"placeholder\":\"Primary Authentication Method\",\"vid\":\"primaryTwoFactorMethod\",\"required\":\"\"},model:{value:(_vm.formData.primaryTwoFactorMethod),callback:function ($$v) {_vm.$set(_vm.formData, \"primaryTwoFactorMethod\", $$v)},expression:\"formData.primaryTwoFactorMethod\"}},_vm._l((_vm.twoFactorTypes),function(option){return _c('option',{key:option.value,domProps:{\"value\":option.value}},[_vm._v(_vm._s(option.label))])}),0)],1),(_vm.formData.primaryTwoFactorMethod === 'SMSCode')?_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"disabled\":_vm.setForRemoval === true ? true : false,\"name\":\"PhoneNumber\",\"label\":\"Phone Number\",\"maxlength\":\"400\",\"type\":\"text\",\"vid\":\"phoneNumber\",\"placeholder\":\"Phone Number\",\"aria-label\":\"Phone Number\",\"rules\":\"required:max:400\"},model:{value:(_vm.formData.phoneNumber),callback:function ($$v) {_vm.$set(_vm.formData, \"phoneNumber\", $$v)},expression:\"formData.phoneNumber\"}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column is-1\"},[_c('b-checkbox',{staticClass:\"has-left-text\",model:{value:(_vm.formData.phoneNumberConfirmation),callback:function ($$v) {_vm.$set(_vm.formData, \"phoneNumberConfirmation\", $$v)},expression:\"formData.phoneNumberConfirmation\"}})],1),_c('div',{staticClass:\"column is-11\"},[_vm._v(\" I confirm that by selecting this authentication method, I am consenting to allow HOA My Way LLC to send messages to the above phone number via SMS/text for the purposes of authentication and notifications. Message and data rates may apply. To opt out of this service, return to this page and disable Additional Authentication or select a different method. \"),_c('a',{attrs:{\"href\":\"https://hoamyway.com/privacy-policy\",\"target\":\"_blank\"}},[_vm._v(\"Privacy Policy\")]),_vm._v(\" and \"),_c('a',{attrs:{\"href\":\"https://hoamyway.com/portal-terms-and-conditions\",\"target\":\"_blank\"}},[_vm._v(\"Terms\")])])])],1):_vm._e(),(_vm.formData.primaryTwoFactorMethod === 'EmailCode')?_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"disabled\":_vm.setForRemoval === true ? true : false,\"name\":\"EmailAddress\",\"label\":\"Email Address\",\"maxlength\":\"400\",\"type\":\"text\",\"vid\":\"emailAddress\",\"placeholder\":\"Email Address\",\"aria-label\":\"Email Address\",\"rules\":\"required|max:400\"},model:{value:(_vm.formData.emailAddress),callback:function ($$v) {_vm.$set(_vm.formData, \"emailAddress\", $$v)},expression:\"formData.emailAddress\"}})],1):_vm._e(),(\n _vm.imageContent &&\n _vm.formData.primaryTwoFactorMethod === 'AuthenticatorCode' &&\n _vm.setForRemoval === false\n )?_c('div',{staticClass:\"readonly column is-12\"},[_c('div',[_c('valid-input',{attrs:{\"aria-readonly\":\"true\",\"aria-disabled\":\"true\",\"disabled\":\"true\",\"name\":\"manualEntryKey\",\"label\":\"Manual Entry Key\",\"type\":\"text\",\"vid\":\"manualEntryKey\",\"placeholder\":\"Manual Entry Key\",\"aria-label\":\"Manual Entry Key\"},model:{value:(_vm.formData.manualEntryKey),callback:function ($$v) {_vm.$set(_vm.formData, \"manualEntryKey\", $$v)},expression:\"formData.manualEntryKey\"}})],1),_c('div',[_c('img',{attrs:{\"src\":_vm.imageContent}})]),_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{staticStyle:{\"width\":\"150px !important\"},attrs:{\"disabled\":_vm.codeValidated === true ? true : false,\"name\":\"checkCode\",\"label\":\"Check Code\",\"type\":\"text\",\"vid\":\"checkCode\",\"placeholder\":\"Check Code\",\"aria-label\":\"Check Code\",\"rules\":\"required|max:400\"},model:{value:(_vm.formData.checkAuthenticatorCode),callback:function ($$v) {_vm.$set(_vm.formData, \"checkAuthenticatorCode\", $$v)},expression:\"formData.checkAuthenticatorCode\"}}),_vm._v(\"Â \")],1),(_vm.codeValidationStatus != '')?_c('div',{staticClass:\"p-2 has-text-info-dark\"},[_vm._v(\" \"+_vm._s(_vm.codeValidationStatus)+\" \")]):_vm._e(),_c('div',{staticClass:\"pl-2\"},[_c('button',{staticClass:\"button is-light\",attrs:{\"disabled\":_vm.codeValidated === true ? true : false},on:{\"click\":function($event){$event.preventDefault();_vm.checkAuthCode(_vm.formData.checkAuthenticatorCode), ''}}},[_vm._v(\" Check \")])])]):_vm._e(),_c('div',{staticClass:\"column is-12\"},[_c('label',{staticClass:\"label\"},[_vm._v(\"Secondary Authentication Method\")]),_c('valid-select',{attrs:{\"disabled\":_vm.setForRemoval === true ? true : false,\"placeholder\":\"Secondary Authentication Method\",\"vid\":\"secondaryTwoFactorMethod\"},model:{value:(_vm.formData.secondaryTwoFactorMethod),callback:function ($$v) {_vm.$set(_vm.formData, \"secondaryTwoFactorMethod\", $$v)},expression:\"formData.secondaryTwoFactorMethod\"}},_vm._l((_vm.twoFactorSecondaryTypes),function(option){return _c('option',{key:option.value,domProps:{\"value\":option.value}},[_vm._v(_vm._s(option.label))])}),0)],1),(_vm.formData.secondaryTwoFactorMethod === 'SMSCode')?_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"disabled\":_vm.setForRemoval === true ? true : false,\"name\":\"PhoneNumber\",\"label\":\"Phone Number\",\"maxlength\":\"400\",\"type\":\"text\",\"vid\":\"phoneNumber\",\"placeholder\":\"Phone Number\",\"aria-label\":\"Phone Number\",\"rules\":\"required:max:400\"},model:{value:(_vm.formData.phoneNumberSecondary),callback:function ($$v) {_vm.$set(_vm.formData, \"phoneNumberSecondary\", $$v)},expression:\"formData.phoneNumberSecondary\"}}),_c('div',{staticClass:\"columns\"},[_c('div',{staticClass:\"column is-1\"},[_c('b-checkbox',{staticClass:\"has-left-text\",model:{value:(_vm.formData.phoneNumberSecondaryConfirmation),callback:function ($$v) {_vm.$set(_vm.formData, \"phoneNumberSecondaryConfirmation\", $$v)},expression:\"formData.phoneNumberSecondaryConfirmation\"}})],1),_c('div',{staticClass:\"column is-11\"},[_vm._v(\" I confirm that by selecting this authentication method, I am consenting to allow HOA My Way LLC to send messages to the above phone number via SMS/text for the purposes of authentication and notifications. Message and data rates may apply. To opt out of this service, return to this page and disable Additional Authentication or select a different method. \"),_c('a',{attrs:{\"href\":\"https://hoamyway.com/privacy-policy\",\"target\":\"_blank\"}},[_vm._v(\"Privacy Policy\")]),_vm._v(\" and \"),_c('a',{attrs:{\"href\":\"https://hoamyway.com/portal-terms-and-conditions\",\"target\":\"_blank\"}},[_vm._v(\"Terms\")])])])],1):_vm._e(),(_vm.formData.secondaryTwoFactorMethod === 'EmailCode')?_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{attrs:{\"disabled\":_vm.setForRemoval === true ? true : false,\"name\":\"EmailAddress\",\"label\":\"Email Address\",\"maxlength\":\"400\",\"type\":\"text\",\"vid\":\"emailAddress\",\"placeholder\":\"Email Address\",\"aria-label\":\"Email Address\",\"rules\":\"required|max:400\"},model:{value:(_vm.formData.emailAddressSecondary),callback:function ($$v) {_vm.$set(_vm.formData, \"emailAddressSecondary\", $$v)},expression:\"formData.emailAddressSecondary\"}})],1):_vm._e(),(\n _vm.imageContent &&\n _vm.formData.secondaryTwoFactorMethod === 'AuthenticatorCode' &&\n _vm.setForRemoval === false\n )?_c('div',{staticClass:\"readonly column is-12\"},[_c('div',[_c('valid-input',{attrs:{\"aria-readonly\":\"true\",\"aria-disabled\":\"true\",\"disabled\":\"true\",\"name\":\"manualEntryKey\",\"label\":\"Manual Entry Key\",\"type\":\"text\",\"vid\":\"manualEntryKey\",\"placeholder\":\"Manual Entry Key\",\"aria-label\":\"Manual Entry Key\"},model:{value:(_vm.formData.manualEntryKey),callback:function ($$v) {_vm.$set(_vm.formData, \"manualEntryKey\", $$v)},expression:\"formData.manualEntryKey\"}})],1),_c('div',[_c('img',{attrs:{\"src\":_vm.imageContent}})]),_c('div',{staticClass:\"column is-12\"},[_c('valid-input',{staticStyle:{\"width\":\"150px !important\"},attrs:{\"disabled\":_vm.codeSecondaryValidated === true ? true : false,\"name\":\"checkCode\",\"label\":\"Check Code\",\"type\":\"text\",\"vid\":\"checkCode\",\"placeholder\":\"Check Code\",\"aria-label\":\"Check Code\",\"rules\":\"required|max:400\"},model:{value:(_vm.formData.checkSecondaryAuthenticatorCode),callback:function ($$v) {_vm.$set(_vm.formData, \"checkSecondaryAuthenticatorCode\", $$v)},expression:\"formData.checkSecondaryAuthenticatorCode\"}}),_vm._v(\"Â \")],1),(_vm.codeValidationSecondaryStatus != '')?_c('div',{staticClass:\"p-2 has-text-info-dark\"},[_vm._v(\" \"+_vm._s(_vm.codeValidationSecondaryStatus)+\" \")]):_vm._e(),_c('div',{staticClass:\"pl-2\"},[_c('button',{staticClass:\"button is-light\",attrs:{\"disabled\":_vm.codeSecondaryValidated === true ? true : false},on:{\"click\":function($event){$event.preventDefault();return _vm.checkAuthCode('', _vm.formData.checkSecondaryAuthenticatorCode)}}},[_vm._v(\" Check \")])])]):_vm._e(),(_vm.setForRemoval === false)?_c('div',{staticClass:\"column is-12\",style:({ display: 'flex', justifyContent: 'end' })},[_c('button',{staticClass:\"button is-primary is-rounded\",attrs:{\"type\":\"submit\",\"disabled\":_vm.loading}},[_vm._v(\" Save \")])]):_c('div',{staticClass:\"column is-12\"},[_c('button',{staticClass:\"button is-primary is-rounded\",attrs:{\"type\":\"button\",\"disabled\":_vm.loading},on:{\"click\":function($event){$event.preventDefault();return _vm.removeExistingSetup()}}},[_vm._v(\" Remove Existing Setup \")])])])]),_c('fieldset',[_c('ValidationProvider',{attrs:{\"vid\":\"providerErrors\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\n var errors = ref.errors;\nreturn [_c('div',{staticClass:\"field\"},[_c('span',[_vm._v(_vm._s(errors[0]))])])]}}],null,true)})],1)])])]}}])})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\r\n