2020-09-02 06:44:01 +00:00
|
|
|
import React, { useRef, useEffect, useState } from "react";
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
import { useSelector } from "react-redux";
|
2019-10-18 08:16:26 +00:00
|
|
|
import WidgetCard from "./WidgetCard";
|
|
|
|
|
import styled from "styled-components";
|
2019-11-25 05:07:27 +00:00
|
|
|
import { WidgetCardProps } from "widgets/BaseWidget";
|
|
|
|
|
import { getWidgetCards } from "selectors/editorSelectors";
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
import { getColorWithOpacity } from "constants/DefaultTheme";
|
2020-09-02 06:44:01 +00:00
|
|
|
import { IPanelProps, Icon, Classes } from "@blueprintjs/core";
|
|
|
|
|
import { Colors } from "constants/Colors";
|
|
|
|
|
import ExplorerSearch from "./Explorer/ExplorerSearch";
|
|
|
|
|
import { debounce } from "lodash";
|
|
|
|
|
import produce from "immer";
|
|
|
|
|
import { WIDGET_SIDEBAR_CAPTION } from "constants/messages";
|
2019-10-18 08:16:26 +00:00
|
|
|
|
|
|
|
|
const MainWrapper = styled.div`
|
|
|
|
|
text-transform: capitalize;
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
padding: 0 10px 20px 10px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
|
|
scrollbar-color: ${props => props.theme.colors.paneCard}
|
|
|
|
|
${props => props.theme.colors.paneBG};
|
|
|
|
|
scrollbar-width: thin;
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
|
width: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
|
box-shadow: inset 0 0 6px
|
|
|
|
|
${props => getColorWithOpacity(props.theme.colors.paneBG, 0.3)};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: ${props => props.theme.colors.paneCard};
|
|
|
|
|
outline: 1px solid ${props => props.theme.paneText};
|
|
|
|
|
border-radius: ${props => props.theme.radii[1]}px;
|
|
|
|
|
}
|
2019-10-18 08:16:26 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const CardsWrapper = styled.div`
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
|
grid-gap: ${props => props.theme.spaces[1]}px;
|
|
|
|
|
justify-items: stretch;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-09-02 06:44:01 +00:00
|
|
|
const CloseIcon = styled(Icon)`
|
|
|
|
|
&&.${Classes.ICON} {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
&:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const Header = styled.div`
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 7fr 1fr;
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const Info = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: space-around;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
h4 {
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
const WidgetSidebar = (props: IPanelProps) => {
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
const cards = useSelector(getWidgetCards);
|
2020-09-02 06:44:01 +00:00
|
|
|
const [filteredCards, setFilteredCards] = useState(cards);
|
|
|
|
|
const searchInputRef = useRef<HTMLInputElement | null>(null);
|
2020-09-03 14:22:08 +00:00
|
|
|
const filterCards = (keyword: string) => {
|
2020-09-02 06:44:01 +00:00
|
|
|
let filteredCards = cards;
|
|
|
|
|
if (keyword.trim().length > 0) {
|
|
|
|
|
filteredCards = produce(cards, draft => {
|
2020-12-23 11:32:30 +00:00
|
|
|
cards.forEach((card, index) => {
|
|
|
|
|
if (card.widgetCardName.toLowerCase().indexOf(keyword) === -1) {
|
|
|
|
|
delete draft[index];
|
2020-09-02 06:44:01 +00:00
|
|
|
}
|
2020-12-23 11:32:30 +00:00
|
|
|
});
|
2020-09-02 06:44:01 +00:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
setFilteredCards(filteredCards);
|
2020-09-03 14:22:08 +00:00
|
|
|
};
|
|
|
|
|
const clearSearchInput = () => {
|
|
|
|
|
if (searchInputRef.current) {
|
|
|
|
|
searchInputRef.current.value = "";
|
|
|
|
|
}
|
|
|
|
|
filterCards("");
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const search = debounce((e: any) => {
|
|
|
|
|
filterCards(e.target.value.toLowerCase());
|
2020-09-02 06:44:01 +00:00
|
|
|
}, 300);
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
const el: HTMLInputElement | null = searchInputRef.current;
|
|
|
|
|
|
|
|
|
|
el?.addEventListener("keydown", search);
|
|
|
|
|
el?.addEventListener("cleared", search);
|
|
|
|
|
return () => {
|
|
|
|
|
el?.removeEventListener("keydown", search);
|
|
|
|
|
el?.removeEventListener("cleared", search);
|
|
|
|
|
};
|
|
|
|
|
}, [searchInputRef, search]);
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
return (
|
2020-09-02 06:44:01 +00:00
|
|
|
<>
|
|
|
|
|
<ExplorerSearch
|
|
|
|
|
ref={searchInputRef}
|
|
|
|
|
clear={clearSearchInput}
|
|
|
|
|
placeholder="Search widgets..."
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<MainWrapper>
|
|
|
|
|
<Header>
|
|
|
|
|
<Info>
|
|
|
|
|
<p>{WIDGET_SIDEBAR_CAPTION}</p>
|
|
|
|
|
</Info>
|
|
|
|
|
<CloseIcon
|
|
|
|
|
className="t--close-widgets-sidebar"
|
|
|
|
|
icon="cross"
|
|
|
|
|
iconSize={16}
|
|
|
|
|
color={Colors.WHITE}
|
|
|
|
|
onClick={props.closePanel}
|
|
|
|
|
/>
|
|
|
|
|
</Header>
|
2020-12-23 11:32:30 +00:00
|
|
|
<CardsWrapper>
|
|
|
|
|
{filteredCards.map((card: WidgetCardProps) => (
|
|
|
|
|
<WidgetCard details={card} key={card.key} />
|
|
|
|
|
))}
|
|
|
|
|
</CardsWrapper>
|
2020-09-02 06:44:01 +00:00
|
|
|
</MainWrapper>
|
|
|
|
|
</>
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
);
|
2019-10-18 08:16:26 +00:00
|
|
|
};
|
|
|
|
|
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
WidgetSidebar.displayName = "WidgetSidebar";
|
|
|
|
|
|
|
|
|
|
export default WidgetSidebar;
|