-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented: Added the support for using facility selector from dxp-component(#dxp/228) #218
base: main
Are you sure you want to change the base?
Conversation
src/views/Settings.vue
Outdated
</ion-select> | ||
</ion-item> | ||
</ion-card> | ||
<DxpFacilitySwitcher @updateFacility="handleFacilityUpdate($event)"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<DxpFacilitySwitcher @updateFacility="handleFacilityUpdate($event)"/> | |
<DxpFacilitySwitcher @updateFacility="updateFacility(facility)"/> |
src/store/modules/user/actions.ts
Outdated
async setFacility ({ commit, state }, payload) { | ||
commit(types.USER_CURRENT_FACILITY_UPDATED, payload.facility); | ||
|
||
async setFacilityUpdates ({ commit, state }, payload) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
async setFacilityUpdates ({ commit, state }, payload) { | |
async setFacility({ commit, state }, payload) { |
Improve indentation
import { useUserStore } from '@hotwax/dxp-components' | ||
|
||
const getCurrentFacilityId = () => { | ||
const currentFacility: any = useUserStore().getCurrentFacility; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Directly use useUserStore().getCurrentFacility
wherever required as we only have a couple of places where this data is used.
…t and oms-api to latest(#dxp/288) - Passed method to fetch good identification types in order to display product identifier options dynamically.
Related Issues
hotwax/dxp-components#228
Short Description and Why It's Useful
facility selector
on the settings page from thedxp-component
.state
management.getters
from the user store in dxp-components across the entire application.Contribution and Currently Important Rules Acceptance