Move building (sidebar) and map components to nested dirs
This commit is contained in:
parent
f8f2b5e3e8
commit
99456e2431
@ -6,12 +6,12 @@ import { parse } from 'query-string';
|
||||
import '../../node_modules/bootstrap/dist/css/bootstrap.min.css';
|
||||
import './app.css';
|
||||
|
||||
import BuildingEdit from './building-edit';
|
||||
import BuildingView from './building-view';
|
||||
import ColouringMap from './map';
|
||||
import BuildingEdit from './building/building-edit';
|
||||
import BuildingView from './building/building-view';
|
||||
import ColouringMap from './map/map';
|
||||
import Header from './header';
|
||||
import MultiEdit from './multi-edit';
|
||||
import Overview from './overview';
|
||||
import MultiEdit from './building/multi-edit';
|
||||
import Overview from './building/overview';
|
||||
|
||||
import AboutPage from './pages/about';
|
||||
import ContributorAgreementPage from './pages/contributor-agreement';
|
||||
|
@ -2,11 +2,11 @@ import React, { Component, Fragment } from 'react';
|
||||
import { Link, NavLink, Redirect } from 'react-router-dom';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import ErrorBox from './components/error-box';
|
||||
import InfoBox from './components/info-box';
|
||||
import ErrorBox from '../components/error-box';
|
||||
import InfoBox from '../components/info-box';
|
||||
import Sidebar from './sidebar';
|
||||
import Tooltip from './components/tooltip';
|
||||
import { SaveIcon } from './components/icons';
|
||||
import Tooltip from '../components/tooltip';
|
||||
import { SaveIcon } from '../components/icons';
|
||||
|
||||
import CONFIG from './fields-config.json';
|
||||
|
@ -3,10 +3,10 @@ import { Link, NavLink } from 'react-router-dom';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import Sidebar from './sidebar';
|
||||
import Tooltip from './components/tooltip';
|
||||
import InfoBox from './components/info-box';
|
||||
import { EditIcon } from './components/icons';
|
||||
import { sanitiseURL } from './helpers';
|
||||
import Tooltip from '../components/tooltip';
|
||||
import InfoBox from '../components/info-box';
|
||||
import { EditIcon } from '../components/icons';
|
||||
import { sanitiseURL } from '../helpers';
|
||||
|
||||
import CONFIG from './fields-config.json';
|
||||
|
@ -5,8 +5,8 @@ import PropTypes from 'prop-types';
|
||||
|
||||
import Sidebar from './sidebar';
|
||||
import CONFIG from './fields-config.json';
|
||||
import InfoBox from './components/info-box';
|
||||
import { sanitiseURL } from './helpers';
|
||||
import InfoBox from '../components/info-box';
|
||||
import { sanitiseURL } from '../helpers';
|
||||
|
||||
const MultiEdit = (props) => {
|
||||
if (!props.user){
|
@ -3,7 +3,7 @@ import { NavLink, Redirect } from 'react-router-dom';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import Sidebar from './sidebar';
|
||||
import { EditIcon } from './components/icons';
|
||||
import { EditIcon } from '../components/icons';
|
||||
import CONFIG from './fields-config.json';
|
||||
|
||||
const Overview = (props) => {
|
@ -3,7 +3,7 @@ import { Link } from 'react-router-dom';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import './sidebar.css';
|
||||
import { BackIcon } from './components/icons';
|
||||
import { BackIcon } from '../components/icons';
|
||||
|
||||
const Sidebar = (props) => (
|
||||
<div id="legend" className="info-container">
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import './legend.css';
|
||||
import { MinorLogo } from './components/logo';
|
||||
import { MinorLogo } from '../components/logo';
|
||||
|
||||
const LEGEND_CONFIG = {
|
||||
location: {
|
@ -2,12 +2,12 @@ import React, { Component, Fragment } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { Map, TileLayer, ZoomControl, AttributionControl } from 'react-leaflet-universal';
|
||||
|
||||
import '../../node_modules/leaflet/dist/leaflet.css'
|
||||
import '../../../node_modules/leaflet/dist/leaflet.css'
|
||||
import './map.css'
|
||||
|
||||
import { HelpIcon } from './components/icons';
|
||||
import { HelpIcon } from '../components/icons';
|
||||
import Legend from './legend';
|
||||
import { parseCategoryURL } from '../parse';
|
||||
import { parseCategoryURL } from '../../parse';
|
||||
import SearchBox from './search-box';
|
||||
import ThemeSwitcher from './theme-switcher';
|
||||
|
@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import './search-box.css';
|
||||
import { SearchIcon } from './components/icons';
|
||||
import { SearchIcon } from '../components/icons';
|
||||
/**
|
||||
* Search for location
|
||||
*/
|
@ -33,11 +33,11 @@
|
||||
}
|
||||
.carousel-control.next {
|
||||
right: -1em;
|
||||
background-image: url('images/arrow-next.png');
|
||||
background-image: url('../images/arrow-next.png');
|
||||
}
|
||||
.carousel-control.back {
|
||||
left: -1em;
|
||||
background-image: url('images/arrow-back.png');
|
||||
background-image: url('../images/arrow-back.png');
|
||||
}
|
||||
.carousel-content {
|
||||
padding: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user