sorenlouv / fb-sleep-stats

Use Facebook to track your friends’ sleeping habits

Home Page:https://medium.com/@sqrendk/how-you-can-use-facebook-to-track-your-friends-sleeping-habits-505ace7fffb6

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there any way to make the sidebar show all of my friends?

CastleCorp opened this issue · comments

I'm not sure how it is currently deciding which friends to show (my guess is recently active), but I would like to be able to see all of my friends.

Is this possible?

It currently shows your most active friends, and limits to 20 to make the search faster. It will become horrendously slow if you show 400+.

You can manually change it here:
https://github.com/sqren/fb-sleep-stats/blob/master/src/browser/components/Users.jsx#L34

Remember to run npm run webpack afterwards

I figured it out.

I changed line 34 of Users.jsx from users = users.slice(0, 20); to users = users.slice(0, users.length);

@sqren thanks!

One other thing, which is more trivial. Is there a way I can have the search bar stay fixed in view when scrolling down the list?

Probably less trivial actually :)
Something with fixed positioning. Take a look here:
https://github.com/sqren/fb-sleep-stats/blob/master/src/browser/components/main.less#L8

Again: Remember to run npm run webpack afterwards

If you are doing many changes, you can run webpack automatically on change by running:
npm run webpack-watch

Ah perfect. That makes things much easier.

I am toying with the idea of doing a sleep study for my school. I will probably end up writing some scripts to make that easier. If anything comes from it, I'll share the result.

Cheers

Sounds cool. Good luck! :)