Skip to content

Commit 0e03693

Browse files
authored
Fix segments query parameters in GET requests (#2967)
1 parent 2f1ad5f commit 0e03693

File tree

16 files changed

+43
-38
lines changed

16 files changed

+43
-38
lines changed

frontend/src/config/integrations/discourse/components/discourse-settings-drawer.vue

-2
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,6 @@ const logoUrl = discourse.image;
354354
355355
const isVisible = computed({
356356
get() {
357-
console.log('isVisible', props);
358357
return props.modelValue;
359358
},
360359
set(value) {
@@ -395,7 +394,6 @@ onMounted(() => {
395394
webhookSecret.value = props.integration?.settings.webhookSecret;
396395
payloadURL.value = `${window.location.origin}/api/webhooks/discourse`;
397396
isAPIConnectionValid.value = true;
398-
console.log(props);
399397
}
400398
formSnapshot();
401399
});

frontend/src/config/integrations/github/components/connect/github-connect-modal.vue

-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ const getGithubInstallations = () => {
206206
IntegrationService.getGithubInstallations()
207207
.then((res: GithubInstallation[]) => {
208208
installations.value = res;
209-
console.log(res);
210209
});
211210
};
212211

frontend/src/modules/activity/activity-service.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -71,25 +71,27 @@ export class ActivityService {
7171
return response.data;
7272
}
7373

74-
static async listActivityTypes(segments) {
74+
static async listActivityTypes(segment) {
75+
const segments = segment || getSelectedProjectGroup().id;
7576
const response = await authAxios.get(
7677
'/activity/type',
7778
{
7879
params: {
79-
segments,
80+
segments: segments ? [segments] : [],
8081
},
8182
},
8283
);
8384

8485
return response.data;
8586
}
8687

87-
static async listActivityChannels(segments) {
88+
static async listActivityChannels(segment) {
89+
const segments = segment || getSelectedProjectGroup().id;
8890
const response = await authAxios.get(
8991
'/activity/channel',
9092
{
9193
params: {
92-
segments,
94+
segments: segments ? [segments] : [],
9395
},
9496
},
9597
);

frontend/src/modules/activity/components/activity-form-drawer.vue

+2-6
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ import Message from '@/shared/message/message';
185185
import formChangeDetector from '@/shared/form/form-change';
186186
import AppAutocompleteOneInput from '@/shared/form/autocomplete-one-input.vue';
187187
import { useActivityStore } from '@/modules/activity/store/pinia';
188-
import { useLfSegmentsStore } from '@/modules/lf/segments/store';
189188
import useProductTracking from '@/shared/modules/monitoring/useProductTracking';
190189
import { EventType, FeatureEventKey } from '@/shared/modules/monitoring/types/event';
191190
import { dateHelper } from '@/shared/date-helper/date-helper';
@@ -223,9 +222,6 @@ const { fetchActivityTypes } = activityTypeStore;
223222
const activityStore = useActivityStore();
224223
const { fetchActivities, fetchActivityChannels } = activityStore;
225224
226-
const lsSegmentsStore = useLfSegmentsStore();
227-
const { selectedProjectGroup } = storeToRefs(lsSegmentsStore);
228-
229225
// Form control
230226
const form = reactive({
231227
member: null,
@@ -407,8 +403,8 @@ watch(
407403
() => props.subprojectId,
408404
(subprojectId) => {
409405
if (subprojectId) {
410-
fetchActivityTypes([selectedProjectGroup.value.id]);
411-
fetchActivityChannels([selectedProjectGroup.value.id]);
406+
fetchActivityTypes();
407+
fetchActivityChannels();
412408
}
413409
},
414410
{ immediate: true, deep: true },

frontend/src/modules/activity/store/pinia/actions.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export default {
3333
return Promise.reject(err);
3434
});
3535
},
36-
fetchActivityChannels(segments: string[]) {
37-
return ActivityService.listActivityChannels(segments)
36+
fetchActivityChannels(segment: string) {
37+
return ActivityService.listActivityChannels(segment)
3838
.then((res) => {
3939
this.activityChannels = res;
4040
return Promise.resolve(res);

frontend/src/modules/activity/store/type/actions.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export default {
2424
return Promise.resolve(types);
2525
});
2626
},
27-
fetchActivityTypes(segments) {
28-
return ActivityService.listActivityTypes(segments)
27+
fetchActivityTypes(segment) {
28+
return ActivityService.listActivityTypes(segment)
2929
.then((types) => {
3030
this.types = types;
3131
return Promise.resolve(types);

frontend/src/modules/admin/modules/integration/pages/integration-list.page.vue

-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ onMounted(() => {
137137
doFetch();
138138
findSubProject(id)
139139
.then((res) => {
140-
console.log(res);
141140
subproject.value = res;
142141
});
143142
});

frontend/src/modules/contributor/helpers/contributor.helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const useContributorHelpers = () => {
6868

6969
const activeOrganization = (contributor: Contributor) => {
7070
const { organizations } = contributor;
71-
console.log(organizations);
71+
7272
return organizations.find((org) => org.memberOrganizations.affiliationOverride?.isPrimaryWorkExperience
7373
&& !!org.memberOrganizations.dateStart
7474
&& !org.memberOrganizations.dateEnd)

frontend/src/modules/integration/components/integration-progress-wrapper.vue

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ watch(() => props.segments, () => {
4343
}, { deep: true });
4444
4545
onMounted(() => {
46-
console.log('Component mounted');
4746
resume();
4847
});
4948

frontend/src/modules/integration/integration-routes.js

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export default [
3232
(to, from, next) => {
3333
const segmentId = localStorage.getItem('segmentId');
3434
const segmentGrandparentId = localStorage.getItem('segmentGrandparentId');
35-
console.log(to.query.state);
3635
const state = to.query.state ?? '';
3736

3837
// Redirect to integrations list page with correct id

frontend/src/modules/integration/integration-store.js

-2
Original file line numberDiff line numberDiff line change
@@ -708,8 +708,6 @@ export default {
708708
grandparentId,
709709
},
710710
) {
711-
console.log('doGroupsioConnect', email, token, groups, isUpdate);
712-
713711
try {
714712
commit('CREATE_STARTED');
715713

frontend/src/modules/layout/components/menu/menu.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ watch(
143143
selectedProjectGroup,
144144
(updatedProjectGroup) => {
145145
if (updatedProjectGroup) {
146-
fetchActivityTypes([selectedProjectGroup.value.id]);
147-
fetchActivityChannels([selectedProjectGroup.value.id]);
146+
fetchActivityTypes();
147+
fetchActivityChannels();
148148
}
149149
},
150150
{ immediate: true, deep: true },

frontend/src/modules/member/member-service.js

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import authAxios from '@/shared/axios/auth-axios';
2-
import { AuthService } from '@/modules/auth/services/auth.service';
32
import { storeToRefs } from 'pinia';
43
import { useLfSegmentsStore } from '@/modules/lf/segments/store';
5-
import { getSegmentsFromProjectGroup } from '@/utils/segments';
64

75
const getSelectedProjectGroup = () => {
86
const lsSegmentsStore = useLfSegmentsStore();
@@ -274,7 +272,6 @@ export class MemberService {
274272

275273
static async fetchMergeSuggestions(limit, offset, query) {
276274
const segments = [
277-
...getSegmentsFromProjectGroup(getSelectedProjectGroup()),
278275
getSelectedProjectGroup().id,
279276
];
280277

@@ -293,26 +290,30 @@ export class MemberService {
293290
.then(({ data }) => Promise.resolve(data));
294291
}
295292

296-
static async getCustomAttribute(id, segments) {
293+
static async getCustomAttribute(id) {
297294
const response = await authAxios.get(
298295
`/settings/members/attributes/${id}`,
299296
{
300-
data: [
301-
segments,
302-
],
297+
params: {
298+
segments: [
299+
getSelectedProjectGroup().id,
300+
],
301+
},
303302
},
304303
);
305304

306305
return response.data;
307306
}
308307

309-
static async fetchCustomAttributes(segments) {
308+
static async fetchCustomAttributes() {
310309
const response = await authAxios.get(
311310
'/settings/members/attributes',
312311
{
313-
data: [
314-
segments,
315-
],
312+
params: {
313+
segments: [
314+
getSelectedProjectGroup().id,
315+
],
316+
},
316317
},
317318
);
318319

frontend/src/modules/organization/pages/organization-list-page.vue

-2
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,6 @@ const showLoading = (filter: any, body: any): boolean => {
144144
const fetch = ({
145145
filter, orderBy, body,
146146
}: FilterQuery) => {
147-
console.log('fetch', filter, orderBy, body);
148-
149147
if (!loading.value) {
150148
loading.value = showLoading(filter, body);
151149
}

frontend/src/shared/modules/merge/services/merge-actions.service.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1+
import { useLfSegmentsStore } from '@/modules/lf/segments/store';
12
import authAxios from '@/shared/axios/auth-axios';
23
import { MergeAction } from '@/shared/modules/merge/types/MemberActions';
4+
import { storeToRefs } from 'pinia';
5+
6+
const getSelectedProjectGroup = () => {
7+
const lsSegmentsStore = useLfSegmentsStore();
8+
const { selectedProjectGroup } = storeToRefs(lsSegmentsStore);
9+
10+
return selectedProjectGroup.value;
11+
};
312

413
export class MergeActionsService {
514
static async list(entityId: string, type: string = 'member', limit = 1): Promise<MergeAction[]> {
@@ -10,6 +19,7 @@ export class MergeActionsService {
1019
entityId,
1120
type,
1221
limit,
22+
segments: getSelectedProjectGroup()?.id ? [getSelectedProjectGroup()?.id] : [],
1323
},
1424
},
1525
);

frontend/src/shared/modules/saved-views/components/SavedViews.vue

+6
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ import usePermissions from '@/shared/modules/permissions/helpers/usePermissions'
158158
import { LfPermission } from '@/shared/modules/permissions/types/Permissions';
159159
import LfIcon from '@/ui-kit/icon/Icon.vue';
160160
import LfButton from '@/ui-kit/button/Button.vue';
161+
import { useLfSegmentsStore } from '@/modules/lf/segments/store';
162+
import { storeToRefs } from 'pinia';
161163
162164
const props = defineProps<{
163165
modelValue: Filter,
@@ -172,6 +174,9 @@ const emit = defineEmits<{(e: 'update:modelValue', value: Filter): any}>();
172174
173175
const { hasPermission } = usePermissions();
174176
177+
const lsSegmentsStore = useLfSegmentsStore();
178+
const { selectedProjectGroup } = storeToRefs(lsSegmentsStore);
179+
175180
// Drawer
176181
const isFormOpen = ref<boolean>(false);
177182
@@ -268,6 +273,7 @@ const allViews = computed<SavedView[]>(() => [
268273
const getViews = () => {
269274
SavedViewsService.query({
270275
placement: [props.placement],
276+
segments: selectedProjectGroup.value?.id ? [selectedProjectGroup.value.id] : [],
271277
})
272278
.then((res: SavedView[]) => {
273279
views.value = [];

0 commit comments

Comments
 (0)