This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Largely borrowed from Jake Wharton's Kotterknife (https://github.com/JakeWharton/kotterknife) | |
// and paweljaneczek's PR for resetting cached views (https://github.com/JakeWharton/kotterknife/pull/37) | |
package com.bluelinelabs.conductor.butterknife | |
import android.view.View | |
import com.bluelinelabs.conductor.Controller | |
import java.util.Collections | |
import java.util.WeakHashMap | |
import kotlin.properties.ReadOnlyProperty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/rxui-sample-java/src/main/java/com/artemzin/rxui/sample/java/MainPresenter.java b/rxui-sample-java/src/main/java/com/artemzin/rxui/sample/java/MainPresenter.java | |
index bdc556c..ddfa6d3 100644 | |
--- a/rxui-sample-java/src/main/java/com/artemzin/rxui/sample/java/MainPresenter.java | |
+++ b/rxui-sample-java/src/main/java/com/artemzin/rxui/sample/java/MainPresenter.java | |
@@ -1,6 +1,7 @@ | |
package com.artemzin.rxui.sample.java; | |
import android.support.annotation.NonNull; | |
+import android.util.Log; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Observable<FilesWrapper> download(List<Thing> things) { | |
return Observable.from(things) | |
.flatMap(thing -> { | |
File file = new File(getExternalCacheDir() + File.separator + thing.getName()); | |
if (file.exists()) { | |
return Observable.just(file); | |
} | |
Request request = new Request.Builder().url(thing.getUrl()).build(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this is a singleton and it takes instance from dagger! | |
@Inject OkHttpClient client; | |
Subscription sub; | |
@Override | |
protected void onDestroy() { | |
super.onDestroy(); | |
// Stop the request if our activity/fragment has been destroyed. | |
if (sub != null && !sub.isUnsubscribed()) { | |
sub.unsubscribe(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [{ | |
"type": "articles", | |
"id": "1", | |
"attributes": { | |
"title": "JSON API paints my bikeshed!" | |
}, | |
"links": { | |
"self": "http://example.com/articles/1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/public/javascripts/models/channel.js b/public/javascripts/models/channel.js | |
index 3289365..acf083b 100644 | |
--- a/public/javascripts/models/channel.js | |
+++ b/public/javascripts/models/channel.js | |
@@ -1,12 +1,28 @@ | |
var utils = require('../utils.js'); | |
-var ChannelModel = Ember.Object.extend({}); | |
-ChannelModel.reopenClass({ | |
+var ChannelModel = Ember.Object.extend({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/public/javascripts/config/routes.js b/public/javascripts/config/routes.js | |
index 5164d7f..db499da 100644 | |
--- a/public/javascripts/config/routes.js | |
+++ b/public/javascripts/config/routes.js | |
@@ -2,7 +2,7 @@ var App = require('./app'); | |
App.Router.map(function() { | |
this.resource("channels", function() { | |
- this.resource("channel", {path: "/channel/:channelId"}); | |
+ this.resource("channel", {path: "/channel/:channel_id"}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"auth": true, | |
"channels": [ | |
{ | |
"id": 3, | |
"image": "cardgames.png", | |
"name": "Card Games", | |
"description": "Bust out the deck of 52!", | |
"assetcount": 19 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Assertion failed: an Ember.CollectionView's content must implement Ember.Array. You passed function () { | |
var sbList = Ember.Array(); | |
this.channels.forEach(function(c) { | |
sbList.pushObject(ChannelsModel.find(c.id)); | |
}); | |
return sbList; | |
} application.js:727 | |
Uncaught TypeError: Object function () { | |
var sbList = Ember.Array(); | |
this.channels.forEach(function(c) { |