// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import PropTypes from 'prop-types'; import BackstageHeader from 'components/backstage/components/backstage_header.jsx'; import {FormattedMessage} from 'react-intl'; import FormError from 'components/form_error.jsx'; import {browserHistory, Link} from 'react-router/es6'; import SpinnerButton from 'components/spinner_button.jsx'; export default class AddOAuthApp extends React.PureComponent { static propTypes = { /** * The team data */ team: PropTypes.object, /** * The request state for addOAuthApp action. Contains status and error */ addOAuthAppRequest: PropTypes.object.isRequired, actions: PropTypes.shape({ /** * The function to call to add new OAuthApp */ addOAuthApp: PropTypes.func.isRequired }).isRequired } constructor(props) { super(props); this.image = new Image(); this.image.onload = this.imageLoaded; this.state = { name: '', description: '', homepage: '', icon_url: '', callbackUrls: '', is_trusted: false, has_icon: false, saving: false, serverError: '', clientError: null }; } imageLoaded = () => { this.setState({ has_icon: true, icon_url: this.refs.icon_url.value }); } handleSubmit = (e) => { e.preventDefault(); if (this.state.saving) { return; } this.setState({ saving: true, serverError: '', clientError: '' }); if (!this.state.name) { this.setState({ saving: false, clientError: ( ) }); return; } if (!this.state.description) { this.setState({ saving: false, clientError: ( ) }); return; } if (!this.state.homepage) { this.setState({ saving: false, clientError: ( ) }); return; } const callbackUrls = []; for (let callbackUrl of this.state.callbackUrls.split('\n')) { callbackUrl = callbackUrl.trim(); if (callbackUrl.length > 0) { callbackUrls.push(callbackUrl); } } if (callbackUrls.length === 0) { this.setState({ saving: false, clientError: ( ) }); return; } const app = { name: this.state.name, callback_urls: callbackUrls, homepage: this.state.homepage, description: this.state.description, is_trusted: this.state.is_trusted, icon_url: this.state.icon_url }; this.props.actions.addOAuthApp(app).then( (data) => { const {error} = this.props.addOAuthAppRequest; if (error) { this.setState({ saving: false, serverError: error.message }); } else { browserHistory. push(`/${this.props.team.name}/integrations/confirm?type=oauth2-apps&id=${data.id}`); } } ); } updateName = (e) => { this.setState({ name: e.target.value }); } updateTrusted = (e) => { this.setState({ is_trusted: e.target.value === 'true' }); } updateDescription = (e) => { this.setState({ description: e.target.value }); } updateHomepage = (e) => { this.setState({ homepage: e.target.value }); } updateIconUrl = (e) => { this.setState({ has_icon: false, icon_url: '' }); this.image.src = e.target.value; } updateCallbackUrls = (e) => { this.setState({ callbackUrls: e.target.value }); } render() { let icon; if (this.state.has_icon) { icon = (
); } return (
{icon}