Coder Social home page Coder Social logo

mean-tweets's People

Contributors

ttbarnes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

mean-tweets's Issues

Grunt dist task

currently only these files can be minified:

  • main app JS (app.min.js)
  • main css (main.min.css), done with watch

Everything should be considered.

Unit tests

Now that we have some main pieces ready...

User specific tweets

At the moment we have these api routes:

/api/tweets/ - returns all tweets
/api/tweets/123456789 - returns single tweet ID

We want this:

/api/username/tweets - returns a single users tweets
/api/username/tweets/123456789 - return one specific tweet for a single user
/api/tweets/ - returns all tweets for public visibility

Follow/following/followers

  • POST to X route ('people Y follows'). Maybe:
    api/users/phil/followers
    api/users/phil/following
  • display followers and followings in profile
  • eventually to determine which tweets to display in home

DRY tweets controller/factory

At the moment in TweetsCtrl we have to functions that are exactly the same:

tweetsService.tweets.getList().then(function (tweets){
  $scope.tweets = tweets;
});

It would be great to have this coming from a factory instead, so we could do something like:

$scope.tweetsService = new tweetsService();

Retweets

How to handle this in timeline and public profile? I think ideally we could have 1 ID for a tweet - if a user retweets, duplicate the ID and tweet content. This way, we avoid having to find and update multiple IDs.

  • api end points: update, delete
  • querying db with req.body/params
  • UI

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.