Skip to content

Commit

Permalink
Merge pull request #72 from bitem-heg-geneve/plazi_issue_106
Browse files Browse the repository at this point in the history
Plazi issue 106
  • Loading branch information
dalf authored Jan 17, 2023
2 parents 3d1d3d5 + ac809c9 commit afe4262
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 34 deletions.
56 changes: 29 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion src/components/OccurrencesElement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ import shared_fields from '@/components/shared_fields.js'
type: Object,
required: true
},
page: {
type: Number,
required: true
},
index: {
type: Number,
required: true
},
},
data() {
return {
Expand Down Expand Up @@ -61,10 +69,12 @@ import shared_fields from '@/components/shared_fields.js'
},
},
methods:{
...mapActions(['updateOccurrences', 'updateOccurrencesSelection', 'updateStep']),
...mapActions(['updateOccurrences', 'updateOccurrencesSelection', 'updateStep', 'updatePage', 'updatePositionDisplay']),
displaySpecimen(){
this.updateOccurrencesSelection(this.occurrence)
this.updateStep(3)
this.updatePage(this.page)
this.updatePositionDisplay("#"+this.page+"_"+this.index)
this.$router.push({
name: this.$router.currentRoute.name,
query: {
Expand Down
14 changes: 8 additions & 6 deletions src/components/OccurrencesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
<th style="width:5%"></th>
</tr>

<OccurrencesElement
v-for="occurrence in processed_occurrences.slice(item_min, item_max)"
:key="occurrence.gbifID" :occurrence="occurrence" />
<OccurrencesElement :id="current_page+'_'+index"
v-for="(occurrence, index) in processed_occurrences.slice(item_min, item_max)"
:key="occurrence.gbifID" :occurrence="occurrence" :page="current_page" :index="index" />

</table>

Expand Down Expand Up @@ -101,10 +101,10 @@ export default {
},
data() {
return {
current_page: 1,
occurrences: [],
status: [],
in_progress: false,
current_page: 1,
per_page_init: 30,
per_page: 30,
show_size: false,
Expand All @@ -124,7 +124,7 @@ export default {
};
},
computed: {
...mapState(['institution_selection', 'datasets_selection', 'occurrence_keys', 'format_selection', 'user_selection', 'filters', 'fields', 'format_selection', 'urls_parameters', 'step', 'theme_color']),
...mapState(['page_selection', 'position_display', 'institution_selection', 'datasets_selection', 'occurrence_keys', 'format_selection', 'user_selection', 'filters', 'fields', 'format_selection', 'urls_parameters', 'step', 'theme_color']),
cssVars() {
return {
'--color': this.theme_color.main,
Expand Down Expand Up @@ -181,7 +181,7 @@ export default {
}
},
methods: {
...mapActions(['updateOccurrencesFacet', 'updateOccurrencesSort', 'updateOccurrencesSelection', 'updateInitMcDateFilter', 'updateStep']),
...mapActions(['updateOccurrencesFacet', 'updateOccurrencesSort', 'updateOccurrencesSelection', 'updateInitMcDateFilter', 'updateStep','updatePage']),
searchOccurrencesAPI(reload) {
if (this.institution_selection.key || this.occurrence_keys) {
this.in_progress = true
Expand All @@ -196,8 +196,10 @@ export default {
var occ = this.$backend.processOccurrences(response.data, this.format_selection);
occ = this.processFacets(occ)
this.occurrences = occ;
this.current_page = this.page_selection
this.in_progress = false
this.goToTop()
this.$router.push({ name: 'HomePage', hash: this.position_display, query: this.$route.query}).catch(()=>{});
if (!reload && this.urls_parameters.occurrence != null) {
for (let index in occ) {
if (occ[index].key == this.urls_parameters.occurrence) {
Expand Down
14 changes: 14 additions & 0 deletions src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export default new Vuex.Store({
occurrence_keys: null,
format_selection: null,
matching: null,
page_selection: 1,
position_display: "",
fields: {
matcit_specimen: {
format_occurrence: {
Expand Down Expand Up @@ -170,6 +172,12 @@ export default new Vuex.Store({
UPDATE_STEP(state, value) {
state.step = value
},
UPDATE_PAGE(state, value) {
state.page_selection = value
},
UPDATE_POSITION_DISPLAY(state, value) {
state.position_display = value
},
UPDATE_USER(state, value) {
state.user = value
window.sessionStorage.setItem('user', JSON.stringify(value));
Expand Down Expand Up @@ -225,6 +233,12 @@ export default new Vuex.Store({
updateStep(context, value){
context.commit('UPDATE_STEP', value)
},
updatePage(context, value){
context.commit('UPDATE_PAGE', value)
},
updatePositionDisplay(context, value){
context.commit('UPDATE_POSITION_DISPLAY', value)
},
updateOrcidUser(context, user) {
/* an example of user is {name: "John Doe", orcid: "", orcidToken: ""} */
context.commit('UPDATE_USER', user)
Expand Down

0 comments on commit afe4262

Please sign in to comment.