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

[Workplace Search] Add sub nav and fix rendering bugs in Personal dashboard #96100

Merged
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const SourceSubNav: React.FC = () => {
const isCustom = serviceType === CUSTOM_SERVICE_TYPE;

return (
<>
<div className="sourcesSubNav">
<SideNavLink to={getContentSourcePath(SOURCE_DETAILS_PATH, id, isOrganization)}>
{NAV.OVERVIEW}
</SideNavLink>
Expand All @@ -53,6 +53,6 @@ export const SourceSubNav: React.FC = () => {
<SideNavLink to={getContentSourcePath(SOURCE_SETTINGS_PATH, id, isOrganization)}>
{NAV.SETTINGS}
</SideNavLink>
</>
</div>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import { EuiCallOut } from '@elastic/eui';

import { ViewContentHeader } from '../../components/shared/view_content_header';

import { SourceSubNav } from './components/source_sub_nav';

import {
PRIVATE_CAN_CREATE_PAGE_TITLE,
PRIVATE_VIEW_ONLY_PAGE_TITLE,
Expand All @@ -40,6 +42,7 @@ describe('PrivateSourcesLayout', () => {
const wrapper = shallow(<PrivateSourcesLayout>{children}</PrivateSourcesLayout>);

expect(wrapper.find('[data-test-subj="TestChildren"]')).toHaveLength(1);
expect(wrapper.find(SourceSubNav)).toHaveLength(1);
});

it('uses correct title and description when private sources are enabled', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import { EuiPage, EuiPageSideBar, EuiPageBody, EuiCallOut } from '@elastic/eui';
import { AppLogic } from '../../app_logic';
import { ViewContentHeader } from '../../components/shared/view_content_header';

import { SourceSubNav } from './components/source_sub_nav';

import {
PRIVATE_DASHBOARD_READ_ONLY_MODE_WARNING,
PRIVATE_CAN_CREATE_PAGE_TITLE,
Expand Down Expand Up @@ -49,6 +51,7 @@ export const PrivateSourcesLayout: React.FC<LayoutProps> = ({
<EuiPage className="enterpriseSearchLayout privateSourcesLayout">
<EuiPageSideBar className="enterpriseSearchLayout__sideBar privateSourcesLayout__sideBar">
<ViewContentHeader title={PAGE_TITLE} description={PAGE_DESCRIPTION} />
<SourceSubNav />
</EuiPageSideBar>
<EuiPageBody className="enterpriseSearchLayout__body" restrictWidth={restrictWidth}>
{readOnlyMode && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ describe('SourceLogic', () => {
SourceLogic.actions.initializeFederatedSummary(contentSource.id);

expect(http.get).toHaveBeenCalledWith(
'/api/workplace_search/org/sources/123/federated_summary'
'/api/workplace_search/account/sources/123/federated_summary'
);
await promise;
expect(onUpdateSummarySpy).toHaveBeenCalledWith(contentSource.summary);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const SourceLogic = kea<MakeLogicType<SourceValues, SourceActions>>({
}
},
initializeFederatedSummary: async ({ sourceId }) => {
const route = `/api/workplace_search/org/sources/${sourceId}/federated_summary`;
const route = `/api/workplace_search/account/sources/${sourceId}/federated_summary`;
try {
const response = await HttpLogic.values.http.get(route);
actions.onUpdateSummary(response.summary);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,9 @@
margin-left: -$sideBarWidth;
}
}

.sourcesSubNav {
li {
display: block;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ const schemaValuesSchema = schema.recordOf(
);

const pageSchema = schema.object({
current: schema.number(),
size: schema.number(),
total_pages: schema.number(),
current: schema.nullable(schema.number()),
size: schema.nullable(schema.number()),
total_pages: schema.nullable(schema.number()),
total_results: schema.number(),
});

Expand Down