2017-09-04 02:20:56 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { icons, kinds, inputTypes, tooltipPositions } from 'Helpers/Props';
|
|
|
|
import Icon from 'Components/Icon';
|
|
|
|
import SpinnerButton from 'Components/Link/SpinnerButton';
|
|
|
|
import Form from 'Components/Form/Form';
|
|
|
|
import FormGroup from 'Components/Form/FormGroup';
|
|
|
|
import FormLabel from 'Components/Form/FormLabel';
|
|
|
|
import FormInputGroup from 'Components/Form/FormInputGroup';
|
|
|
|
import CheckInput from 'Components/Form/CheckInput';
|
|
|
|
import ModalContent from 'Components/Modal/ModalContent';
|
|
|
|
import ModalHeader from 'Components/Modal/ModalHeader';
|
|
|
|
import ModalBody from 'Components/Modal/ModalBody';
|
|
|
|
import ModalFooter from 'Components/Modal/ModalFooter';
|
|
|
|
import Popover from 'Components/Tooltip/Popover';
|
|
|
|
import ArtistPoster from 'Artist/ArtistPoster';
|
2017-09-08 03:09:52 +00:00
|
|
|
import ArtistMonitoringOptionsPopoverContent from 'AddArtist/ArtistMonitoringOptionsPopoverContent';
|
|
|
|
// import SeriesTypePopoverContent from 'AddArtist/SeriesTypePopoverContent';
|
|
|
|
import styles from './AddNewArtistModalContent.css';
|
2017-09-04 02:20:56 +00:00
|
|
|
|
2017-09-08 03:09:52 +00:00
|
|
|
class AddNewArtistModalContent extends Component {
|
2017-09-04 02:20:56 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Lifecycle
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = {
|
2017-09-08 03:09:52 +00:00
|
|
|
searchForMissingAlbums: false
|
2017-09-04 02:20:56 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Listeners
|
|
|
|
|
2017-09-08 03:09:52 +00:00
|
|
|
onSearchForMissingAlbumsChange = ({ value }) => {
|
|
|
|
this.setState({ searchForMissingAlbums: value });
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onQualityProfileIdChange = ({ value }) => {
|
|
|
|
this.props.onInputChange({ name: 'qualityProfileId', value: parseInt(value) });
|
|
|
|
}
|
|
|
|
|
|
|
|
onLanguageProfileIdChange = ({ value }) => {
|
|
|
|
this.props.onInputChange({ name: 'languageProfileId', value: parseInt(value) });
|
|
|
|
}
|
|
|
|
|
2017-09-08 03:09:52 +00:00
|
|
|
onAddArtistPress = () => {
|
|
|
|
this.props.onAddArtistPress(this.state.searchForMissingAlbums);
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Render
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
artistName,
|
|
|
|
overview,
|
|
|
|
images,
|
|
|
|
isAdding,
|
|
|
|
rootFolderPath,
|
|
|
|
monitor,
|
|
|
|
qualityProfileId,
|
|
|
|
languageProfileId,
|
|
|
|
albumFolder,
|
2017-10-07 04:13:00 +00:00
|
|
|
primaryAlbumTypes,
|
|
|
|
secondaryAlbumTypes,
|
2017-09-04 02:20:56 +00:00
|
|
|
tags,
|
|
|
|
showLanguageProfile,
|
|
|
|
isSmallScreen,
|
|
|
|
onModalClose,
|
|
|
|
onInputChange
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ModalContent onModalClose={onModalClose}>
|
|
|
|
<ModalHeader>
|
|
|
|
{artistName}
|
|
|
|
</ModalHeader>
|
|
|
|
|
|
|
|
<ModalBody>
|
|
|
|
<div className={styles.container}>
|
|
|
|
{
|
|
|
|
!isSmallScreen &&
|
|
|
|
<div className={styles.poster}>
|
|
|
|
<ArtistPoster
|
|
|
|
className={styles.poster}
|
|
|
|
images={images}
|
|
|
|
size={250}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
<div className={styles.info}>
|
|
|
|
<div className={styles.overview}>
|
|
|
|
{overview}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Form>
|
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Root Folder</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.ROOT_FOLDER_SELECT}
|
|
|
|
name="rootFolderPath"
|
|
|
|
onChange={onInputChange}
|
|
|
|
{...rootFolderPath}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>
|
|
|
|
Monitor
|
|
|
|
|
|
|
|
<Popover
|
|
|
|
anchor={
|
|
|
|
<Icon
|
|
|
|
className={styles.labelIcon}
|
|
|
|
name={icons.INFO}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
title="Monitoring Options"
|
2017-09-08 03:09:52 +00:00
|
|
|
body={<ArtistMonitoringOptionsPopoverContent />}
|
2017-09-04 02:20:56 +00:00
|
|
|
position={tooltipPositions.RIGHT}
|
|
|
|
/>
|
|
|
|
</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
2017-09-08 03:09:52 +00:00
|
|
|
type={inputTypes.MONITOR_ALBUMS_SELECT}
|
2017-09-04 02:20:56 +00:00
|
|
|
name="monitor"
|
|
|
|
onChange={onInputChange}
|
|
|
|
{...monitor}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Quality Profile</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.QUALITY_PROFILE_SELECT}
|
|
|
|
name="qualityProfileId"
|
|
|
|
onChange={this.onQualityProfileIdChange}
|
|
|
|
{...qualityProfileId}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup className={showLanguageProfile ? null : styles.hideLanguageProfile}>
|
|
|
|
<FormLabel>Language Profile</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.LANGUAGE_PROFILE_SELECT}
|
|
|
|
name="languageProfileId"
|
|
|
|
onChange={this.onLanguageProfileIdChange}
|
|
|
|
{...languageProfileId}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Album Folder</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.CHECK}
|
|
|
|
name="albumFolder"
|
|
|
|
onChange={onInputChange}
|
|
|
|
{...albumFolder}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
2017-10-07 04:13:00 +00:00
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Primary Album Types</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.TEXT}
|
|
|
|
name="primaryAlbumTypes"
|
|
|
|
onChange={onInputChange}
|
|
|
|
{...primaryAlbumTypes}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Secondary Album Types</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.TEXT}
|
|
|
|
name="secondaryAlbumTypes"
|
|
|
|
onChange={onInputChange}
|
|
|
|
{...secondaryAlbumTypes}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
|
2017-09-04 02:20:56 +00:00
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Tags</FormLabel>
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
type={inputTypes.TAG}
|
|
|
|
name="tags"
|
|
|
|
onChange={onInputChange}
|
|
|
|
{...tags}
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
</Form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ModalBody>
|
|
|
|
|
|
|
|
<ModalFooter className={styles.modalFooter}>
|
2017-09-08 03:09:52 +00:00
|
|
|
<label className={styles.searchForMissingAlbumsLabelContainer}>
|
|
|
|
<span className={styles.searchForMissingAlbumsLabel}>
|
|
|
|
Start search for missing albums
|
2017-09-04 02:20:56 +00:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<CheckInput
|
2017-09-08 03:09:52 +00:00
|
|
|
containerClassName={styles.searchForMissingAlbumsContainer}
|
|
|
|
className={styles.searchForMissingAlbumsInput}
|
|
|
|
name="searchForMissingAlbums"
|
|
|
|
value={this.state.searchForMissingAlbums}
|
|
|
|
onChange={this.onSearchForMissingAlbumsChange}
|
2017-09-04 02:20:56 +00:00
|
|
|
/>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<SpinnerButton
|
|
|
|
className={styles.addButton}
|
|
|
|
kind={kinds.SUCCESS}
|
|
|
|
isSpinning={isAdding}
|
2017-09-08 03:09:52 +00:00
|
|
|
onPress={this.onAddArtistPress}
|
2017-09-04 02:20:56 +00:00
|
|
|
>
|
|
|
|
Add {artistName}
|
|
|
|
</SpinnerButton>
|
|
|
|
</ModalFooter>
|
|
|
|
</ModalContent>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-08 03:09:52 +00:00
|
|
|
AddNewArtistModalContent.propTypes = {
|
2017-09-04 02:20:56 +00:00
|
|
|
artistName: PropTypes.string.isRequired,
|
|
|
|
overview: PropTypes.string,
|
|
|
|
images: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
isAdding: PropTypes.bool.isRequired,
|
|
|
|
addError: PropTypes.object,
|
|
|
|
rootFolderPath: PropTypes.object,
|
|
|
|
monitor: PropTypes.object.isRequired,
|
|
|
|
qualityProfileId: PropTypes.object,
|
|
|
|
languageProfileId: PropTypes.object,
|
|
|
|
albumFolder: PropTypes.object.isRequired,
|
2017-10-07 04:13:00 +00:00
|
|
|
primaryAlbumTypes: PropTypes.object.isRequired,
|
|
|
|
secondaryAlbumTypes: PropTypes.object.isRequired,
|
2017-09-04 02:20:56 +00:00
|
|
|
tags: PropTypes.object.isRequired,
|
|
|
|
showLanguageProfile: PropTypes.bool.isRequired,
|
|
|
|
isSmallScreen: PropTypes.bool.isRequired,
|
|
|
|
onModalClose: PropTypes.func.isRequired,
|
|
|
|
onInputChange: PropTypes.func.isRequired,
|
2017-09-08 03:09:52 +00:00
|
|
|
onAddArtistPress: PropTypes.func.isRequired
|
2017-09-04 02:20:56 +00:00
|
|
|
};
|
|
|
|
|
2017-09-08 03:09:52 +00:00
|
|
|
export default AddNewArtistModalContent;
|