Skip to content

pmAdriaan/daily-planner-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

10 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation


DAILY-PLANNER-APP

β—¦ Plan Your Success, Every Day with Daily Planner App!

β—¦ Developed with the software and tools below.

JavaScript jQuery HTML5 CSS3 BOOTSTRAP

GitHub license git-last-commit GitHub commit activity GitHub top language

πŸ“– Table of Contents


πŸ“ Overview

The Daily Planner App offered in this repository is a user-friendly application designed to help users effectively plan and manage their daily tasks. It features a date-picker, task time-blocks, and the capability to store and retrieve set tasks. The app intelligently styles tasks based upon their time status (past, present, or future), ensuring users can easily distinguish between them. It also provides the options to clear tasks either by selected date or across all dates, promoting user control over data.


πŸ“¦ Features

Feature Description
βš™οΈ Architecture Primarily uses front-end technologies (HTML, CSS, JavaScript) with a minimal layout. Data is stored locally using local storage.
πŸ”— Dependencies Relies on vanilla JavaScript, JQuery for calendar UI and DOM manipulation, Bootstrap for styling, and Day.js for date operations.
🧩 Modularity The system isn't modular, as it mainly uses one JavaScript file. However, CSS is separated into different files for clarity.
πŸ§ͺ Testing No testing framework or tools in use. Testing was conducted manually.
⚑️ Performance The application should be fast and efficient given its simplicity and reliance on local storage for data management.
πŸ” Security No explicit security measures. Data vulnerabilities may exist due to usage of local storage without any protection.
πŸ”€ Version Control Git/GitHub used for version control.
πŸ”Œ Integrations Integrations include Bootstrap for responsive design, Day.JS for date management, and JQuery for interactivity.
πŸ“Ά Scalability Scaling potential is limited due to lack of back-end and the front-end code doesn't have modularity or scalability considerations.

πŸ“‚ Repository Structure

└── daily-planner-app/
    β”œβ”€β”€ css/
    β”‚   β”œβ”€β”€ jquery-ui.css
    β”‚   └── style.css
    β”œβ”€β”€ images/
    β”œβ”€β”€ index.html
    └── scripts/
        └── script.js

βš™οΈ Modules

Root
File Summary
index.html The code establishes the Work Day Scheduler, a simple daily planner app. It includes Google Fonts, JQuery, Bootstrap, and Day.js library to aid functionality and styling. It features a day-picker, instructions, a container for time-block tasks, and options to clear tasks by all storage or selected date. There are links to style sheets for additional CSS and JQuery UI styling. The file structure includes directories for storing CSS, images and scripts.
jquery-ui.css The code defines a variety of user interface (UI) styles using CSS for a daily planner application. It includes styles for functional elements like icons, interaction cues, input fields, buttons, and UI states like hover, active, focus. It specifically styles jQuery-UI components like date-picker and provides customized icon sprites. It defines UI styles for layout helpers, overlays, error states, primary and secondary actions which control responsiveness of UI. The code also handles visual aspects like border-radius and box-shadow.
style.css The code defines the CSS for the daily planner app, including color variables, font styles, layout specifications, and button designs. It handles various interactivity states (focus, hover) and conditions (past, present, future), ensuring a consistent, attractive appearance across different elements of the app. The design is responsive, with specific media queries for screen widths less than 768px.
script.js The JavaScript code for the daily planner application. It initializes a jQuery UI calendar, generates time blocks for hourly tasks within business hours (9AM-5PM), and saves or fetches these tasks from local storage. The selected date's tasks are dynamically updated and styled based on their time status (past, present, or future). Click events handle task saving, clear tasks for the selected date, and clear all tasks, with associated confirmation messages.

πŸš€ Getting Started

πŸ”§ Installation

  1. Clone the daily-planner-app repository:
git clone https://github.com/pmAdriaan/daily-planner-app
  1. Change to the project directory:
cd daily-planner-app
  1. Install the dependencies:
β–Ί N/A

πŸ€– Running Daily Planner App

β–Ί Open index.html with Live Server plugin in VS Code

🌐 Live Daily Planner App

β–Ί Daily Planner App

πŸ“Έ Daily Planner App Screenshot

Daily Planner App Screenshot


πŸ›£ Project Roadmap

  • ℹ️ Comming Soon

🀝 Contributing

Contributions are welcome! Here are several ways you can contribute:

Contributing Guidelines

Click to expand
  1. Fork the Repository: Start by forking the project repository to your GitHub account.
  2. Clone Locally: Clone the forked repository to your local machine using a Git client.
    git clone <your-forked-repo-url>
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear and concise message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to GitHub: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.


πŸ“„ License

Copyright Β© 2023 Mihai Pirvu.

This project is licensed under the ℹ️ MIT-License. See the MIT License file for additional info.

Return