2018-05-23 04:06:37 +02:00
"use strict" ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
exports . default = void 0 ;
var _react = _interopRequireDefault ( require ( "react" ) ) ;
var _request = _interopRequireDefault ( require ( "../../utils/request" ) ) ;
2018-06-05 23:24:54 +02:00
var _FormFeedbackDisplay = _interopRequireDefault ( require ( "@components/FormFeedbackDisplay" ) ) ;
2018-06-04 09:09:33 +02:00
2018-06-05 17:02:23 +02:00
var _ChannelLoginNameInput = _interopRequireDefault ( require ( "@components/ChannelLoginNameInput" ) ) ;
2018-06-04 09:09:33 +02:00
2018-06-05 17:02:23 +02:00
var _ChannelLoginPasswordInput = _interopRequireDefault ( require ( "@components/ChannelLoginPasswordInput" ) ) ;
var _ButtonPrimary = _interopRequireDefault ( require ( "@components/ButtonPrimary" ) ) ;
2018-06-04 09:09:33 +02:00
2018-05-23 04:06:37 +02:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { default : obj } ; }
function _typeof ( obj ) { if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof = function _typeof ( obj ) { return typeof obj ; } ; } else { _typeof = function _typeof ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof ( obj ) ; }
function _defineProperty ( obj , key , value ) { if ( key in obj ) { Object . defineProperty ( obj , key , { value : value , enumerable : true , configurable : true , writable : true } ) ; } else { obj [ key ] = value ; } return obj ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( "Cannot call a class as a function" ) ; } }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== "function" && superClass !== null ) { throw new TypeError ( "Super expression must either be null or a function" ) ; } _setPrototypeOf ( subClass . prototype , superClass && superClass . prototype ) ; if ( superClass ) _setPrototypeOf ( subClass , superClass ) ; }
function _setPrototypeOf ( o , p ) { _setPrototypeOf = Object . setPrototypeOf || function _setPrototypeOf ( o , p ) { o . _ _proto _ _ = p ; return o ; } ; return _setPrototypeOf ( o , p ) ; }
function _defineProperties ( target , props ) { for ( var i = 0 ; i < props . length ; i ++ ) { var descriptor = props [ i ] ; descriptor . enumerable = descriptor . enumerable || false ; descriptor . configurable = true ; if ( "value" in descriptor ) descriptor . writable = true ; Object . defineProperty ( target , descriptor . key , descriptor ) ; } }
function _createClass ( Constructor , protoProps , staticProps ) { if ( protoProps ) _defineProperties ( Constructor . prototype , protoProps ) ; if ( staticProps ) _defineProperties ( Constructor , staticProps ) ; return Constructor ; }
function _possibleConstructorReturn ( self , call ) { if ( call && ( _typeof ( call ) === "object" || typeof call === "function" ) ) { return call ; } return _assertThisInitialized ( self ) ; }
function _getPrototypeOf ( o ) { _getPrototypeOf = Object . getPrototypeOf || function _getPrototypeOf ( o ) { return o . _ _proto _ _ ; } ; return _getPrototypeOf ( o ) ; }
function _assertThisInitialized ( self ) { if ( self === void 0 ) { throw new ReferenceError ( "this hasn't been initialised - super() hasn't been called" ) ; } return self ; }
var ChannelLoginForm =
/*#__PURE__*/
function ( _React$Component ) {
function ChannelLoginForm ( props ) {
var _this ;
_classCallCheck ( this , ChannelLoginForm ) ;
_this = _possibleConstructorReturn ( this , _getPrototypeOf ( ChannelLoginForm ) . call ( this , props ) ) ;
_this . state = {
error : null ,
name : '' ,
password : ''
} ;
_this . handleInput = _this . handleInput . bind ( _assertThisInitialized ( _assertThisInitialized ( _this ) ) ) ;
_this . loginToChannel = _this . loginToChannel . bind ( _assertThisInitialized ( _assertThisInitialized ( _this ) ) ) ;
return _this ;
}
_createClass ( ChannelLoginForm , [ {
key : "handleInput" ,
value : function handleInput ( event ) {
var name = event . target . name ;
var value = event . target . value ;
this . setState ( _defineProperty ( { } , name , value ) ) ;
}
} , {
key : "loginToChannel" ,
value : function loginToChannel ( event ) {
var _this2 = this ;
event . preventDefault ( ) ;
var params = {
method : 'POST' ,
body : JSON . stringify ( {
username : this . state . name ,
password : this . state . password
} ) ,
headers : new Headers ( {
'Content-Type' : 'application/json'
} ) ,
credentials : 'include'
} ;
2018-06-05 17:02:23 +02:00
( 0 , _request . default ) ( 'login' , params ) . then ( function ( _ref ) {
var success = _ref . success ,
channelName = _ref . channelName ,
shortChannelId = _ref . shortChannelId ,
channelClaimId = _ref . channelClaimId ,
message = _ref . message ;
2018-05-23 04:06:37 +02:00
if ( success ) {
_this2 . props . onChannelLogin ( channelName , shortChannelId , channelClaimId ) ;
} else {
_this2 . setState ( {
'error' : message
} ) ;
}
;
} ) . catch ( function ( error ) {
if ( error . message ) {
_this2 . setState ( {
'error' : error . message
} ) ;
} else {
_this2 . setState ( {
'error' : error
} ) ;
}
} ) ;
}
} , {
key : "render" ,
value : function render ( ) {
2018-06-05 17:02:23 +02:00
return _react . default . createElement ( "div" , null , _react . default . createElement ( _ChannelLoginNameInput . default , {
2018-06-04 09:09:33 +02:00
channelName : this . state . channelName ,
handleInput : this . handleInput
2018-06-05 17:02:23 +02:00
} ) , _react . default . createElement ( _ChannelLoginPasswordInput . default , {
2018-06-04 09:09:33 +02:00
channelPassword : this . state . channelPassword ,
handleInput : this . handleInput
2018-06-05 23:24:54 +02:00
} ) , _react . default . createElement ( _FormFeedbackDisplay . default , {
2018-06-04 09:09:33 +02:00
errorMessage : this . state . error ,
defaultMessage : 'Enter the name and password for your channel'
2018-06-05 17:02:23 +02:00
} ) , _react . default . createElement ( _ButtonPrimary . default , {
value : 'Authenticate' ,
onClickHandler : this . loginToChannel
} ) ) ;
2018-05-23 04:06:37 +02:00
}
} ] ) ;
_inherits ( ChannelLoginForm , _React$Component ) ;
return ChannelLoginForm ;
} ( _react . default . Component ) ;
var _default = ChannelLoginForm ;
exports . default = _default ;