Project 4 - Tweeter
Time spent: 10 hours spent in total
User Stories
The following required functionality is completed:
- [x] Hamburger menu
- [x] Dragging anywhere in the view should reveal the menu.
- [x] The menu should include links to your profile, the home timeline, and the mentions view.
- [x] The menu can look similar to the example or feel free to take liberty with the UI.
- [x] Profile page
- [x] Contains the user header view
- [x] Contains a section with the users basic stats: # tweets, # following, # followers
- [x] Home Timeline
- [x] Tapping on a user image should bring up that user's profile page
The following optional features are implemented:
- [ ] Profile Page
- [ ] Implement the paging view for the user description.
- [ ] As the paging view moves, increase the opacity of the background screen. See the actual Twitter app for this effect
- [ ] Pulling down the profile page should blur and resize the header image.
- [ ] Account switching
- [ ] Long press on tab bar to bring up Account view with animation
- [ ] Tap account to switch to
- [ ] Include a plus button to Add an Account
- [ ] Swipe to delete an account
The following additional features are implemented:
List anything else that you can get done to improve the app functionality!
- [x] Tap on content area to dismiss Hamburger menu
- [x] Grey out the content area when hamburger menu is open
- [x] Go to user profile from mentions view.
- [x] Go to tweet details view from profile view.
Please list two areas of the assignment you'd like to discuss further with your peers during the next class (examples include better ways to implement something, how to extend your app in certain ways, etc):
- How they dealt with the Header View
-
Video Walkthrough
Here's a walkthrough of implemented user stories:
https://i.imgur.com/zuEgc16.gif
GIF created with LiceCap.
Notes
Describe any challenges encountered while building the app.
License
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=====================================================================================
Project 3 - Tweeter
Tweeter is a basic twitter app to read and compose tweets from the Twitter API.
Time spent: 20 hours spent in total
User Stories
The following required functionality is completed:
- [x] User can sign in using OAuth login flow.
- [x] User can view last 20 tweets from their home timeline.
- [x] The current signed in user will be persisted across restarts.
- [x] In the home timeline, user can view tweet with the user profile picture, username, tweet text, and timestamp. In other words, design the custom cell with the proper Auto Layout settings. You will also need to augment the model classes.
- [x] User can pull to refresh.
- [x] User can compose a new tweet by tapping on a compose button.
- [x] User can tap on a tweet to view it, with controls to retweet, favorite, and reply.
The following optional features are implemented:
- [x] When composing, you should have a countdown in the upper right for the tweet limit.
- [x] After creating a new tweet, a user should be able to view it in the timeline immediately without refetching the timeline from the network.
- [x] Retweeting and favoriting should increment the retweet and favorite count.
- [x] User should be able to unretweet and unfavorite and should decrement the retweet and favorite count.
- [x] Replies should be prefixed with the username and the reply_id should be set when posting the tweet,
- [x] User can load more tweets once they reach the bottom of the feed using infinite loading similar to the actual Twitter client.
The following additional features are implemented:
- [x] Tweet timestamp formatted to relative time similar to the twitter app
- [x] User can see a media image in the tweet if any on the tweets view and tweet detail view.
- [x] Placeholder in ComposeTextView appears/disappears with the cursor at the beginning how twitter app does it.
- [x] Details view shows in reply to screenname and retweeted by screename in details view like the twitter app
- [x] Links are clickable in tweets view
- [x] Use filled in Assets for liked, retweeted actions like the twitter app
- [x] Retweet/Like/Un-retweet/Un-like/ReplyTo from tweets view with count update and color change like the twitter App.
- [x] All images are rounded similar to the twitter App.
- [x] Tweets in tweets view are updated when retweeted/liked from details view.
Please list two areas of the assignment you'd like to discuss further with your peers during the next class (examples include better ways to implement something, how to extend your app in certain ways, etc):
- How to centralize tweet/untweet etc logic between tweets table view cell and tweet details view controller.
-
Video Walkthrough
Here's a walkthrough of implemented user stories:
https://i.imgur.com/MZ8I9Ko.gif
GIF created with LiceCap.
Notes
Describe any challenges encountered while building the app.
License
Copyright [2017] [Droan Rishi]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.