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

[App Search] Convert Schema pages to new page template #102846

Merged
merged 9 commits into from
Jun 22, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,18 @@ export const EngineRouter: React.FC = () => {
<Documents />
</Route>
)}
{canViewEngineSchema && (
<Route path={ENGINE_SCHEMA_PATH}>
<SchemaRouter />
</Route>
)}
{/* TODO: Remove layout once page template migration is over */}
<Layout navigation={<AppSearchNav />}>
{canViewEngineAnalytics && (
<Route path={ENGINE_ANALYTICS_PATH}>
<AnalyticsRouter />
</Route>
)}
{canViewEngineSchema && (
<Route path={ENGINE_SCHEMA_PATH}>
<SchemaRouter />
</Route>
)}
{canManageEngineCurations && (
<Route path={ENGINE_CURATIONS_PATH}>
<CurationsRouter />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
* 2.0.
*/

import { setMockValues } from '../../../../__mocks__/kea_logic';

import React from 'react';

import { shallow } from 'enzyme';

import { EuiEmptyPrompt, EuiButton } from '@elastic/eui';

import { SchemaAddFieldModal } from '../../../../shared/schema';

import { EmptyState } from './';

describe('EmptyState', () => {
Expand All @@ -24,4 +28,11 @@ describe('EmptyState', () => {
expect.stringContaining('#indexing-documents-guide-schema')
);
});

it('renders a modal that lets a user add a new schema field', () => {
setMockValues({ isModalOpen: true });
const wrapper = shallow(<EmptyState />);

expect(wrapper.find(SchemaAddFieldModal)).toHaveLength(1);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@

import React from 'react';

import { EuiPanel, EuiEmptyPrompt, EuiButton } from '@elastic/eui';
import { useValues, useActions } from 'kea';

import { EuiEmptyPrompt, EuiButton } from '@elastic/eui';
import { i18n } from '@kbn/i18n';

import { SchemaAddFieldModal } from '../../../../shared/schema';
import { DOCS_PREFIX } from '../../../routes';
import { SchemaLogic } from '../schema_logic';

export const EmptyState: React.FC = () => {
const { isModalOpen } = useValues(SchemaLogic);
const { addSchemaField, closeModal } = useActions(SchemaLogic);

return (
<EuiPanel color="subdued">
<>
<EuiEmptyPrompt
iconType="database"
title={
Expand Down Expand Up @@ -45,6 +52,9 @@ export const EmptyState: React.FC = () => {
</EuiButton>
}
/>
</EuiPanel>
{isModalOpen && (
<SchemaAddFieldModal addNewField={addSchemaField} closeAddFieldModal={closeModal} />
)}
</>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,11 @@ import React from 'react';

import { shallow } from 'enzyme';

import { Loading } from '../../../../shared/loading';
import { SchemaErrorsAccordion } from '../../../../shared/schema';

import { ReindexJob } from './';

describe('ReindexJob', () => {
const props = {
schemaBreadcrumb: ['Engines', 'some-engine', 'Schema'],
};
const values = {
dataLoading: false,
fieldCoercionErrors: {},
Expand All @@ -43,27 +39,20 @@ describe('ReindexJob', () => {
});

it('renders', () => {
const wrapper = shallow(<ReindexJob {...props} />);
const wrapper = shallow(<ReindexJob />);

expect(wrapper.find(SchemaErrorsAccordion)).toHaveLength(1);
expect(wrapper.find(SchemaErrorsAccordion).prop('generateViewPath')).toHaveLength(1);
});

it('calls loadReindexJob on page load', () => {
shallow(<ReindexJob {...props} />);
shallow(<ReindexJob />);

expect(actions.loadReindexJob).toHaveBeenCalledWith('abc1234567890');
});

it('renders a loading state', () => {
setMockValues({ ...values, dataLoading: true });
const wrapper = shallow(<ReindexJob {...props} />);

expect(wrapper.find(Loading)).toHaveLength(1);
});

it('renders schema errors with links to document pages', () => {
const wrapper = shallow(<ReindexJob {...props} />);
const wrapper = shallow(<ReindexJob />);
const generateViewPath = wrapper
.find(SchemaErrorsAccordion)
.prop('generateViewPath') as Function;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,17 @@ import { useParams } from 'react-router-dom';

import { useActions, useValues } from 'kea';

import { EuiPageHeader, EuiPageContentBody } from '@elastic/eui';
import { i18n } from '@kbn/i18n';

import { FlashMessages } from '../../../../shared/flash_messages';
import { SetAppSearchChrome as SetPageChrome } from '../../../../shared/kibana_chrome';
import { BreadcrumbTrail } from '../../../../shared/kibana_chrome/generate_breadcrumbs';
import { Loading } from '../../../../shared/loading';
import { SchemaErrorsAccordion } from '../../../../shared/schema';

import { ENGINE_DOCUMENT_DETAIL_PATH } from '../../../routes';
import { EngineLogic, generateEnginePath } from '../../engine';
import { EngineLogic, generateEnginePath, getEngineBreadcrumbs } from '../../engine';
import { AppSearchPageTemplate } from '../../layout';
import { SCHEMA_TITLE } from '../constants';

import { ReindexJobLogic } from './reindex_job_logic';

interface Props {
schemaBreadcrumb: BreadcrumbTrail;
}

export const ReindexJob: React.FC<Props> = ({ schemaBreadcrumb }) => {
export const ReindexJob: React.FC = () => {
const { reindexJobId } = useParams() as { reindexJobId: string };
const { loadReindexJob } = useActions(ReindexJobLogic);
const { dataLoading, fieldCoercionErrors } = useValues(ReindexJobLogic);
Expand All @@ -40,34 +32,29 @@ export const ReindexJob: React.FC<Props> = ({ schemaBreadcrumb }) => {
loadReindexJob(reindexJobId);
}, [reindexJobId]);

if (dataLoading) return <Loading />;

return (
<>
<SetPageChrome
trail={[
...schemaBreadcrumb,
i18n.translate('xpack.enterpriseSearch.appSearch.engine.schema.reindexErrorsBreadcrumb', {
defaultMessage: 'Reindex errors',
}),
]}
/>
<EuiPageHeader
pageTitle={i18n.translate(
<AppSearchPageTemplate
pageChrome={getEngineBreadcrumbs([
SCHEMA_TITLE,
i18n.translate('xpack.enterpriseSearch.appSearch.engine.schema.reindexErrorsBreadcrumb', {
defaultMessage: 'Reindex errors',
}),
])}
pageHeader={{
pageTitle: i18n.translate(
'xpack.enterpriseSearch.appSearch.engine.schema.reindexJob.title',
{ defaultMessage: 'Schema change errors' }
)}
),
}}
isLoading={dataLoading}
>
<SchemaErrorsAccordion
fieldCoercionErrors={fieldCoercionErrors}
schema={schema!}
generateViewPath={(documentId: string) =>
generateEnginePath(ENGINE_DOCUMENT_DETAIL_PATH, { documentId })
}
/>
<FlashMessages />
<EuiPageContentBody>
<SchemaErrorsAccordion
fieldCoercionErrors={fieldCoercionErrors}
schema={schema!}
generateViewPath={(documentId: string) =>
generateEnginePath(ENGINE_DOCUMENT_DETAIL_PATH, { documentId })
}
/>
</EuiPageContentBody>
</>
</AppSearchPageTemplate>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ describe('SchemaLogic', () => {

describe('selectors', () => {
describe('hasSchema', () => {
it('returns true when the schema obj has items', () => {
mountAndSetSchema({ schema: { test: SchemaType.Text } });
it('returns true when the cached server schema obj has items', () => {
mount({ cachedSchema: { test: SchemaType.Text } });
expect(SchemaLogic.values.hasSchema).toEqual(true);
});

it('returns false when the schema obj is empty', () => {
mountAndSetSchema({ schema: {} });
it('returns false when the cached server schema obj is empty', () => {
mount({ schema: {} });
expect(SchemaLogic.values.hasSchema).toEqual(false);
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ export const SchemaLogic = kea<MakeLogicType<SchemaValues, SchemaActions>>({
],
},
selectors: {
hasSchema: [(selectors) => [selectors.schema], (schema) => Object.keys(schema).length > 0],
hasSchema: [
(selectors) => [selectors.cachedSchema],
(cachedSchema) => Object.keys(cachedSchema).length > 0,
],
hasSchemaChanged: [
(selectors) => [selectors.schema, selectors.cachedSchema],
(schema, cachedSchema) => !isEqual(schema, cachedSchema),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,21 @@ import { Route, Switch } from 'react-router-dom';

import { useValues } from 'kea';

import { SetAppSearchChrome as SetPageChrome } from '../../../shared/kibana_chrome';
import { ENGINE_REINDEX_JOB_PATH } from '../../routes';
import { EngineLogic, getEngineBreadcrumbs } from '../engine';
import { EngineLogic } from '../engine';

import { SCHEMA_TITLE } from './constants';
import { ReindexJob } from './reindex_job';
import { Schema, MetaEngineSchema } from './views';

export const SchemaRouter: React.FC = () => {
const { isMetaEngine } = useValues(EngineLogic);
const schemaBreadcrumb = getEngineBreadcrumbs([SCHEMA_TITLE]);

return (
<Switch>
<Route path={ENGINE_REINDEX_JOB_PATH}>
<ReindexJob schemaBreadcrumb={schemaBreadcrumb} />
</Route>
<Route>
<SetPageChrome trail={schemaBreadcrumb} />
{isMetaEngine ? <MetaEngineSchema /> : <Schema />}
<ReindexJob />
</Route>
<Route>{isMetaEngine ? <MetaEngineSchema /> : <Schema />}</Route>
</Switch>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@

import { setMockValues, setMockActions } from '../../../../__mocks__/kea_logic';
import '../../../../__mocks__/shallow_useeffect.mock';
import '../../../__mocks__/engine_logic.mock';

import React from 'react';

import { shallow } from 'enzyme';

import { EuiCallOut } from '@elastic/eui';

import { Loading } from '../../../../shared/loading';

import { MetaEnginesSchemaTable, MetaEnginesConflictsTable } from '../components';

import { MetaEngineSchema } from './';
Expand Down Expand Up @@ -46,13 +45,6 @@ describe('MetaEngineSchema', () => {
expect(actions.loadSchema).toHaveBeenCalled();
});

it('renders a loading state', () => {
setMockValues({ ...values, dataLoading: true });
const wrapper = shallow(<MetaEngineSchema />);

expect(wrapper.find(Loading)).toHaveLength(1);
});

it('renders an inactive fields callout & table when source engines have schema conflicts', () => {
setMockValues({ ...values, hasConflicts: true, conflictingFieldsCount: 5 });
const wrapper = shallow(<MetaEngineSchema />);
Expand Down
Loading