Static prototype & feedback - imkarin/bloktech GitHub Wiki

Static prototype

Find the static prototype made in week 2-3 here.

Feedback

Tops

  • Good use of the javascript Class & constructor to create multiple 'people' objects.
  • The prototype is quite dynamic, the content gets loaded in based on 'data' in the javascript file.
  • Except for some details, the app is already responsive.

Tips

  • Responsiveness: make sure the photos are displayed appropriately on all screens.
  • Let the user know what page he is currently on (highlight active page in the nav-bar).
  • Keep progressive enhancement in mind. Will the content still load if you turn javascript off? Make the browselist of people scrollable when javascript isn't available.

Making it dynamic

In week 3-4 I started making the prototype dynamic: rendering user data (like profile pictures, names etc.) from the server, registering which people the user has liked and displaying them in the 'liked list'. See the documentation of week 4 here.

Peer feedback

  • Right now, the people liked by the user immediately appear in the 'liked list' as (active) chats, even though the other person might not have liked the user back yet. Maybe display some 'pending' and 'rejected' likes.
  • 'Browsing' people sounds kind of odd, think of a different title for this page.