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

DOC-12439: Added TabBar to the Example #57

Merged
merged 17 commits into from
Feb 5, 2024
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
91 changes: 88 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,38 @@ import Pager from "./Components/Pager";
import Facet from "./Components/Facet";
import ResultsPerPage from "./Components/ResultsPerPage";
import FacetBreadcrumbs from "./Components/FacetBreadcrumbs";
import { loadSearchAnalyticsActions, loadSearchActions } from "@coveo/headless";
import {
loadSearchAnalyticsActions,
loadSearchActions,
buildQueryExpression,
TabOptions,
TabProps,
} from "@coveo/headless";
import headlessEngine from "./Engine";
import Sort from "./Components/Sort";
import { Box, Container, Grid, Typography } from "@mui/material";
import Tab from "./Components/Tab";
import Tabs from "@mui/material/Tabs";

export default class App extends React.Component {
constructor(props: any) {
super(props);
this.state = { currentTabIndex: 0 };
}

componentDidMount() {
const { logInterfaceLoad } = loadSearchAnalyticsActions(headlessEngine);
const { executeSearch } = loadSearchActions(headlessEngine);

headlessEngine.dispatch(executeSearch(logInterfaceLoad()));
}

handleTabChange = (e: any, tabIndex: number) => {
this.setState({
currentTabIndex: tabIndex,
});
};

render() {
return (
<Container maxWidth="xl">
Expand All @@ -33,14 +52,26 @@ export default class App extends React.Component {
Coveo Headless + Material UI
</Typography>
</Box>

<Tabs onChange={this.handleTabChange}>
<Tab
initialState={anyProps.initialState!}
options={anyProps.options!}
/>
<Tab
initialState={intelProps.initialState!}
options={intelProps.options!}
/>
<Tab
initialState={amdProps.initialState!}
options={amdProps.options!}
/>
</Tabs>
<SearchBox />
<Box my={1}>
<FacetBreadcrumbs />
<Grid container>
<Grid item xs={4}>
<Facet title="Brand" field="ec_brand" />
<Facet title="Frequencies" field="eng_frequencies" />
<Facet title="Processor" field="eng_processor" />
<Facet title="Store name" field="store_name" />
</Grid>
Expand Down Expand Up @@ -71,3 +102,57 @@ export default class App extends React.Component {
);
}
}

const filterIntelProcessor = buildQueryExpression()
.addStringField({
field: "eng_processor",
operator: "contains",
values: ["Intel"],
})
.toQuerySyntax();

const filterAmdProcessor = buildQueryExpression()
.addStringField({
field: "eng_processor",
operator: "contains",
values: ["AMD"],
})
.toQuerySyntax();

const noFilter = buildQueryExpression()
.addStringField({
field: "store_name",
operator: "contains",
values: ["Barca"],
})
.toQuerySyntax();

const intelOptions: TabOptions = {
id: "Intel",
expression: filterIntelProcessor,
};

const amdOptions: TabOptions = {
id: "AMD",
expression: filterAmdProcessor,
};

const anyOptions: TabOptions = {
id: "Any",
expression: noFilter,
};

const intelProps: TabProps = {
initialState: { isActive: false },
options: intelOptions,
};

const amdProps: TabProps = {
initialState: { isActive: false },
options: amdOptions,
};

const anyProps: TabProps = {
initialState: { isActive: true },
options: anyOptions,
};
2 changes: 1 addition & 1 deletion src/Components/Facet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class Facet extends React.Component<IFacetProps, {}> {

this.headlessFacet = buildFacet(headlessEngine, {
options: {
numberOfValues: 5,
numberOfValues: 3,
field: this.props.field,
},
});
Expand Down
33 changes: 33 additions & 0 deletions src/Components/Tab.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import headlessEngine from "../Engine";
import { buildTab, TabProps, Tab as HeadlessTab } from "@coveo/headless";
import React from "react";
import { Tab as MaterialTab } from "@mui/material";
export default class Tab extends React.Component<TabProps> {
private headlessTab: HeadlessTab;
constructor(props: any) {
super(props);
this.headlessTab = buildTab(headlessEngine, props);
this.state = this.headlessTab.state;
}

componentDidMount() {
this.headlessTab.subscribe(() => this.updateState());
}

updateState() {
this.setState(this.headlessTab.state);
}

render() {
return (
<MaterialTab
style={{ color: "blue" }}
disabled={this.headlessTab.state.isActive}
onClick={() => {
this.headlessTab.select();
}}
label={this.props.options.id}
/>
);
}
}