bookbrainz/bookbrainz-site

View on GitHub
src/client/controllers/editor/achievement.js

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * Copyright (C) 2016  Daniel Hsing
 *                  2015  Ben Ockmore
 *               2015  Sean Burke
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

import {
    extractEditorProps,
    extractLayoutProps
} from '../../helpers/props';
import AchievementsTab from '../../components/pages/parts/editor-achievements';
import {AppContainer} from 'react-hot-loader';
import EditorContainer from '../../containers/editor';
import Layout from '../../containers/layout';
import React from 'react';
import ReactDOM from 'react-dom';


const propsTarget = document.getElementById('props');
const props = propsTarget ? JSON.parse(propsTarget.innerHTML) : {};

ReactDOM.hydrate(
    <AppContainer>
        <Layout {...extractLayoutProps(props)}>
            <EditorContainer
                {...extractEditorProps(props)}
            >
                <AchievementsTab
                    achievement={props.achievement}
                    currAchievement={props.currAchievement}
                    editor={props.editor}
                    isOwner={props.isOwner}
                />
            </EditorContainer>
        </Layout>
    </AppContainer>,
    document.getElementById('target')
);


/*
 * As we are not exporting a component,
 * we cannot use the react-hot-loader module wrapper,
 * but instead directly use webpack Hot Module Replacement API
 */

if (module.hot) {
    module.hot.accept();
}