Skip to content
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

Added shop selector to menu footer (#2a7ymj3) #283

Merged
merged 29 commits into from
Dec 6, 2022
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
94fb58e
Add shop selector to menu footer(#2a7ymj3)
Mayank909 May 10, 2022
e02e479
Implemented: On shop selection update the jobs on Pipeline.vue(#2a7ymj3)
Mayank909 May 11, 2022
973e3cf
Improved: changed the position of emitter.off subscriber in pipeline.…
Mayank909 May 11, 2022
9b96946
Remove console.log from the refreshJobs function(#2a7ymj3)
Mayank909 May 11, 2022
8df5946
Implemented: menu footerselection change the jobs details in all page…
Mayank909 May 12, 2022
60e4a02
Implemented: call fetchJobs method when component is mounted(#2a7ymj3)
Mayank909 May 16, 2022
c173227
Changed: suggested naming conventions of variable(#2a7ymj3)
Mayank909 May 16, 2022
7fd343d
Merge branch 'main' of https://github.com/hotwax/job-manager into #2a…
Mayank909 May 17, 2022
77df679
Merge branch 'main' of https://github.com/hotwax/job-manager into #2a…
Mayank909 May 19, 2022
39bdbc4
Improved: code by removing unwanted changes(#2a7ymj3)
Mayank909 May 19, 2022
220ee76
Improved: code by removing unwanted console satements(#2a7ymj3)
Mayank909 May 19, 2022
8099cc7
Improved: code sytex and naming conventions(#2a7ymj3)
Mayank909 May 23, 2022
102dc74
Merge branch 'main' of https://github.com/hotwax/job-manager into #2a…
Mayank909 May 23, 2022
1ee9478
Merge branch 'main' of https://github.com/hotwax/job-manager into #2a…
Mayank909 May 26, 2022
50cf09a
Fixed: Retry button spinner is moving on store changed(#2a7ymj3)
Mayank909 May 26, 2022
7ec6cf5
Removed: unwanted changes(#2a7ymj3)
Mayank909 May 26, 2022
e85443a
Merge branch 'main' of https://github.com/hotwax/job-manager into #2a…
disha1202 Sep 27, 2022
e635e8c
Reverted unwanted changes(#2a7ymj3)
disha1202 Sep 27, 2022
ceda856
Added a null check and reverted unwanted code(#2a7ymj3)
disha1202 Oct 6, 2022
12e477e
Improved code to emit product store change if user profile is not und…
disha1202 Oct 17, 2022
a6524cc
Fixed infinite loading and the event.target.complete is not a functi…
k2maan Nov 17, 2022
5db51f0
Resolved merge conflicts (#2a7ymj3)
k2maan Nov 29, 2022
553d042
Resolved merge conflicts (#2a7ymj3)
k2maan Nov 30, 2022
c097cc6
Fixed jobs not updating on changing stores from menu footer (#2a7ymj3)
k2maan Dec 1, 2022
72a7d02
Refactored code by removing unused function paramter (#2a7ymj)
k2maan Dec 5, 2022
7137435
Fixed ion-refresher spinning infinitely by adding event.target.comple…
k2maan Dec 6, 2022
792f198
Fixed refreshJobs in Miscallaneous page by re-adding event in the fun…
k2maan Dec 6, 2022
2240067
Merge branch 'main' into #2a7ymj3
adityasharma7 Dec 6, 2022
9f64c50
Fixed: passing undefined explicitly is not needed (#2a7ymj3)
adityasharma7 Dec 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed: suggested naming conventions of variable(#2a7ymj3)
Mayank909 committed May 16, 2022

Verified

This commit was signed with the committer’s verified signature.
ruyadorno Ruy Adorno
commit c1732275b395965efcbbe6ed8df759c38109191f
6 changes: 3 additions & 3 deletions src/components/Menu.vue
Original file line number Diff line number Diff line change
@@ -94,13 +94,13 @@ export default defineComponent({
})
},
methods: {
setEComStore(store: any) {
setEComStore(event: CustomEvent) {
if(this.userProfile) {
this.store.dispatch('user/setEcomStore', {
'eComStore': this.userProfile.stores.find((str: any) => str.productStoreId == store['detail'].value)
'eComStore': this.userProfile.stores.find((store: any) => store.productStoreId == event['detail'].value)
})
}
emitter.emit("selectedShop", store)
emitter.emit("selectedShop")
},
},
watch:{