Giter Site home page Giter Site logo

proman-1-python-csaszarattila42's People

Contributors

adammetal avatar annasomos avatar csaszarattila42 avatar kiscsaj68 avatar nagyd88 avatar palinkasmark avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

proman-1-python-csaszarattila42's Issues

13. User login

  • Allow the user to log into the application with their username and password.
  • There is a "Login" button in the main page header if the user is not logged in.
  • After clicking the "Login" button, there is a login page where the user can input their username and password.
  • After logging in, the user can see the list of public and private boards.

3. Rename board

  • Allow the user to change the title of any board.
  • When clicking the title of a board, it changes into an input box where the title can be edited.
  • There is a "Save" button that saves the new title of the board. The title is displayed on the board page and the board list.

20. Archive cards

  • Allow the user to archive and restore cards.
    There is an archive icon associated with every card.
  • After clicking the archive icon, the associated card is archived (that is, it disappears from the board).
  • There is an "Archived Cards" button on the board (if it has any archived cards).
  • After clicking the "Archived Cards" button, a list of all archived cards associated with the board is displayed.
  • There is an "Unarchive" icon associated with every archived card in the list.
  • After clicking the "Unarchive" icon, the card is unarchived (that is, it returns to its original status on the associated board).

11. Offline access

  • Allow the user to access the boards and cards offline like a proper PWA (progressive web app).
  • Allow the user to save the webpage as a mobile application that can be later opened offline, when the webpage is opened from the root URL (/) on a mobile device.

10. Edit card title

  • Allow the user to edit the title of a card.
  • Clicking the title of a card changes it into an input box where a new title can be written.
  • Pressing Enter saves the new title.
  • Clicking out of the input box or pressing Escape results in the original title remaining unchanged.

9. Change card status&order

  • Allow the user to change the status of a card (that is, move the card between columns).
  • Cards can be dragged from one column to another, and stay in the new position (that is, their status is updated).
  • Allow the user to drag the cards above or below each other and ensure that the card stays in the new position (that is, its order is updated).

6. Rename columns

  • Allow the user to change the title of any column.
  • Clicking the title of a column changes it into an input box where a new title can be written.
  • The new title is saved when pressing Enter.
  • Clicking out of the input box or pressing Escape results in the original title remaining unchanged.

14. Private boards

  • Allow the logged-in user to crate private boards that are only visible to them.
  • There is a "Create new private board" button when the user is logged in.
  • After clicking the "Create" button, an editable field is displayed, where the title of the new private board can be specified.
  • There is a "Save" button that saves the new private board and its title.
  • Ensure that the private board is visible only when the user who created it is logged in.

12. User registration

  • Allow the user to register a new account.
  • There is a register link on the main page that leads to the registration page, after opening the root URL (/). .
  • There is a registration form where the user can specify a username and password.
  • There is a submit button in the registration form. By clicking it, the user credentials get stored and the user can log in with them later.

7. Create card

  • Allow the user to add a new card to a board.
  • There is a "Create new card" button after opening a board.
  • A new card is added to the first column of the board when clicking the "Create new card" with the title given by the user.

4. Board view with four default columns

  • Four default columns are displayed after opening a board.
  • There are four columns (New, In Progress, Testing, Done) that indicate the statuses of cards.
  • The title of the board is displayed on the top of the page.
  • The board closes after clicking its title.

19. Delete columns

  • Allow the user to delete columns from boards.
  • There is a delete icon associated with every column.
  • After clicking a delete icon, the associated column is deleted from the board, along with its cards.

15. User logout

  • Allow the user to log out from the application.
  • There is a logout link when the user is logged in.
  • After clicking the logout link the user is logged out and is able to see the public boards only.

21. Manual synchronization

  • Allow the user to see changes made by other users after refreshing the page.
  • There is a "Refresh" button on the page
  • After clicking the "Refresh" button, all boards and cards are refreshed, so changes made by other users can be seen.

23. (optional) History of changes in the current session

  • On the right side of the page, there is a card list with all the changes made by the user in the current session.
  • Each time a post request is made, a new card is added on top of the history list, containg the name of the new card, and the board to which it is added.
  • Each time a delete request is made, a new card is added on top of the history list, containg the name of the deleted card, and the board to which it is deleted.
  • Each time a put request is made, a new card is added on top of the history list, containing the previous name of the card, the new name of the card, and the status of the card.
  • The history list is implemented using the chain of responsibility pattern (https://refactoring.guru/design-patterns/chain-of-responsibility).

17. Delete private boards

  • Allow the user to delete existing private boards that are associated to their account. Boards can only be deleted when the user is logged in.
  • There is a delete icon associated with every private board that belongs to the logged-in user.
  • After clicking a delete icon, the associated Board is deleted along with its cards.

2. Create public boards

  • Allow the user to add new boards with public access.
  • There is a "Create new board" button on the root URL (/).
  • After clicking the "Create new board" button, the title of the new board can be specified in an editable field.
  • There is a "Save" button that saves the new board and its title. The title is displayed on the board page and the board list.

24. (optional) Separation of concerns for each DB entity

  • Split the data_handler in the backend into multiple entities, each one with its own CRUD operations.
  • A cards_handler is created, which is responsible for operations with cards (update, delete, get, create).
  • A boards_handler is created, which is responsible for operations with boards (update, delete, get, create).
  • A tags_handler is created, which is responsible for operations with cards (update, delete, get, create).

16. Delete public boards

  • Allow the user to delete existing public boards.
  • There is a delete icon associated with every public board.
  • After clicking a delete icon, the associated board is deleted along with its cards.

8. Order the cards

  • Allow the user to set priorities to the cards.
  • Allow the user to drag the cards above or below each other and ensure that the card stays in the new position (that is, its order is updated).

18. Delete cards

  • Allow the user to delete cards from boards.
  • There is a delete icon associated with every card.
  • After clicking a delete icon, the associated card is deleted from the board.

5. Board view with dynamic columns

  • Allow the user to add any number of columns to the board that can be used as statuses for the cards.
  • There is an "Add new column" button after opening a board.
  • A new column is added to the board when clicking the "Add new column" button with the title given by the user. The column can be used as a status for the cards.
  • The title of the board is visible on the top of the page.
  • The board closes when clicking its title.

22. Live synchronization

  • Allow the user to collaborate with other users in real-time.
  • When a change is made to any board or its cards, other users with access to the board get the updates automatically and immediately.

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.