1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/client/app/partials/modal.js
2016-02-24 20:15:50 +01:00

109 lines
2.7 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import ReactDOM from 'react-dom';
import Api from '../api';
import Item from './item';
class Modal extends React.Component {
constructor(props) {
super(props);
this.state = {
items: [],
searching: false,
searched: false,
loadClass: 'loading',
activeKey: null
};
}
componentDidMount() {
// Avoid 'jerk' if overflow from body is hidden.
setTimeout(() => {
$('body').addClass('modal-active');
}, 200);
ReactDOM.findDOMNode(this.refs.input).focus();
setTimeout(() => {
this.setState({
loadClass: ''
});
}, 20);
}
componentWillUnmount() {
$('body').removeClass('modal-active');
}
render() {
let content = '';
let items = this.state.items.map((value) => {
return <Item key={value.id} id={value.id} data={value} category="" tmdb={this.props.type === 'flox' ? '' : 'true'} activeKey={this.state.activeKey} changeActiveKey={this.changeActiveKey.bind(this)} />
});
if( ! this.state.items.length && this.state.searched) {
content = <div className="no-items-found">Nothing found :(</div>
} else if(this.state.searching) {
content = <i className="icon-content-load"></i>
} else if(this.state.items.length && ! this.state.searching) {
content = items;
}
return (
<section className={'modal-wrap ' + this.state.loadClass}>
<div className="search-items">
<div className="wrap">
<div className="icon-close-wrap" onClick={this.props.closeModal}><i className="icon-close"></i></div>
<div className="search-wrap">
<label className="modal-label" htmlFor="search">{this.props.type === 'flox' ? 'Search' : 'Add'}</label>
<input type="text" className="modal-input" id="search" placeholder="Title..." ref="input" onKeyDown={this.searchKeyEvents.bind(this)} />
</div>
<div>
{content}
</div>
</div>
</div>
</section>
);
}
searchKeyEvents(event) {
if(event.key === 'Enter') {
this.setState({
searching: true,
searched: false
});
Api.search(this.props.type, event.target.value).done((value) => {
setTimeout(() => {
this.setState({
searching: false,
searched: true,
items: value
});
}, 200);
}).fail((value) => {
if(value.status === 401) {
alert('Unauthorized');
} else {
alert('Server Error');
}
});
} else if(event.key === 'Escape') {
this.props.closeModal();
}
}
changeActiveKey(key) {
this.setState({
activeKey: key
});
}
}
export default Modal;