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.
225 lines
5.4 KiB
225 lines
5.4 KiB
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
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 Icon from 'Components/Icon';
|
|
import Button from 'Components/Link/Button';
|
|
import ClipboardButton from 'Components/Link/ClipboardButton';
|
|
import ModalBody from 'Components/Modal/ModalBody';
|
|
import ModalContent from 'Components/Modal/ModalContent';
|
|
import ModalFooter from 'Components/Modal/ModalFooter';
|
|
import ModalHeader from 'Components/Modal/ModalHeader';
|
|
import { icons, inputTypes, kinds, sizes } from 'Helpers/Props';
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
function getUrls(state) {
|
|
const {
|
|
unmonitored,
|
|
pastDays,
|
|
futureDays,
|
|
tags
|
|
} = state;
|
|
|
|
let icalUrl = `${window.location.host}${window.Readarr.urlBase}/feed/v1/calendar/Readarr.ics?`;
|
|
|
|
if (unmonitored) {
|
|
icalUrl += 'unmonitored=true&';
|
|
}
|
|
|
|
if (tags.length) {
|
|
icalUrl += `tags=${tags.toString()}&`;
|
|
}
|
|
|
|
icalUrl += `pastDays=${pastDays}&futureDays=${futureDays}&apikey=${encodeURIComponent(window.Readarr.apiKey)}`;
|
|
|
|
const iCalHttpUrl = `${window.location.protocol}//${icalUrl}`;
|
|
const iCalWebCalUrl = `webcal://${icalUrl}`;
|
|
|
|
return {
|
|
iCalHttpUrl,
|
|
iCalWebCalUrl
|
|
};
|
|
}
|
|
|
|
class CalendarLinkModalContent extends Component {
|
|
|
|
//
|
|
// Lifecycle
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
const defaultState = {
|
|
unmonitored: false,
|
|
pastDays: 7,
|
|
futureDays: 28,
|
|
tags: []
|
|
};
|
|
|
|
const urls = getUrls(defaultState);
|
|
|
|
this.state = {
|
|
...defaultState,
|
|
...urls
|
|
};
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onInputChange = ({ name, value }) => {
|
|
const state = {
|
|
...this.state,
|
|
[name]: value
|
|
};
|
|
|
|
const urls = getUrls(state);
|
|
|
|
this.setState({
|
|
[name]: value,
|
|
...urls
|
|
});
|
|
};
|
|
|
|
onLinkFocus = (event) => {
|
|
event.target.select();
|
|
};
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
onModalClose
|
|
} = this.props;
|
|
|
|
const {
|
|
unmonitored,
|
|
pastDays,
|
|
futureDays,
|
|
tags,
|
|
iCalHttpUrl,
|
|
iCalWebCalUrl
|
|
} = this.state;
|
|
|
|
return (
|
|
<ModalContent onModalClose={onModalClose}>
|
|
<ModalHeader>
|
|
Readarr Calendar Feed
|
|
</ModalHeader>
|
|
|
|
<ModalBody>
|
|
<Form>
|
|
<FormGroup>
|
|
<FormLabel>
|
|
{translate('IncludeUnmonitored')}
|
|
</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.CHECK}
|
|
name="unmonitored"
|
|
value={unmonitored}
|
|
helpText={translate('UnmonitoredHelpText')}
|
|
onChange={this.onInputChange}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<FormGroup>
|
|
<FormLabel>
|
|
{translate('PastDays')}
|
|
</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.NUMBER}
|
|
name="pastDays"
|
|
value={pastDays}
|
|
helpText={translate('PastDaysHelpText')}
|
|
onChange={this.onInputChange}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<FormGroup>
|
|
<FormLabel>
|
|
{translate('FutureDays')}
|
|
</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.NUMBER}
|
|
name="futureDays"
|
|
value={futureDays}
|
|
helpText={translate('FutureDaysHelpText')}
|
|
onChange={this.onInputChange}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<FormGroup>
|
|
<FormLabel>
|
|
{translate('Tags')}
|
|
</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.TAG}
|
|
name="tags"
|
|
value={tags}
|
|
helpText={translate('TagsHelpText')}
|
|
onChange={this.onInputChange}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<FormGroup
|
|
size={sizes.LARGE}
|
|
>
|
|
<FormLabel>
|
|
{translate('ICalFeed')}
|
|
</FormLabel>
|
|
|
|
<FormInputGroup
|
|
type={inputTypes.TEXT}
|
|
name="iCalHttpUrl"
|
|
value={iCalHttpUrl}
|
|
readOnly={true}
|
|
helpText={translate('ICalHttpUrlHelpText')}
|
|
buttons={[
|
|
<ClipboardButton
|
|
key="copy"
|
|
value={iCalHttpUrl}
|
|
kind={kinds.DEFAULT}
|
|
/>,
|
|
|
|
<FormInputButton
|
|
key="webcal"
|
|
kind={kinds.DEFAULT}
|
|
to={iCalWebCalUrl}
|
|
target="_blank"
|
|
noRouter={true}
|
|
>
|
|
<Icon name={icons.CALENDAR_O} />
|
|
</FormInputButton>
|
|
]}
|
|
onChange={this.onInputChange}
|
|
onFocus={this.onLinkFocus}
|
|
/>
|
|
</FormGroup>
|
|
</Form>
|
|
</ModalBody>
|
|
|
|
<ModalFooter>
|
|
<Button onPress={onModalClose}>
|
|
Close
|
|
</Button>
|
|
</ModalFooter>
|
|
</ModalContent>
|
|
);
|
|
}
|
|
}
|
|
|
|
CalendarLinkModalContent.propTypes = {
|
|
tagList: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
onModalClose: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default CalendarLinkModalContent;
|