Cleaned imports
This commit is contained in:
@ -25,7 +25,7 @@ import React from 'react';
|
|||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { HashRouter, BrowserRouter } from 'react-router-dom';
|
import { HashRouter, BrowserRouter } from 'react-router-dom';
|
||||||
|
|
||||||
import Background from './../objects/background/Background';
|
import Background from '@objects/background/Background';
|
||||||
import Header from './header/Header';
|
import Header from './header/Header';
|
||||||
import Footer from './footer/Footer';
|
import Footer from './footer/Footer';
|
||||||
import Routes from './page/Routes';
|
import Routes from './page/Routes';
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import Helmet from 'react-helmet';
|
||||||
const prefix = './../assets/images/favicon/';
|
const prefix = '@assets/images/favicon/';
|
||||||
|
|
||||||
export default (props) => {
|
export default (props) => {
|
||||||
return (
|
return (
|
||||||
|
@ -23,9 +23,9 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Language from './../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import { NavLink } from 'react-router-dom'
|
import { NavLink } from 'react-router-dom'
|
||||||
import { PageBoundary } from './../page/Page';
|
import { PageBoundary } from '@components/page/Page';
|
||||||
|
|
||||||
const FooterLink = function(props) {
|
const FooterLink = function(props) {
|
||||||
let key = "footer.links." + props.title;
|
let key = "footer.links." + props.title;
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Navbar from './../nav/navbar/Navbar';
|
import Navbar from '@components/nav/navbar/Navbar';
|
||||||
|
|
||||||
export default function(props) {
|
export default function(props) {
|
||||||
return (
|
return (
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { NavLink } from 'react-router-dom';
|
import { NavLink } from 'react-router-dom';
|
||||||
import Language from './../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import * as MenuActions from './../../../actions/MenuActions';
|
import * as MenuActions from '@public/actions/MenuActions';
|
||||||
|
|
||||||
const HamburerMenuItem = function(props) {
|
const HamburerMenuItem = function(props) {
|
||||||
return (
|
return (
|
||||||
|
@ -25,10 +25,10 @@ import React from 'react';
|
|||||||
import { withRouter } from 'react-router';
|
import { withRouter } from 'react-router';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { NavLink } from 'react-router-dom'
|
import { NavLink } from 'react-router-dom'
|
||||||
import PageBoundary from './../../page/PageBoundary';
|
import PageBoundary from '@components/page/PageBoundary';
|
||||||
import Language from './../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import HamburgerMenu from './../menu/HamburgerMenu';
|
import HamburgerMenu from './../menu/HamburgerMenu';
|
||||||
import Image from './../../../objects/image/Image';
|
import Image from '@objects/image/Image';
|
||||||
|
|
||||||
const NavbarLink = function(props) {
|
const NavbarLink = function(props) {
|
||||||
return (
|
return (
|
||||||
|
@ -25,7 +25,7 @@ import React from 'react';
|
|||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { Helmet } from "react-helmet";
|
import { Helmet } from "react-helmet";
|
||||||
import PageBoundary from './PageBoundary';
|
import PageBoundary from './PageBoundary';
|
||||||
import Language from './../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
|
|
||||||
class Page extends React.Component {
|
class Page extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -27,7 +27,7 @@ import { bindActionCreators } from 'redux';
|
|||||||
|
|
||||||
//Components
|
//Components
|
||||||
import Page, { PageBoundary } from './../Page';
|
import Page, { PageBoundary } from './../Page';
|
||||||
import Language from './../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
|
|
||||||
//Objects
|
//Objects
|
||||||
import ElementScrollFader from './../../../objects/animation/fade/ElementScrollFader';
|
import ElementScrollFader from './../../../objects/animation/fade/ElementScrollFader';
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Page from './../Page';
|
import Page from './../Page';
|
||||||
import Language from './../../../language/Language'
|
import Language from '@public/language/Language'
|
||||||
|
|
||||||
import BannerSection from './sections/BannerSection';
|
import BannerSection from './sections/BannerSection';
|
||||||
import PromoVideoSection from './sections/PromoVideoSection';
|
import PromoVideoSection from './sections/PromoVideoSection';
|
||||||
|
@ -22,12 +22,12 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Language from './../../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import { PageBoundary } from './../../Page';
|
import { PageBoundary } from '@components/page/Page';
|
||||||
import { ImageSection } from './../../../section/Section';
|
import { ImageSection } from '@components/section/Section';
|
||||||
import FloatingContentBox from './../../../../objects/content/FloatingContentBox';
|
import FloatingContentBox from '@objects/content/FloatingContentBox';
|
||||||
import { Title, Subtitle } from './../../../../objects/typography/Typography';
|
import { Title, Subtitle } from '@objects/typography/Typography';
|
||||||
import ElementScrollFader from './../../../../objects/animation/fade/ElementScrollFader';
|
import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
|
||||||
|
|
||||||
|
|
||||||
export default (props) => {
|
export default (props) => {
|
||||||
|
@ -22,14 +22,14 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Language from './../../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import { PageBoundary } from './../../Page';
|
import { PageBoundary } from '@components/page/Page';
|
||||||
import { ImageSection, SplitSection, Split, ClearSection } from './../../../section/Section';
|
import { ImageSection, SplitSection, Split, ClearSection } from '@components/section/Section';
|
||||||
import ContentBox from './../../../../objects/content/ContentBox';
|
import ContentBox from '@objects/content/ContentBox';
|
||||||
import { Title, Subtitle, Paragraph, Heading1, Heading2 } from './../../../../objects/typography/Typography';
|
import { Title, Subtitle, Paragraph, Heading1, Heading2 } from '@objects/typography/Typography';
|
||||||
import { Button } from './../../../../objects/input/Input';
|
import { Button } from '@objects/input/Input';
|
||||||
import ElementScrollFader from './../../../../objects/animation/fade/ElementScrollFader';
|
import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
|
||||||
import Image from './../../../../objects/image/Image';
|
import Image from '@objects/image/Image';
|
||||||
|
|
||||||
import Window95, {
|
import Window95, {
|
||||||
TitleBar, Close, Minimize,
|
TitleBar, Close, Minimize,
|
||||||
|
@ -22,15 +22,15 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Language from './../../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import { PageBoundary } from './../../Page';
|
import { PageBoundary } from '@components/page/Page';
|
||||||
import { ImageSection, SplitSection, Split } from './../../../section/Section';
|
import { ImageSection, SplitSection, Split } from '@components/section/Section';
|
||||||
import FloatingContentBox from './../../../../objects/content/FloatingContentBox';
|
import FloatingContentBox from '@objects/content/FloatingContentBox';
|
||||||
import ContentBox from './../../../../objects/content/ContentBox';
|
import ContentBox from '@objects/content/ContentBox';
|
||||||
import Image from './../../../../objects/image/Image';
|
import Image from '@objects/image/Image';
|
||||||
import Video from './../../../../objects/video/Video';
|
import Video from '@objects/video/Video';
|
||||||
import { Title, Subtitle, Paragraph, Heading1 } from './../../../../objects/typography/Typography';
|
import { Title, Subtitle, Paragraph, Heading1 } from '@objects/typography/Typography';
|
||||||
import ElementScrollFader from './../../../../objects/animation/fade/ElementScrollFader';
|
import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
|
||||||
|
|
||||||
const Platform = (props) => {
|
const Platform = (props) => {
|
||||||
let children;
|
let children;
|
||||||
|
@ -23,12 +23,12 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Language from './../../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import { PageBoundary } from './../../Page';
|
import { PageBoundary } from '@components/page/Page';
|
||||||
import { ImageSection } from './../../../section/Section';
|
import { ImageSection } from '@components/section/Section';
|
||||||
import ContentBox from './../../../../objects/content/ContentBox';
|
import ContentBox from '@objects/content/ContentBox';
|
||||||
import { Title, Paragraph, Heading1 } from './../../../../objects/typography/Typography';
|
import { Title, Paragraph, Heading1 } from '@objects/typography/Typography';
|
||||||
import ElementScrollFader from './../../../../objects/animation/fade/ElementScrollFader';
|
import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
|
||||||
|
|
||||||
export default (props) => {
|
export default (props) => {
|
||||||
return (
|
return (
|
||||||
|
@ -22,14 +22,14 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Language from './../../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import Page, { PageBoundary } from './../../Page';
|
import Page, { PageBoundary } from '@components/page/Page';
|
||||||
import Section, { SplitSection, Split } from './../../../section/Section';
|
import Section, { SplitSection, Split } from '@components/section/Section';
|
||||||
import FloatingContentBox from './../../../../objects/content/FloatingContentBox';
|
import FloatingContentBox from '@objects/content/FloatingContentBox';
|
||||||
import ContentBox from './../../../../objects/content/ContentBox';
|
import ContentBox from '@objects/content/ContentBox';
|
||||||
import Video from './../../../../objects/video/Video';
|
import Video from '@objects/video/Video';
|
||||||
import { Title, Subtitle, Paragraph, Heading1 } from './../../../../objects/typography/Typography';
|
import { Title, Subtitle, Paragraph, Heading1 } from '@objects/typography/Typography';
|
||||||
import ElementScrollFader from './../../../../objects/animation/fade/ElementScrollFader';
|
import ElementScrollFader from '@objects/animation/fade/ElementScrollFader';
|
||||||
|
|
||||||
|
|
||||||
export default (props) => {
|
export default (props) => {
|
||||||
|
@ -23,10 +23,10 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Language from './../../../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import Page, { PageBoundary } from './../../Page';
|
import Page, { PageBoundary } from './../../Page';
|
||||||
import { BodySection, ClearSection } from './../../../section/Section';
|
import { BodySection, ClearSection } from '@components/section/Section';
|
||||||
import { Title } from './../../../../objects/typography/Typography';
|
import { Title } from '@objects/typography/Typography';
|
||||||
|
|
||||||
const PrivacyPolicyPage = (props) => {
|
const PrivacyPolicyPage = (props) => {
|
||||||
return (
|
return (
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Section from './../Section';
|
import Section from './../Section';
|
||||||
import { PageBoundary } from './../../page/Page';
|
import { PageBoundary } from '@components/page/Page';
|
||||||
|
|
||||||
const FeaturedArticle = function(props) {
|
const FeaturedArticle = function(props) {
|
||||||
let clazz = "c-featured-blog-section__article";
|
let clazz = "c-featured-blog-section__article";
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Section from './../Section';
|
import Section from './../Section';
|
||||||
import Image from './../../../objects/image/Image';
|
import Image from '@objects/image/Image';
|
||||||
|
|
||||||
export default function(props) {
|
export default function(props) {
|
||||||
let image;
|
let image;
|
||||||
|
@ -23,8 +23,8 @@
|
|||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Section from './../Section';
|
import Section from './../Section';
|
||||||
import Video from './../../../objects/video/Video';
|
import Video from '@objects/video/Video';
|
||||||
import Loader from './../../../objects/loading/Loader';
|
import Loader from '@objects/loading/Loader';
|
||||||
|
|
||||||
class VideoSection extends React.Component {
|
class VideoSection extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -28,7 +28,7 @@ import ButtonGroup from './button/ButtonGroup';
|
|||||||
import Form, { FormManager } from './form/Form';
|
import Form, { FormManager } from './form/Form';
|
||||||
import InputGroup from './group/InputGroup';
|
import InputGroup from './group/InputGroup';
|
||||||
import Label from './label/Label';
|
import Label from './label/Label';
|
||||||
import Keyboard from './../../keyboard/Keyboard';
|
import Keyboard from '@public/keyboard/Keyboard';
|
||||||
|
|
||||||
export default class Input extends React.Component {
|
export default class Input extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Loader, { LoaderBackdrop } from './../../loading/Loader';
|
import Loader, { LoaderBackdrop } from '@objects/loading/Loader';
|
||||||
import Input, { InputGroup, TextArea } from './../Input';
|
import Input, { InputGroup, TextArea } from './../Input';
|
||||||
|
|
||||||
export default class Form extends React.Component {
|
export default class Form extends React.Component {
|
||||||
|
@ -26,10 +26,10 @@ import { connect } from 'react-redux';
|
|||||||
import { bindActionCreators } from 'redux';
|
import { bindActionCreators } from 'redux';
|
||||||
import { CSSTransition, TransitionGroup } from 'react-transition-group';
|
import { CSSTransition, TransitionGroup } from 'react-transition-group';
|
||||||
import { Button } from './../input/Input';
|
import { Button } from './../input/Input';
|
||||||
import Language from './../../language/Language';
|
import Language from '@public/language/Language';
|
||||||
import { openModal, closeModal } from './../../actions/ModalActions';
|
import { openModal, closeModal } from '@public/actions/ModalActions';
|
||||||
import { Heading4 } from './../typography/Typography';
|
import { Heading4 } from '@objects/typography/Typography';
|
||||||
import Keyboard from './../../keyboard/Keyboard';
|
import Keyboard from '@public/keyboard/Keyboard';
|
||||||
|
|
||||||
class Modal extends React.Component {
|
class Modal extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
const
|
const
|
||||||
webpack = require('webpack'),
|
webpack = require('webpack'),
|
||||||
HtmlWebpackPlugin = require('html-webpack-plugin'),
|
HtmlWebpackPlugin = require('html-webpack-plugin'),
|
||||||
SharpLoader = require('responsive-loader/sharp')
|
SharpLoader = require('responsive-loader/sharp'),
|
||||||
|
path = require('path')
|
||||||
;
|
;
|
||||||
|
|
||||||
const HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
|
const HTMLWebpackPluginConfig = new HtmlWebpackPlugin({
|
||||||
@ -26,7 +27,13 @@ module.exports = {
|
|||||||
|
|
||||||
resolve: {
|
resolve: {
|
||||||
modules: ['node_modules', './public'],
|
modules: ['node_modules', './public'],
|
||||||
extensions: ['.js', '.jsx', '.css', '.scss' ]
|
extensions: ['.js', '.jsx', '.css', '.scss' ],
|
||||||
|
alias: {
|
||||||
|
'@public': path.resolve(__dirname, './public'),
|
||||||
|
'@objects': path.resolve(__dirname, './public/objects'),
|
||||||
|
'@components': path.resolve(__dirname, './public/components'),
|
||||||
|
'@assets': path.resolve(__dirname, './public/assets')
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// declare loaders to be used in webpack
|
// declare loaders to be used in webpack
|
||||||
|
Reference in New Issue
Block a user