Search in sources :

Example 1 with CreatePostFailure

use of com.willshex.blogwt.client.api.blog.event.CreatePostEventHandler.CreatePostFailure in project blogwt by billy1380.

the class PostController method createPost.

public void createPost(String title, Boolean listed, Boolean commentsEnabled, String summary, String content, Boolean publish, String tags) {
    BlogService blogService = ApiHelper.createBlogClient();
    final CreatePostRequest input = SessionController.get().setSession(ApiHelper.setAccessCode(new CreatePostRequest())).post(new Post().title(title).summary(summary).content(new PostContent().body(content)).tags(TagHelper.convertToTagList(tags)).listed(listed).commentsEnabled(commentsEnabled)).publish(publish);
    blogService.createPost(input, new AsyncCallback<CreatePostResponse>() {

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

        @Override
        public void onFailure(Throwable caught) {
            DefaultEventBus.get().fireEventFromSource(new CreatePostFailure(input, caught), PostController.this);
        }
    });
}
Also used : BlogService(com.willshex.blogwt.client.api.blog.BlogService) CreatePostRequest(com.willshex.blogwt.shared.api.blog.call.CreatePostRequest) Post(com.willshex.blogwt.shared.api.datatype.Post) CreatePostSuccess(com.willshex.blogwt.client.api.blog.event.CreatePostEventHandler.CreatePostSuccess) CreatePostFailure(com.willshex.blogwt.client.api.blog.event.CreatePostEventHandler.CreatePostFailure) PostContent(com.willshex.blogwt.shared.api.datatype.PostContent) CreatePostResponse(com.willshex.blogwt.shared.api.blog.call.CreatePostResponse)

Aggregations

BlogService (com.willshex.blogwt.client.api.blog.BlogService)1 CreatePostFailure (com.willshex.blogwt.client.api.blog.event.CreatePostEventHandler.CreatePostFailure)1 CreatePostSuccess (com.willshex.blogwt.client.api.blog.event.CreatePostEventHandler.CreatePostSuccess)1 CreatePostRequest (com.willshex.blogwt.shared.api.blog.call.CreatePostRequest)1 CreatePostResponse (com.willshex.blogwt.shared.api.blog.call.CreatePostResponse)1 Post (com.willshex.blogwt.shared.api.datatype.Post)1 PostContent (com.willshex.blogwt.shared.api.datatype.PostContent)1