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

Filter datasets by access #190

Merged
merged 3 commits into from
Feb 21, 2025
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion frontend/packages/@depmap/api/src/ApiContext.tsx
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ export interface SharedApi {
datasetId: string,
datasetToUpdate: DatasetUpdateArgs
) => Promise<BreadboxDataset>;
getGroups: () => Promise<Group[]>;
getGroups: (writeAccess?: boolean) => Promise<Group[]>;
postGroup: (groupArgs: GroupArgs) => Promise<Group>;
deleteGroup: (id: string) => Promise<any>;
postGroupEntry: (
19 changes: 16 additions & 3 deletions frontend/packages/@depmap/dataset-manager/src/components/index.tsx
Original file line number Diff line number Diff line change
@@ -53,7 +53,10 @@ export default function Datasets() {
dapi.updateDimensionType(dimTypeName, dimTypeArgs),
[dapi]
);
const getGroups = useCallback(() => dapi.getGroups(), [dapi]);
const getGroups = useCallback(() => dapi.getGroups(!isAdvancedMode), [
dapi,
isAdvancedMode,
]); // write access set to true if not advanced mode
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I appreciate this comment!

const getDataTypesAndPriorities = useCallback(
() => dapi.getDataTypesAndPriorities(),
[dapi]
@@ -115,7 +118,17 @@ export default function Datasets() {
useEffect(() => {
(async () => {
try {
const currentDatasets = await dapi.getBreadboxDatasets();
let currentDatasets = await dapi.getBreadboxDatasets();

if (!isAdvancedMode) {
const writeGroups = await dapi.getGroups(!isAdvancedMode);
const group_ids = writeGroups.map((group) => {
return group.id;
});
currentDatasets = currentDatasets.filter((dataset) =>
group_ids.includes(dataset.group_id)
);
}

setDatasets(currentDatasets);
const dimensionTypeDatasetNum = dimensionTypeDatasetCount(
@@ -139,7 +152,7 @@ export default function Datasets() {
setInitError(true);
}
})();
}, [dapi, getDimensionTypes]);
}, [dapi, getDimensionTypes, getGroups, isAdvancedMode]);

const datasetForm = useCallback(() => {
if (datasets) {
5 changes: 3 additions & 2 deletions frontend/packages/portal-frontend/src/bbAPI.ts
Original file line number Diff line number Diff line change
@@ -368,8 +368,9 @@ export class BreadboxApi {
return dataTypesPriorities;
}

getGroups(): Promise<Group[]> {
return this._fetch<Group[]>("/groups/");
getGroups(writeAccess: boolean = false): Promise<Group[]> {
const queryParams = { write_access: writeAccess };
return this._fetch<Group[]>(`/groups/?${encodeParams(queryParams)}`);
}

postGroup(groupArgs: GroupArgs): Promise<Group> {
2 changes: 1 addition & 1 deletion frontend/packages/portal-frontend/src/dAPI.ts
Original file line number Diff line number Diff line change
@@ -944,7 +944,7 @@ export class DepmapApi {
return Promise.reject(Error("Wrong api used. Check ApiContext"));
}

getGroups = (): Promise<Group[]> => {
getGroups = (writeAccess: boolean = false): Promise<Group[]> => {
return Promise.reject(Error("Wrong api used. Check ApiContext"));
};