From dd645cb5cd77c2738424e445587407b4bf97250c Mon Sep 17 00:00:00 2001 From: Błażej Kardyś Date: Tue, 7 Apr 2020 22:36:16 +0200 Subject: Moving search-component inside core project --- .../src/main/js/search/app-root.js | 13 ++++++ core/search-component/src/main/js/search/app.css | 21 +++++++++ core/search-component/src/main/js/search/app.js | 41 +++++++++++++++++ core/search-component/src/main/js/search/search.js | 52 ++++++++++++++++++++++ 4 files changed, 127 insertions(+) create mode 100644 core/search-component/src/main/js/search/app-root.js create mode 100644 core/search-component/src/main/js/search/app.css create mode 100644 core/search-component/src/main/js/search/app.js create mode 100644 core/search-component/src/main/js/search/search.js (limited to 'core/search-component/src/main/js/search') diff --git a/core/search-component/src/main/js/search/app-root.js b/core/search-component/src/main/js/search/app-root.js new file mode 100644 index 00000000..25a374a5 --- /dev/null +++ b/core/search-component/src/main/js/search/app-root.js @@ -0,0 +1,13 @@ +import React, {Component} from 'react'; +import {WithFuzzySearchFilter} from './search'; +import './app.css'; + +export default class AppRoot extends Component { + render() { + return ( +
+ +
+ ); + } +} \ No newline at end of file diff --git a/core/search-component/src/main/js/search/app.css b/core/search-component/src/main/js/search/app.css new file mode 100644 index 00000000..933237e0 --- /dev/null +++ b/core/search-component/src/main/js/search/app.css @@ -0,0 +1,21 @@ +@import "@jetbrains/ring-ui/components/global/variables.css"; + +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/js/search/app.js b/core/search-component/src/main/js/search/app.js new file mode 100644 index 00000000..64091607 --- /dev/null +++ b/core/search-component/src/main/js/search/app.js @@ -0,0 +1,41 @@ +import React from 'react'; +import {render} from 'react-dom'; +import RedBox from 'redbox-react'; + +import AppRoot from './app-root'; +import './app.css'; + +const appEl = document.getElementById('searchBar'); +const rootEl = document.createElement('div'); + +let renderApp = () => { + render( + , + rootEl + ); +}; + +if (module.hot) { + const renderAppHot = renderApp; + const renderError = error => { + render( + , + rootEl + ); + }; + + renderApp = () => { + try { + renderAppHot(); + } catch (error) { + renderError(error); + } + }; + + module.hot.accept('./app-root', () => { + setTimeout(renderApp); + }); +} + +renderApp(); +appEl.appendChild(rootEl); diff --git a/core/search-component/src/main/js/search/search.js b/core/search-component/src/main/js/search/search.js new file mode 100644 index 00000000..a742f11d --- /dev/null +++ b/core/search-component/src/main/js/search/search.js @@ -0,0 +1,52 @@ +import React, {Component} from 'react'; +import Select from '@jetbrains/ring-ui/components/select/select'; +import '@jetbrains/ring-ui/components/input-size/input-size.scss'; + +class WithFuzzySearchFilterComponent extends Component { + constructor(props) { + super(props); + this.state = {selected: props.data[0]}; + } + + clearSelection = () => { + this.setState({selected: null}); + }; + + onSelect = option => { + window.location.href = `${window.pathToRoot}${option.location}?query${option.name}`; + this.setState({selected: option}); + debugger + }; + + render() { + return ( +
+
+