Mortar and flow together provide a good way to follow MVP pattern and get rid of lol-cycle with Fragments uglyness. Nevertheless it adds some boilerplate to create a single Screen:
- Create
Path
class; - Create inner-class
@module
(for Dagger 1) or@component
+@module
(for Dagger 2) to provide view with presenter; - Inject
Presenter
into theView
.
Mortar
already gives a way to provide view with presenter via scoped context, and step 2 is odd in most cases – that's what Presenta
for. Presenta
uses basic mortar + flow
example with extra extra annotation to skip Dagger
in the middle of preseter-view
injection.
Workflow is identical to mortar-sapmle:
- Add root scope for mortar, optionally link it with your dagger main component;
- Add flow support to main activity;
- Create Path screen with presenter and view refs.
Presenta provides InjectablePresenter
as a base class for presenters which want to benefit from dagger and mortar, so you have dagger injections available inside presenter with no hassle.
@Layout(R.layout.chat_list_view) @WithPresenter(ChatListScreen.Presenter.class)
public class ChatListScreen extends Path {
...
}
public static class Presenter extends InjectablePresenter<ChatListView> {
@Inject Chats chats;
List<Chat> chatList;
public Presenter(PresenterInjector injector) {
super(injector); // Dagger injection will be held there
this.chatList = chats.getAll();
}
}
public class ChatListView extends ListView {
Presenter presenter;
public ChatListView(Context context, AttributeSet attrs) {
super(context, attrs);
presenter = PresenterService.getPresenter(context);
}
...
Most of the time Path
would have arguments for presenter, which identifies data on screen to be loaded. It's easy with inner-class like presenter and still safe – as presenter is already linked to flow path and will be destroyed even before path is. Note messageId
and chatId
in next sample:
@Layout(R.layout.message_view) @WithPresenter(MessageScreen.Presenter.class)
public class MessageScreen extends Path {
private final int chatId;
private final int messageId;
public MessageScreen(int chatId, int messageId) {
this.chatId = chatId;
this.messageId = messageId;
}
public class Presenter extends InjectablePresenter<MessageView> {
private final Observable<Message> messageSource;
private Message message;
@Inject Chats service;
public Presenter(PresenterInjector injector) {
super(injector);
this.messageSource = service.getChat(chatId).getMessage(messageId);
}
...
}
}
Is still here. It's recommended to use @Scoped injection for singletons per path context. Presenta comes with AppScope
and ScreenScope
for this purpose.
@Layout(R.layout.friend_view) @WithComponent(FriendScreen.Component.class)
public class FriendScreen extends Path implements HasParent {
private final int index;
public FriendScreen(int index) {
this.index = index;
}
@Override public FriendListScreen getParent() {
return new FriendListScreen();
}
@ScreenScope(FriendScreen.class)
@dagger.Component(dependencies = MortarDemoActivity.Component.class, modules = Module.class)
public static interface Component{
void inject(FriendView view);
}
@dagger.Module
public class Module {
@Provides User provideFriend(Chats chats) {
return chats.getFriend(index);
}
}
@ScreenScope(FriendScreen.class)
public static class Presenter extends ViewPresenter<FriendView> {
private final User friend;
@Inject
public Presenter(User friend) {
this.friend = friend;
}
@Override public void onLoad(Bundle savedInstanceState) {
super.onLoad(savedInstanceState);
if (!hasView()) return;
getView().setFriend(friend.name);
}
}
}
Mortar-flow sample has useful PathContainers to show up working example of it's philisophy. Those containers and view helpers are reused in library-additions
Experimental, trying to use in prod. build.
Use jitpack.io
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.3'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
}
}
...
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
...
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.techery.presenta:library:{version}'
compile 'com.github.techery.presenta:library-additions:{version}'
...
compile 'com.google.dagger:dagger:2.0-SNAPSHOT'
apt 'com.google.dagger:dagger-compiler:2.0-SNAPSHOT'
provided 'org.glassfish:javax.annotation:10.0-b28'
...
compile 'com.google.code.gson:gson:2.3.1'
}