Giter VIP home page Giter VIP logo

bookmarks's Introduction

Bookmarks

User Stories & Domain Model

As a user
So that I can easily find a website I have bookmarked
I would like to be able to see a list of my bookmarks

╔════════════╗         .all         ╔════════════╗
║            ║--------------------->║            ║
║ Controller ║ [array of bookmarks] ║  Bookmark  ║
║            ║<---------------------║            ║
╚════════════╝                      ╚════════════╝

- When the user visits the index page, their browser sends a message to a controller we built.
- When the controller gets the request, it asks the Bookmark class to give it all the bookmarks, i.e. the controller asks for Bookmark.all.
- The Bookmark class goes and gets the bookmarks from the database somehow, and gives back all the bookmarks in an array to the controller.
- The controller renders the array of bookmarks to a webpage, which it sends as a response to the user (this interaction is not pictured)
--------

As a user
So that I can remember a website I like
I would like to be able to add a new bookmark


╔════════════╗      .add(bookmark)         ╔════════════╗
║            ║---------------------------->║            ║
║ Controller ║     [array of bookmarks]    ║  Bookmark  ║
║            ║<----------------------------║            ║
╚════════════╝                             ╚════════════╝

- When the user visits the index page, and click the "add link" button and type the website address to bookmark. Their browser sends a message to a controller we built.
- When the controller posts the request, it asks the Bookmark class to add the bookmark to the bookmark list, i.e. the controller asks for Bookmark.add(bookmark).
- The Bookmark class goes and posts the new bookmark from the database somehow, and gives back all the bookmarks in an array to the controller.
- The controller renders the array of bookmarks to a webpage, which it sends as a response to the user (this interaction is not pictured)
-------

As a user
So I can keep my bookmarks list up-to-date
I would like to be able to delete bookmarks

-------

As a user
So I can keep my bookmarks list up-to-date
I would like to be able to update bookmarks

bookmarks's People

Contributors

jeff1108 avatar neobay991 avatar

Watchers

 avatar

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.