-
Notifications
You must be signed in to change notification settings - Fork 0
[DO NOT MERGE] Com 714 #662
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
Open
jctrebalag
wants to merge
6
commits into
dev
Choose a base branch
from
COM-714
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ee1b56d
COM-714 Testing userpilot
jctrebalag 684a824
COM-714 Implementing userpilot (WIP)
jctrebalag e3c6bf3
COM-714 Implement userpilot for customer subscription page
jctrebalag 51b7e79
COM-714 Fix mandate condition
jctrebalag 1fa8be8
COM-714 Fixes after PR comments
jctrebalag 732901d
COM-714 Fix ternary
jctrebalag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import get from 'lodash/get'; | ||
import { formatIdentity } from './utils'; | ||
|
||
export const identifyUser = (user) => { | ||
if (!user) return; | ||
const mandates = get(user, 'customers[0].payment.mandates'); | ||
window.userpilot.identify( | ||
user._id, | ||
{ | ||
name: formatIdentity(user.identity, 'LF'), | ||
email: user.local.email, | ||
created_at: user.createdAt, | ||
role: get(user, 'role.name', ''), | ||
payment: get(user, 'customers[0].payment.iban') && get(user, 'customers[0].payment.bic') ? 'yes' : 'no', | ||
signedMandate: mandates && mandates.length ? mandates[mandates.length - 1].signedAt ? 'yes' : 'no' : 'no', | ||
subscriptionsAccepted: get(user, 'customers[0].subscriptionsAccepted') ? 'yes' : 'no', | ||
} | ||
); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ import routes from './routes' | |
import alenvi from '../helpers/alenvi' | ||
import store from '../store/index' | ||
import { checkPermission } from '../helpers/checkPermission' | ||
import { identifyUser } from '../helpers/userpilot'; | ||
|
||
Vue.use(VueRouter) | ||
Vue.use(VueMeta); | ||
|
@@ -33,6 +34,8 @@ Router.beforeEach(async (to, from, next) => { | |
} | ||
if (checkPermission(to, store.getters['main/user'])) { | ||
store.commit('main/changeRefreshState', false); | ||
identifyUser(store.getters['main/user']) | ||
window.userpilot.reload(); | ||
next(); | ||
} else { | ||
next('/401'); | ||
|
@@ -46,12 +49,16 @@ Router.beforeEach(async (to, from, next) => { | |
} | ||
if (checkPermission(to, store.getters['main/user'])) { | ||
store.commit('main/changeRefreshState', false); | ||
identifyUser(store.getters['main/user']) | ||
window.userpilot.reload(); | ||
next(); | ||
} else { | ||
next('/401'); | ||
} | ||
} | ||
} else { | ||
identifyUser(store.getters['main/user']) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tu ne reload pas ici ? pourquoi ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. C'est un oubli ''-_- |
||
window.userpilot.reload(); | ||
next(); | ||
} | ||
}); | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
pourquoi tu as juste un
identify
ici alors que pour les souscriptions tu astrack
etidentify
?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.
C'est un oubli '-_-