From b614604effda51ca7c76c8901be78ced62b642b2 Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 28 May 2020 16:17:13 +0200 Subject: Update TS migration to current dev, move to a common package, rename to frontend --- .../src/main/components/app/index.scss | 21 ---------- .../src/main/components/app/index.tsx | 11 ------ core/search-component/src/main/components/root.tsx | 43 --------------------- .../src/main/components/search/search.tsx | 45 ---------------------- .../src/main/components/search/types.ts | 26 ------------- core/search-component/src/main/scss/index.scss | 1 - 6 files changed, 147 deletions(-) delete mode 100644 core/search-component/src/main/components/app/index.scss delete mode 100644 core/search-component/src/main/components/app/index.tsx delete mode 100644 core/search-component/src/main/components/root.tsx delete mode 100644 core/search-component/src/main/components/search/search.tsx delete mode 100644 core/search-component/src/main/components/search/types.ts delete mode 100644 core/search-component/src/main/scss/index.scss (limited to 'core/search-component/src') diff --git a/core/search-component/src/main/components/app/index.scss b/core/search-component/src/main/components/app/index.scss deleted file mode 100644 index a7406115..00000000 --- a/core/search-component/src/main/components/app/index.scss +++ /dev/null @@ -1,21 +0,0 @@ -@import "src/main/scss/index"; - -html, -.app-root { - height: 100%; -} - -.search-root { - margin: 0; - padding: 0; - - background: var(--ring-content-background-color); - - font-family: var(--ring-font-family); - font-size: var(--ring-font-size); - line-height: var(--ring-line-height); -} - -.search-content { - margin: calc(var(--ring-unit) * 4); -} diff --git a/core/search-component/src/main/components/app/index.tsx b/core/search-component/src/main/components/app/index.tsx deleted file mode 100644 index 3427c1ce..00000000 --- a/core/search-component/src/main/components/app/index.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react'; -import {WithFuzzySearchFilter} from '../search/search'; -import './index.scss'; - -const App: React.FC = () => ( -
- -
-) - -export default App diff --git a/core/search-component/src/main/components/root.tsx b/core/search-component/src/main/components/root.tsx deleted file mode 100644 index 70ed9550..00000000 --- a/core/search-component/src/main/components/root.tsx +++ /dev/null @@ -1,43 +0,0 @@ -import React from 'react'; -import {render} from 'react-dom'; -import RedBox from 'redbox-react'; - -import App from "./app"; -import './app/index.scss'; - -const appEl = document.getElementById('searchBar'); -const rootEl = document.createElement('div'); - -let renderApp = () => { - render( - , - rootEl - ); -}; - -// @ts-ignore -if (module.hot) { - const renderAppHot = renderApp; - const renderError = (error: Error) => { - render( - , - rootEl - ); - }; - - renderApp = () => { - try { - renderAppHot(); - } catch (error) { - renderError(error); - } - }; - - // @ts-ignore - module.hot.accept('./app', () => { - setTimeout(renderApp); - }); -} - -renderApp(); -appEl!.appendChild(rootEl); diff --git a/core/search-component/src/main/components/search/search.tsx b/core/search-component/src/main/components/search/search.tsx deleted file mode 100644 index f0df0c98..00000000 --- a/core/search-component/src/main/components/search/search.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import React, {useCallback, useState} from 'react'; -import {Select} from '@jetbrains/ring-ui'; -import '@jetbrains/ring-ui/components/input-size/input-size.scss'; -import {IWindow, Option, Props, State} from "./types"; - -const WithFuzzySearchFilterComponent: React.FC = ({data}: Props) => { - const [selected, onSelected] = useState