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] Crawler Landing Page #100822

Merged
merged 13 commits into from
Jun 2, 2021
Merged
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ import { i18n } from '@kbn/i18n';

export const CRAWLER_TITLE = i18n.translate(
'xpack.enterpriseSearch.appSearch.engine.crawler.title',
{ defaultMessage: 'Crawler' }
{ defaultMessage: 'Web Crawler' }
Copy link
Member

Choose a reason for hiding this comment

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

This changes the copy in the navigation link as well - are we good with that? I'm fine either way, maybe would just double check with @daveyholler

);
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.crawler-landing {
&__panel {
overflow: hidden;
background-image: url('./assets/bg_crawler_landing.png');
background-size: 45%;
background-repeat: no-repeat;
background-position: right -2rem;

> div {
max-width: 50rem;
}
}
}
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { setMockValues } from '../../../__mocks__';
import { mockEngineValues } from '../../__mocks__';

import React from 'react';

import { shallow, ShallowWrapper } from 'enzyme';

import { CrawlerLanding } from './crawler_landing';

describe('CrawlerLanding', () => {
let wrapper: ShallowWrapper;

beforeEach(() => {
setMockValues({ ...mockEngineValues });
wrapper = shallow(<CrawlerLanding />);
});

afterEach(() => {
jest.clearAllMocks();
});

it('contains an external documentation link', () => {
const externalDocumentationLink = wrapper.find('[data-test-subj="CrawlerDocumentationLink"]');

expect(externalDocumentationLink.prop('href')).toBe(
'https://www.elastic.co/guide/en/app-search/current/web-crawler.html'
);
});

it('contains a link to standalone App Search', () => {
const externalDocumentationLink = wrapper.find('[data-test-subj="CrawlerStandaloneLink"]');

expect(externalDocumentationLink.prop('href')).toBe('/as/engines/some-engine/crawler');
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import React from 'react';

import {
EuiButton,
EuiLink,
EuiPageHeader,
EuiPanel,
EuiSpacer,
EuiText,
EuiTitle,
} from '@elastic/eui';
import { i18n } from '@kbn/i18n';

import { getAppSearchUrl } from '../../../shared/enterprise_search_url';
import { ENGINE_CRAWLER_PATH } from '../../routes';
import { generateEnginePath } from '../engine';

import './crawler_landing.scss';
import { CRAWLER_TITLE } from '.';

export const CrawlerLanding: React.FC = () => (
<div data-test-subj="CrawlerLanding" className="crawler-landing">
<EuiPageHeader pageTitle={CRAWLER_TITLE} />
<EuiSpacer />
<EuiPanel grow paddingSize="l" className="crawler-landing__panel">
<div>
<EuiTitle size="s">
<h1>
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
{i18n.translate('xpack.enterpriseSearch.appSearch.engine.crawler.landingPage.title', {
defaultMessage: 'Setup the Web Crawler',
})}
byronhulcher marked this conversation as resolved.
Show resolved Hide resolved
</h1>
</EuiTitle>
byronhulcher marked this conversation as resolved.
Show resolved Hide resolved
<EuiSpacer />
<EuiText>
<p>
{i18n.translate(
'xpack.enterpriseSearch.appSearch.engine.crawler.landingPage.description',
{
defaultMessage:
"Easily index your website's content. To get started, enter your domain name, provide optional entry points and crawl rules, and we will handle the rest.",
}
)}{' '}
<EuiLink
external
target="_blank"
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
href="https://www.elastic.co/guide/en/app-search/current/web-crawler.html"
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
data-test-subj="CrawlerDocumentationLink"
>
{i18n.translate(
'xpack.enterpriseSearch.appSearch.engine.crawler.landingPage.documentationLinkLabel',
{
defaultMessage: 'Learn more about the web crawler',
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
}
)}
</EuiLink>
</p>
</EuiText>
<EuiSpacer />
<EuiButton
iconType="popout"
fill
color="primary"
href={getAppSearchUrl(generateEnginePath(ENGINE_CRAWLER_PATH))}
target="_blank"
data-test-subj="CrawlerStandaloneLink"
>
{i18n.translate(
'xpack.enterpriseSearch.appSearch.engine.crawler.landingPage.standaloneLinkLabel',
{
defaultMessage: 'Configure the web crawler',
}
)}
</EuiButton>
<EuiSpacer size="xl" />
</div>
</EuiPanel>
</div>
);
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { setMockValues } from '../../../__mocks__';

import { mockEngineValues } from '../../__mocks__';

import React from 'react';
import { Switch } from 'react-router-dom';

import { shallow } from 'enzyme';

import { CrawlerLanding } from './crawler_landing';
import { CrawlerRouter } from './crawler_router';

describe('CrawlerRouter', () => {
beforeEach(() => {
setMockValues({ ...mockEngineValues });
});

afterEach(() => {
jest.clearAllMocks();
});

it('renders a landing page', () => {
const wrapper = shallow(<CrawlerRouter />);

expect(wrapper.find(Switch)).toHaveLength(1);
expect(wrapper.find(CrawlerLanding)).toHaveLength(1);
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

import React from 'react';
import { Route, Switch } from 'react-router-dom';

import { SetAppSearchChrome as SetPageChrome } from '../../../shared/kibana_chrome';

import { getEngineBreadcrumbs } from '../engine';

import { CrawlerLanding } from './crawler_landing';

export const CrawlerRouter: React.FC = () => {
byronhulcher marked this conversation as resolved.
Show resolved Hide resolved
return (
<Switch>
<Route>
<SetPageChrome trail={getEngineBreadcrumbs()} />
cee-chen marked this conversation as resolved.
Show resolved Hide resolved
<CrawlerLanding />
</Route>
</Switch>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
*/

export { CRAWLER_TITLE } from './constants';
export { CrawlerRouter } from './crawler_router';
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { useValues } from 'kea';
import { EuiText, EuiBadge, EuiIcon, EuiFlexGroup, EuiFlexItem } from '@elastic/eui';
import { i18n } from '@kbn/i18n';

import { getAppSearchUrl } from '../../../shared/enterprise_search_url';
import { SideNavLink, SideNavItem } from '../../../shared/layout';
import { AppLogic } from '../../app_logic';
import {
Expand Down Expand Up @@ -170,8 +169,7 @@ export const EngineNav: React.FC = () => {
)}
{canViewEngineCrawler && !isMetaEngine && (
<SideNavLink
isExternal
to={getAppSearchUrl(generateEnginePath(ENGINE_CRAWLER_PATH))}
to={generateEnginePath(ENGINE_CRAWLER_PATH)}
data-test-subj="EngineCrawlerLink"
>
{CRAWLER_TITLE}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { shallow } from 'enzyme';
import { Loading } from '../../../shared/loading';
import { AnalyticsRouter } from '../analytics';
import { ApiLogs } from '../api_logs';
import { CrawlerRouter } from '../crawler';
import { CurationsRouter } from '../curations';
import { Documents, DocumentDetail } from '../documents';
import { EngineOverview } from '../engine_overview';
Expand Down Expand Up @@ -168,4 +169,11 @@ describe('EngineRouter', () => {

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

it('renders a crawler view', () => {
setMockValues({ ...values, myRole: { canViewEngineCrawler: true } });
const wrapper = shallow(<EngineRouter />);

expect(wrapper.find(CrawlerRouter)).toHaveLength(1);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
ENGINE_DOCUMENTS_PATH,
ENGINE_DOCUMENT_DETAIL_PATH,
ENGINE_SCHEMA_PATH,
// ENGINE_CRAWLER_PATH,
ENGINE_CRAWLER_PATH,
META_ENGINE_SOURCE_ENGINES_PATH,
ENGINE_RELEVANCE_TUNING_PATH,
ENGINE_SYNONYMS_PATH,
Expand All @@ -34,6 +34,7 @@ import {
} from '../../routes';
import { AnalyticsRouter } from '../analytics';
import { ApiLogs } from '../api_logs';
import { CrawlerRouter } from '../crawler';
import { CurationsRouter } from '../curations';
import { DocumentDetail, Documents } from '../documents';
import { EngineOverview } from '../engine_overview';
Expand All @@ -52,7 +53,7 @@ export const EngineRouter: React.FC = () => {
canViewEngineAnalytics,
canViewEngineDocuments,
canViewEngineSchema,
// canViewEngineCrawler,
canViewEngineCrawler,
canViewMetaEngineSourceEngines,
canManageEngineRelevanceTuning,
canManageEngineSynonyms,
Expand Down Expand Up @@ -143,6 +144,11 @@ export const EngineRouter: React.FC = () => {
<SourceEngines />
</Route>
)}
{canViewEngineCrawler && (
<Route path={ENGINE_CRAWLER_PATH}>
<CrawlerRouter />
</Route>
)}
<Route>
<SetPageChrome trail={getEngineBreadcrumbs()} />
<EngineOverview />
Expand Down