use of org.kie.workbench.common.screens.social.hp.predicate.UserTimeLineFileChangesPredicate in project kie-wb-common by kiegroup.
the class SocialHomePageSidePresenter method onOpen.
@OnOpen
public void onOpen() {
final SocialPaged socialPaged = new SocialPaged(5);
socialUserRepositoryAPI.call(new RemoteCallback<SocialUser>() {
public void callback(SocialUser socialUser) {
SimpleSocialTimelineWidgetModel model = new SimpleSocialTimelineWidgetModel(socialUser, new UserTimeLineFileChangesPredicate(), placeManager, socialPaged).withOnlyMorePagination(new Next() {
{
setText(Constants.INSTANCE.PaginationMore());
}
}).withIcons(iconLocator.getResourceTypes()).withLinkCommand(generateLinkCommand());
view.setupWidget(model);
}
}).findSocialUser(loggedUser.getIdentifier());
}
Aggregations