Search in sources :

Example 1 with UpdatePostFailure

use of com.willshex.blogwt.client.api.blog.event.UpdatePostEventHandler.UpdatePostFailure in project blogwt by billy1380.

the class PostController method updatePost.

public void updatePost(Post post, String title, Boolean listed, Boolean commentsEnabled, String summary, String content, Boolean publish, String tags) {
    final UpdatePostRequest input = SessionController.get().setSession(ApiHelper.setAccessCode(new UpdatePostRequest())).post(post.title(title).summary(summary).listed(listed).commentsEnabled(commentsEnabled).tags(TagHelper.convertToTagList(tags))).publish(publish);
    input.post.content.body = content;
    ApiHelper.createBlogClient().updatePost(input, new AsyncCallback<UpdatePostResponse>() {

        @Override
        public void onSuccess(UpdatePostResponse output) {
            if (output.status == StatusType.StatusTypeSuccess) {
                fetchPosts();
            }
            DefaultEventBus.get().fireEventFromSource(new UpdatePostSuccess(input, output), PostController.this);
        }

        @Override
        public void onFailure(Throwable caught) {
            DefaultEventBus.get().fireEventFromSource(new UpdatePostFailure(input, caught), PostController.this);
        }
    });
}
Also used : UpdatePostResponse(com.willshex.blogwt.shared.api.blog.call.UpdatePostResponse) UpdatePostSuccess(com.willshex.blogwt.client.api.blog.event.UpdatePostEventHandler.UpdatePostSuccess) UpdatePostFailure(com.willshex.blogwt.client.api.blog.event.UpdatePostEventHandler.UpdatePostFailure) UpdatePostRequest(com.willshex.blogwt.shared.api.blog.call.UpdatePostRequest)

Aggregations

UpdatePostFailure (com.willshex.blogwt.client.api.blog.event.UpdatePostEventHandler.UpdatePostFailure)1 UpdatePostSuccess (com.willshex.blogwt.client.api.blog.event.UpdatePostEventHandler.UpdatePostSuccess)1 UpdatePostRequest (com.willshex.blogwt.shared.api.blog.call.UpdatePostRequest)1 UpdatePostResponse (com.willshex.blogwt.shared.api.blog.call.UpdatePostResponse)1