Compare commits

..

8 Commits

Author SHA1 Message Date
3ea7eb48b4 fix profile display
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-10-10 19:41:45 +02:00
8c8021bedc Merge pull request 'Verschiedenes seit Freitag' (#47) from freitag into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #47
2021-10-04 17:42:09 +02:00
46fcaa2db6 implement profile view
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-10-03 20:05:08 +02:00
2d700c77dc redirect users with token #38 2021-10-03 20:05:07 +02:00
c1d78fa8c1 implement seach view autofocus #41 2021-10-03 20:05:07 +02:00
7c8a1bb423 add login page name field autofocus #42 2021-10-03 20:05:06 +02:00
8e42c7fdbe Merge pull request 'Suchparameter in URL' (#46) from feature/44-suchparameter-in-url into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #46
2021-09-27 18:02:23 +02:00
c25639b40c Suchparameter in URL
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-09-27 17:50:01 +02:00
3 changed files with 17 additions and 9 deletions

View File

@ -54,17 +54,20 @@ export default {
}
},
actions: {
onError({commit}) {
onError({commit, dispatch}) {
commit('setError')
commit('clearProfileId')
commit('clearProfile')
commit('setNotLoading')
commit('hideSpinner')
dispatch('clear')
},
onNotFound({commit, dispatch}) {
dispatch('onError')
commit('setNotFound', true)
},
clear({commit}) {
commit('clearProfileId')
commit('clearProfile')
commit('hideSpinner')
commit('setNotLoading')
},
async load({state, commit, dispatch, rootState}, profileId) {
if (state.loading) {
return
@ -111,7 +114,7 @@ export default {
const responseData = await response.json()
commit('setProfile', responseData.profile)
commit('hideSpinner')
commit('setNotSearching')
commit('setNotLoading')
}
}
}

View File

@ -109,6 +109,7 @@ export default {
},
methods: {
handleSubmit() {
this.$router.push({ query: { query: this.searchText }})
this.$store.dispatch('search/search')
},
focusSearchText() {

View File

@ -112,7 +112,8 @@ export default {
},
methods: {
...mapActions({
load: 'profile/load'
loadProfile: 'profile/load',
clearStore: 'profile/clear',
})
},
computed: {
@ -126,8 +127,11 @@ export default {
},
async created() {
const id = parseInt(this.$route.params.memberId, 10)
this.load(id)
}
this.loadProfile(id)
},
unmounted() {
this.clearStore()
},
};
</script>