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

Remove wkw datasource suggestions #7697

Merged
merged 22 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2849111
Remove suggestion route
frcroth Mar 18, 2024
c9f752a
Remove WKWDataFormat
frcroth Mar 18, 2024
de8017a
Lint
frcroth Mar 18, 2024
c1b52f4
Merge branch 'master' into remove-wkw-suggestions
fm3 Mar 21, 2024
b264843
wip remove in frontend
fm3 Mar 21, 2024
1673c15
Merge branch 'master' into remove-wkw-suggestions
fm3 Apr 2, 2024
c1c4630
unify readInboxDataSource
fm3 Apr 2, 2024
97a9d6d
remove datasource suggestion
MichaelBuessemeyer May 24, 2024
1d5437b
Merge branch 'master' of github.com:scalableminds/webknossos into rem…
MichaelBuessemeyer May 24, 2024
b0be7cd
remove left over code line linking to dataset import and clean up code
MichaelBuessemeyer May 24, 2024
5dd5e4d
remove unused imports in backend
MichaelBuessemeyer May 24, 2024
cb4d67f
always show edit settings for datasets the user can edit
MichaelBuessemeyer May 29, 2024
ef4188b
Merge branch 'master' of github.com:scalableminds/webknossos into rem…
MichaelBuessemeyer May 31, 2024
db9ba6d
remove unused type
MichaelBuessemeyer May 31, 2024
f755c22
er-add dataset actions (show error & delete dataset) for broken datas…
MichaelBuessemeyer May 31, 2024
724445d
Merge branch 'master' into remove-wkw-suggestions
fm3 Jun 5, 2024
5f7c546
Merge branch 'master' into remove-wkw-suggestions
fm3 Jun 18, 2024
b5fb853
adapt wording in messages
fm3 Jun 18, 2024
67e3295
add changelog entry
MichaelBuessemeyer Jun 18, 2024
dd1f4e1
Merge branch 'remove-wkw-suggestions' of github.com:scalableminds/web…
MichaelBuessemeyer Jun 18, 2024
c1cee08
update migrationguide,changelog,docs
fm3 Jun 18, 2024
dab6a0c
Merge branch 'remove-wkw-suggestions' of github.com:scalableminds/web…
fm3 Jun 18, 2024
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
11 changes: 0 additions & 11 deletions frontend/javascripts/admin/admin_rest_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import type {
APIBuildInfo,
APIConnectomeFile,
APIDataSource,
APIDataSourceWithMessages,
APIDataStore,
APIDataset,
APIDatasetId,
Expand Down Expand Up @@ -1116,16 +1115,6 @@ export async function getDatasets(
return datasets;
}

export function getDatasetDatasource(
dataset: APIMaybeUnimportedDataset,
): Promise<APIDataSourceWithMessages> {
return doWithToken((token) =>
Request.receiveJSON(
`${dataset.dataStore.url}/data/datasets/${dataset.owningOrganization}/${dataset.name}?token=${token}`,
),
);
}

export function readDatasetDatasource(dataset: APIDataset): Promise<APIDataSource> {
return doWithToken((token) =>
Request.receiveJSON(
Expand Down
2 changes: 1 addition & 1 deletion frontend/javascripts/admin/dataset/dataset_add_view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function DatasetAddView({ history }: RouteComponentProps) {
View the Dataset
</Button>
<Button
onClick={() => history.push(`/datasets/${organization}/${datasetName}/import`)}
onClick={() => history.push(`/datasets/${organization}/${datasetName}/edit`)}
Comment on lines 98 to +99
Copy link
Contributor

Choose a reason for hiding this comment

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

As according to the pr description, the "import" should always be named edit, I got rid of the import route (see router.tsx). I hope I didn't misunderstand this 🤞

>
Go to Dataset Settings
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
EllipsisOutlined,
EyeOutlined,
LoadingOutlined,
PlusCircleOutlined,
PlusOutlined,
ReloadOutlined,
SettingOutlined,
Expand All @@ -18,9 +17,9 @@ import Toast from "libs/toast";
import messages from "messages";
import CreateExplorativeModal from "dashboard/advanced_dataset/create_explorative_modal";
import { MenuProps, Modal, Typography } from "antd";
import { useState } from "react";
import { confirmAsync } from "dashboard/dataset/helper_components";
import { useQueryClient } from "@tanstack/react-query";
import { useState } from "react";

const disabledStyle: React.CSSProperties = {
pointerEvents: "none",
Expand Down Expand Up @@ -193,18 +192,31 @@ function DatasetActionView(props: Props) {
style={disabledWhenReloadingStyle}
type="link"
>
{isReloading ? <LoadingOutlined /> : <ReloadOutlined className="icon-margin-right" />}
{isReloading ? (
<LoadingOutlined className="icon-margin-right" />
) : (
<ReloadOutlined className="icon-margin-right" />
)}
Reload
</a>
);
const importLink = (
<div className="dataset-table-actions">
<Link
to={`/datasets/${dataset.owningOrganization}/${dataset.name}/import`}
className="import-dataset"
const datasetSettingsLink = (
<>
<LinkWithDisabled
to={`/datasets/${dataset.owningOrganization}/${dataset.name}/edit`}
title="Open Dataset Settings"
disabled={isReloading}
>
<PlusCircleOutlined className="icon-margin-right" />
Import
<SettingOutlined className="icon-margin-right" />
Settings
</LinkWithDisabled>
</>
);
const brokenDatasetActions = (
<div className="dataset-table-actions">
<Link to={`/datasets/${dataset.owningOrganization}/${dataset.name}/edit`}>
<SettingOutlined className="icon-margin-right" />
Settings
</Link>
{reloadLink}
<a
Expand Down Expand Up @@ -236,41 +248,35 @@ function DatasetActionView(props: Props) {
) : null}
</div>
);

const activeDatasetActions = (
<>
{" "}
<NewAnnotationLink
dataset={dataset}
isReloading={isReloading}
isCreateExplorativeModalVisible={isCreateExplorativeModalVisible}
onShowCreateExplorativeModal={() => setIsCreateExplorativeModalVisible(true)}
onCloseCreateExplorativeModal={() => setIsCreateExplorativeModalVisible(false)}
/>
<LinkWithDisabled
to={`/datasets/${dataset.owningOrganization}/${dataset.name}/view`}
title="View Dataset"
disabled={isReloading}
>
<EyeOutlined className="icon-margin-right" />
View
</LinkWithDisabled>
{dataset.isEditable ? datasetSettingsLink : null}
{reloadLink}
</>
);
return (
<div>
{dataset.isEditable && !dataset.isActive ? importLink : null}
{dataset.isActive ? (
<div className="dataset-table-actions nowrap">
<NewAnnotationLink
dataset={dataset}
isReloading={isReloading}
isCreateExplorativeModalVisible={isCreateExplorativeModalVisible}
onShowCreateExplorativeModal={() => setIsCreateExplorativeModalVisible(true)}
onCloseCreateExplorativeModal={() => setIsCreateExplorativeModalVisible(false)}
/>
<LinkWithDisabled
to={`/datasets/${dataset.owningOrganization}/${dataset.name}/view`}
title="View Dataset"
disabled={isReloading}
>
<EyeOutlined className="icon-margin-right" />
View
</LinkWithDisabled>
{dataset.isEditable ? (
<React.Fragment>
<LinkWithDisabled
to={`/datasets/${dataset.owningOrganization}/${dataset.name}/edit`}
title="Open Dataset Settings"
disabled={isReloading}
>
<SettingOutlined className="icon-margin-right" />
Settings
</LinkWithDisabled>
{reloadLink}
</React.Fragment>
) : null}
</div>
) : null}
{dataset.isEditable && !dataset.isActive ? brokenDatasetActions : null}
<div className="dataset-table-actions nowrap">
{dataset.isActive ? activeDatasetActions : null}
</div>
</div>
);
}
Expand Down Expand Up @@ -330,7 +336,7 @@ export function getDatasetActionContextMenu({
},
}
: null,
dataset.isEditable && dataset.isActive
Copy link
Contributor

Choose a reason for hiding this comment

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

Am I correct, that we no longer have a "not imported" state for a dataset? In that case, is it possible for a dataset to not be active? The only option would be to delete a dataset 🤔

My thought is that we may not need this field isActive anymore / do not need to consider it any longer in the frontend 🤔

Copy link
Member

Choose a reason for hiding this comment

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

Am I correct, that we no longer have a "not imported" state for a dataset? In that case, is it possible for a dataset to not be active?

I don't know what happens now if a datasource properties json does not exist (or is incomplete). I assume the dataset won't be active then. However, the front-end should still show the edit button. Otherwise, the dataset would not be usable/fixable as you say.

dataset.isEditable
? {
key: "edit",
label: "Open Settings",
Expand All @@ -340,15 +346,6 @@ export function getDatasetActionContextMenu({
}
: null,

dataset.isEditable && !dataset.isActive
? {
key: "import",
label: "Import",
onClick: () => {
window.location.href = `/datasets/${dataset.owningOrganization}/${dataset.name}/import`;
},
}
: null,
{
key: "reload",
label: "Reload",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,12 @@ export default function DatasetSettingsDataTab({
form,
activeDataSourceEditMode,
onChange,
additionalAlert,
dataset,
}: {
allowRenamingDataset: boolean;
form: FormInstance;
activeDataSourceEditMode: "simple" | "advanced";
onChange: (arg0: "simple" | "advanced") => void;
additionalAlert?: React.ReactNode | null | undefined;
dataset?: APIDataset | null | undefined;
}) {
// Using the return value of useWatch for the `dataSource` var
Expand Down Expand Up @@ -113,8 +111,6 @@ export default function DatasetSettingsDataTab({
</Tooltip>
</div>

{additionalAlert}

<Hideable hidden={activeDataSourceEditMode !== "simple"}>
<RetryingErrorBoundary>
<SimpleDatasetForm
Expand Down
Loading