You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
228 lines
7.0 KiB
228 lines
7.0 KiB
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import FieldSet from 'Components/FieldSet';
|
|
import Form from 'Components/Form/Form';
|
|
import FormGroup from 'Components/Form/FormGroup';
|
|
import FormInputButton from 'Components/Form/FormInputButton';
|
|
import FormInputGroup from 'Components/Form/FormInputGroup';
|
|
import FormLabel from 'Components/Form/FormLabel';
|
|
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
|
|
import { inputTypes, sizes } from 'Helpers/Props';
|
|
import translate from 'Utilities/String/translate';
|
|
import NamingModal from './NamingModal';
|
|
import styles from './Naming.css';
|
|
|
|
const colonReplacementOptions = [
|
|
{ key: 'delete', value: translate('Delete') },
|
|
{ key: 'dash', value: translate('ReplaceWithDash') },
|
|
{ key: 'spaceDash', value: translate('ReplaceWithSpaceDash') },
|
|
{ key: 'spaceDashSpace', value: translate('ReplaceWithSpaceDashSpace') }
|
|
];
|
|
|
|
class Naming extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
this.state = {
|
|
isNamingModalOpen: false,
|
|
namingModalOptions: null
|
|
};
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onStandardNamingModalOpenClick = () => {
|
|
this.setState({
|
|
isNamingModalOpen: true,
|
|
namingModalOptions: {
|
|
name: 'standardMovieFormat',
|
|
additional: true
|
|
}
|
|
});
|
|
};
|
|
|
|
onMovieFolderNamingModalOpenClick = () => {
|
|
this.setState({
|
|
isNamingModalOpen: true,
|
|
namingModalOptions: {
|
|
name: 'movieFolderFormat'
|
|
}
|
|
});
|
|
};
|
|
|
|
onNamingModalClose = () => {
|
|
this.setState({ isNamingModalOpen: false });
|
|
};
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
advancedSettings,
|
|
isFetching,
|
|
error,
|
|
settings,
|
|
hasSettings,
|
|
examples,
|
|
examplesPopulated,
|
|
onInputChange
|
|
} = this.props;
|
|
|
|
const {
|
|
isNamingModalOpen,
|
|
namingModalOptions
|
|
} = this.state;
|
|
|
|
const renameMovies = hasSettings && settings.renameMovies.value;
|
|
const replaceIllegalCharacters = hasSettings && settings.replaceIllegalCharacters.value;
|
|
|
|
const standardMovieFormatHelpTexts = [];
|
|
const standardMovieFormatErrors = [];
|
|
const movieFolderFormatHelpTexts = [];
|
|
const movieFolderFormatErrors = [];
|
|
|
|
if (examplesPopulated) {
|
|
if (examples.movieExample) {
|
|
standardMovieFormatHelpTexts.push(`Movie: ${examples.movieExample}`);
|
|
} else {
|
|
standardMovieFormatErrors.push({ message: translate('MovieInvalidFormat') });
|
|
}
|
|
|
|
if (examples.movieFolderExample) {
|
|
movieFolderFormatHelpTexts.push(`Example: ${examples.movieFolderExample}`);
|
|
} else {
|
|
movieFolderFormatErrors.push({ message: translate('InvalidFormat') });
|
|
}
|
|
}
|
|
|
|
return (
|
|
<FieldSet legend={translate('MovieNaming')}>
|
|
{
|
|
isFetching &&
|
|
<LoadingIndicator />
|
|
}
|
|
|
|
{
|
|
!isFetching && error &&
|
|
<div>
|
|
{translate('UnableToLoadNamingSettings')}
|
|
</div>
|
|
}
|
|
|
|
{
|
|
hasSettings && !isFetching && !error &&
|
|
<Form>
|
|
<FormGroup size={sizes.MEDIUM}>
|
|
<FormLabel>{translate('RenameMovies')}</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.CHECK}
|
|
name="renameMovies"
|
|
helpText={translate('RenameMoviesHelpText')}
|
|
onChange={onInputChange}
|
|
{...settings.renameMovies}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<FormGroup size={sizes.MEDIUM}>
|
|
<FormLabel>{translate('ReplaceIllegalCharacters')}</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.CHECK}
|
|
name="replaceIllegalCharacters"
|
|
helpText={translate('ReplaceIllegalCharactersHelpText')}
|
|
onChange={onInputChange}
|
|
{...settings.replaceIllegalCharacters}
|
|
/>
|
|
</FormGroup>
|
|
|
|
{
|
|
replaceIllegalCharacters &&
|
|
<FormGroup>
|
|
<FormLabel>{translate('ColonReplacement')}</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.SELECT}
|
|
name="colonReplacementFormat"
|
|
values={colonReplacementOptions}
|
|
helpText={translate('ColonReplacementFormatHelpText')}
|
|
onChange={onInputChange}
|
|
{...settings.colonReplacementFormat}
|
|
/>
|
|
</FormGroup>
|
|
}
|
|
|
|
{
|
|
renameMovies &&
|
|
<FormGroup size={sizes.LARGE}>
|
|
<FormLabel>{translate('StandardMovieFormat')}</FormLabel>
|
|
|
|
<FormInputGroup
|
|
inputClassName={styles.namingInput}
|
|
type={inputTypes.TEXT}
|
|
name="standardMovieFormat"
|
|
buttons={<FormInputButton onPress={this.onStandardNamingModalOpenClick}>?</FormInputButton>}
|
|
onChange={onInputChange}
|
|
{...settings.standardMovieFormat}
|
|
helpTexts={standardMovieFormatHelpTexts}
|
|
errors={[...standardMovieFormatErrors, ...settings.standardMovieFormat.errors]}
|
|
/>
|
|
</FormGroup>
|
|
}
|
|
|
|
<FormGroup
|
|
advancedSettings={advancedSettings}
|
|
isAdvanced={true}
|
|
>
|
|
<FormLabel>{translate('MovieFolderFormat')}</FormLabel>
|
|
|
|
<FormInputGroup
|
|
inputClassName={styles.namingInput}
|
|
type={inputTypes.TEXT}
|
|
name="movieFolderFormat"
|
|
buttons={<FormInputButton onPress={this.onMovieFolderNamingModalOpenClick}>?</FormInputButton>}
|
|
onChange={onInputChange}
|
|
{...settings.movieFolderFormat}
|
|
helpTexts={['Used when adding a new movie or moving movies via the editor', ...movieFolderFormatHelpTexts]}
|
|
errors={[...movieFolderFormatErrors, ...settings.movieFolderFormat.errors]}
|
|
/>
|
|
</FormGroup>
|
|
|
|
{
|
|
namingModalOptions &&
|
|
<NamingModal
|
|
isOpen={isNamingModalOpen}
|
|
advancedSettings={advancedSettings}
|
|
{...namingModalOptions}
|
|
value={settings[namingModalOptions.name].value}
|
|
onInputChange={onInputChange}
|
|
onModalClose={this.onNamingModalClose}
|
|
/>
|
|
}
|
|
</Form>
|
|
}
|
|
</FieldSet>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
Naming.propTypes = {
|
|
advancedSettings: PropTypes.bool.isRequired,
|
|
isFetching: PropTypes.bool.isRequired,
|
|
error: PropTypes.object,
|
|
settings: PropTypes.object.isRequired,
|
|
hasSettings: PropTypes.bool.isRequired,
|
|
examples: PropTypes.object.isRequired,
|
|
examplesPopulated: PropTypes.bool.isRequired,
|
|
onInputChange: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default Naming;
|