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

Only lead climbs #60

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f24cb45
carnet outdoor - liste seulement les croix en tête
pectum83 Sep 19, 2023
06370da
carnet outdoor - liste seulement les croix en tête
pectum83 Sep 19, 2023
8a84414
carnet outdoor - liste seulement les croix en tête - ajout d'une chec…
pectum83 Sep 30, 2023
aae75f3
extension de la modif aux autres graphes et a la vue analytik
pectum83 Sep 30, 2023
639d7b9
Remove package.json file
pectum83 Dec 8, 2024
a4d8b2a
Merge branch 'refs/heads/master' into onlyLeadClimbs
pectum83 Dec 8, 2024
8f602ab
fix(icon type and color) in CragRouteSmallLine when several ascent on…
pectum83 Dec 11, 2024
bc6a550
Refactor filters for outdoor ascents and analytics
pectum83 Dec 11, 2024
60bbf84
Revert bugfix icon - a remettre dans une autre PR
pectum83 Dec 12, 2024
23ed5ee
add AscentFiltersToggleBtn.vue input component
pectum83 Dec 12, 2024
1bf8531
fix to adapt other user outdoor vue to backend filters (but did not i…
pectum83 Dec 12, 2024
57ae19e
Add multi-filter functionality for ascents and climbing types
pectum83 Dec 24, 2024
3ace689
Refactor filter handling for ascended crag routes.
pectum83 Dec 24, 2024
5635633
Refactor filter handling for ascended crag routes.
pectum83 Dec 27, 2024
eb27516
remove package.json
pectum83 Dec 27, 2024
659c230
suppress otherFilters. Replaced by boolean no_double
pectum83 Dec 31, 2024
7f53ecd
lists in snakecase
pectum83 Dec 31, 2024
91e9ddf
suppress no_double filter
pectum83 Jan 1, 2025
9c62971
factorize stats api
pectum83 Jan 2, 2025
3edb896
POST pour les nested params et factorisation user et currentuser api …
pectum83 Jan 2, 2025
7ca72a4
call stats with GET and parse nested params in api
pectum83 Jan 5, 2025
d1f2ddc
reverse package.json
pectum83 Jan 7, 2025
850b170
several PR comments applied
pectum83 Jan 7, 2025
6dda412
camelcase objects filters et stats
pectum83 Jan 7, 2025
c7bb4d0
Revert "camelcase objects filters et stats"
pectum83 Jan 7, 2025
79aa86a
revert package.json
pectum83 Jan 7, 2025
fb751ff
revert package.json
pectum83 Jan 7, 2025
c820bcc
revert package.json
pectum83 Jan 7, 2025
35a6319
camelcase et filters à la racine
pectum83 Jan 8, 2025
aa553c7
revert lang files reformat
pectum83 Jan 8, 2025
0a349a0
suppress lead et onsight
pectum83 Jan 8, 2025
30214e2
no request until applyu filters
pectum83 Jan 8, 2025
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
14 changes: 12 additions & 2 deletions components/logBooks/outdoors/LogBookList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ export default {
user: {
type: Object,
default: null
},
onlyLeadClimbs: {
type: Boolean,
default: false
}
},

Expand Down Expand Up @@ -120,7 +124,12 @@ export default {
this.ascendedCragRoutes()
}
},

onlyLeadClimbs () {
if (!this.firstLoading) {
this.resetAscents()
this.ascendedCragRoutes()
}
},
pectum83 marked this conversation as resolved.
Show resolved Hide resolved
climbingType () {
if (!this.firstLoading) {
this.resetAscents()
Expand Down Expand Up @@ -153,7 +162,8 @@ export default {
promise = new LogBookOutdoorApi(this.$axios, this.$auth).ascendedCragRoutes(
this.order,
this.climbingType,
this.page
this.page,
this.onlyLeadClimbs
)
}

Expand Down
3 changes: 2 additions & 1 deletion lang/en-US.js
pectum83 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -1978,7 +1978,8 @@ export default {
comment: 'My comment',
private_comment: 'Comment is private',
released_at: 'Released at',
hardness_status: 'Difficulty appreciation'
hardness_status: 'Difficulty appreciation',
only_lead_climbs: 'Only Lead Climbs'
},
ascentGymRoute: {
type: 'Type',
Expand Down
3 changes: 2 additions & 1 deletion lang/fr-FR.js
Original file line number Diff line number Diff line change
Expand Up @@ -1978,7 +1978,8 @@ export default {
comment: 'Mon commentaire',
private_comment: 'Commentaire privé',
released_at: 'Réalisé le',
hardness_status: 'Appréciation de la difficulté'
hardness_status: 'Appréciation de la difficulté',
only_lead_climbs: 'Exclure les moulinettes'
},
ascentGymRoute: {
type: 'Type',
Expand Down
Loading