Ivan - WIP [skip ci]
This commit is contained in:
parent
ec18363058
commit
4e0669c4ae
|
@ -67,7 +67,7 @@ export default (
|
|||
|
||||
<Route path='create-ticket' component={DashboardCreateTicketPage}/>
|
||||
<Route path='check-ticket(/:ticketNumber/:email)' component={MainCheckTicketPage}/>
|
||||
<Route path='ticket/:email/:ticketNumber' component={DashboardTicketPage}/>
|
||||
<Route path='view-ticket/:email/:ticketNumber' component={DashboardTicketPage}/>
|
||||
<Route path='articles' component={DashboardListArticlesPage}/>
|
||||
|
||||
<Route path='dashboard' component={DashboardLayout}>
|
||||
|
|
|
@ -0,0 +1,104 @@
|
|||
import React from 'react';
|
||||
import _ from 'lodash';
|
||||
import {connect} from 'react-redux';
|
||||
|
||||
import API from 'lib-app/api-call';
|
||||
import i18n from 'lib-app/i18n';
|
||||
import SessionStore from 'lib-app/session-store';
|
||||
|
||||
import TicketViewer from 'app-components/ticket-viewer';
|
||||
import Loading from 'core-components/loading';
|
||||
import Header from 'core-components/header';
|
||||
|
||||
class MainViewTicket extends React.Component {
|
||||
|
||||
state = {
|
||||
loading: true,
|
||||
ticket: {}
|
||||
};
|
||||
|
||||
componentDidMount() {
|
||||
this.retrieveTicket();
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="main-view-ticket">
|
||||
<Header title={i18n('VIEW_TICKET')} description={i18n('TICKET_VIEW_DESCRIPTION')} />
|
||||
{(this.state.loading) ? this.renderLoading() : this.renderView()}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
renderLoading() {
|
||||
return (
|
||||
<div className="admin-panel-view-ticket__loading">
|
||||
<Loading size="large" />
|
||||
</div>
|
||||
)
|
||||
};
|
||||
|
||||
renderView() {
|
||||
return (_.isEmpty(this.state.ticket)) ? this.renderNoPermissionError() : this.renderTicketView();
|
||||
}
|
||||
|
||||
renderNoPermissionError() {
|
||||
return (
|
||||
<div className="admin-panel-view-ticket__error">
|
||||
{i18n('NO_PERMISSION')}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
renderTicketView() {
|
||||
return (
|
||||
<div className="admin-panel-view-ticket__ticket-view">
|
||||
<TicketViewer {...this.getTicketViewProps()} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
getTicketViewProps() {
|
||||
return {
|
||||
ticket: this.state.ticket,
|
||||
onChange: this.retrieveTicket.bind(this),
|
||||
assignmentAllowed: true,
|
||||
customResponses: this.props.customResponses,
|
||||
editable: this.state.ticket.owner && this.state.ticket.owner.id == SessionStore.getSessionData().userId
|
||||
};
|
||||
}
|
||||
|
||||
retrieveTicket() {
|
||||
API.call({
|
||||
path: '/ticket/get',
|
||||
data: {
|
||||
ticketNumber: this.props.params.ticketNumber
|
||||
}
|
||||
}).then(this.onRetrieveSuccess.bind(this)).catch(this.onRetrieveFail.bind(this))
|
||||
}
|
||||
|
||||
onRetrieveSuccess(result) {
|
||||
this.setState({
|
||||
loading: false,
|
||||
ticket: result.data
|
||||
});
|
||||
|
||||
if(result.data.unreadStaff) {
|
||||
API.call({
|
||||
path: '/ticket/seen',
|
||||
data: {
|
||||
ticketNumber: this.props.params.ticketNumber
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
onRetrieveFail() {
|
||||
this.setState({
|
||||
loading: false,
|
||||
ticket: {}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default MainViewTicket;
|
Loading…
Reference in New Issue