container insertion issues
This commit is contained in:
		@@ -1,4 +0,0 @@
 | 
				
			|||||||
#categorycontent{
 | 
					 | 
				
			||||||
    width: 70%;
 | 
					 | 
				
			||||||
    float: left;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -4,7 +4,7 @@ import Dropdown from "react-bootstrap/Dropdown";
 | 
				
			|||||||
import DropdownButton from "react-bootstrap/DropdownButton";
 | 
					import DropdownButton from "react-bootstrap/DropdownButton";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class AddTagPopup extends React.Component {
 | 
					class AddTagPopup extends React.Component {
 | 
				
			||||||
    constructor(props: P, context: any) {
 | 
					    constructor(props, context) {
 | 
				
			||||||
        super(props, context);
 | 
					        super(props, context);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this.state = {
 | 
					        this.state = {
 | 
				
			||||||
@@ -60,7 +60,6 @@ class AddTagPopup extends React.Component {
 | 
				
			|||||||
                    <Modal.Footer>
 | 
					                    <Modal.Footer>
 | 
				
			||||||
                        <button className='btn btn-primary' onClick={() => {
 | 
					                        <button className='btn btn-primary' onClick={() => {
 | 
				
			||||||
                            this.storeselection();
 | 
					                            this.storeselection();
 | 
				
			||||||
                            this.props.onHide();
 | 
					 | 
				
			||||||
                        }}>Add
 | 
					                        }}>Add
 | 
				
			||||||
                        </button>
 | 
					                        </button>
 | 
				
			||||||
                    </Modal.Footer>
 | 
					                    </Modal.Footer>
 | 
				
			||||||
@@ -82,6 +81,7 @@ class AddTagPopup extends React.Component {
 | 
				
			|||||||
                    console.log("error occured while writing to db -- todo error handling");
 | 
					                    console.log("error occured while writing to db -- todo error handling");
 | 
				
			||||||
                    console.log(result.result);
 | 
					                    console.log(result.result);
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					                this.props.onHide();
 | 
				
			||||||
            });
 | 
					            });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,6 @@ import React from "react";
 | 
				
			|||||||
import SideBar from "../elements/SideBar";
 | 
					import SideBar from "../elements/SideBar";
 | 
				
			||||||
import Tag from "../elements/Tag";
 | 
					import Tag from "../elements/Tag";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import "../css/CategoryPage.css"
 | 
					 | 
				
			||||||
import {TagPreview} from "../elements/Preview";
 | 
					import {TagPreview} from "../elements/Preview";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class CategoryPage extends React.Component {
 | 
					class CategoryPage extends React.Component {
 | 
				
			||||||
@@ -39,9 +38,10 @@ class CategoryPage extends React.Component {
 | 
				
			|||||||
                    <hr/>
 | 
					                    <hr/>
 | 
				
			||||||
                    <button className='btn btn-success'>Add a new Tag!</button>
 | 
					                    <button className='btn btn-success'>Add a new Tag!</button>
 | 
				
			||||||
                </SideBar>
 | 
					                </SideBar>
 | 
				
			||||||
                <div id='categorycontent'>
 | 
					
 | 
				
			||||||
                {!this.state.selected ?
 | 
					                {!this.state.selected ?
 | 
				
			||||||
                        (this.state.loadedtags ?
 | 
					                    (<div className='maincontent'>
 | 
				
			||||||
 | 
					                        {this.state.loadedtags ?
 | 
				
			||||||
                            this.state.loadedtags.map((m) => (
 | 
					                            this.state.loadedtags.map((m) => (
 | 
				
			||||||
                                <TagPreview
 | 
					                                <TagPreview
 | 
				
			||||||
                                    name={m.tag_name}
 | 
					                                    name={m.tag_name}
 | 
				
			||||||
@@ -49,11 +49,12 @@ class CategoryPage extends React.Component {
 | 
				
			|||||||
                                    viewbinding={this.props.viewbinding}
 | 
					                                    viewbinding={this.props.viewbinding}
 | 
				
			||||||
                                    categorybinding={this.setPage}/>
 | 
					                                    categorybinding={this.setPage}/>
 | 
				
			||||||
                            )) :
 | 
					                            )) :
 | 
				
			||||||
                        "loading") :
 | 
					                            "loading"}
 | 
				
			||||||
 | 
					                    </div>) :
 | 
				
			||||||
                    this.selectionelements
 | 
					                    this.selectionelements
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                </div>
 | 
					
 | 
				
			||||||
            </>
 | 
					            </>
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -84,7 +84,10 @@ class Player extends React.Component {
 | 
				
			|||||||
                        </button>
 | 
					                        </button>
 | 
				
			||||||
                        {this.state.popupvisible ?
 | 
					                        {this.state.popupvisible ?
 | 
				
			||||||
                            <AddTagPopup show={this.state.popupvisible}
 | 
					                            <AddTagPopup show={this.state.popupvisible}
 | 
				
			||||||
                                         onHide={() => this.setState({popupvisible: false})}
 | 
					                                         onHide={() => {
 | 
				
			||||||
 | 
					                                             this.setState({popupvisible: false});
 | 
				
			||||||
 | 
					                                             this.fetchMovieData();
 | 
				
			||||||
 | 
					                                         }}
 | 
				
			||||||
                                         movie_id={this.state.movie_id}/> :
 | 
					                                         movie_id={this.state.movie_id}/> :
 | 
				
			||||||
                            null
 | 
					                            null
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user