-
Notifications
You must be signed in to change notification settings - Fork 294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🚀 Implement Task Management Features: HTML to Full App #57
Open
diieggo
wants to merge
12
commits into
platzi:main
Choose a base branch
from
diieggo:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Implement to-do list functionality using an array. Additionally, hide elements with 'main' and 'footer' classes when the to-do list is empty.
Enable the ability to add a new task to the to-do list. When a task is entered in the task addition input and 'Enter' is pressed, a new task is created and added to the to-do list array.
Added a function to automatically render the to-do list array. This function is executed on page load and after adding a new task, ensuring the to-do list is consistently updated.
Added functionality to store the to-do list in local storage. This enhancement ensures that the to-do list persists across page reloads, providing a better user experience.
Made a quick fix by updating the local storage key, resolving an issue related to storage. This adjustment ensures proper functioning of the to-do list with the corrected key.
Implemented features for task management in the to-do list. Users can now mark tasks as completed, edit existing tasks, and delete tasks for a more versatile to-do list experience.
Added functionality to the pending tasks counter, ensuring it accurately reflects the number of tasks yet to be completed. This enhancement improves the overall usability of the to-do list.
Introduced a button that allows users to easily remove all completed tasks, enhancing the usability of the to-do list by providing a convenient way to declutter completed items.
Implemented functionality to dynamically toggle the visibility of the 'clear completed' button. The button is now hidden when there are no completed tasks and becomes visible when there are completed tasks, providing a more intuitive user interface.
Added functionality to enable filtering tasks based on the hash in the URL. Now, changing the hash in the URL updates the displayed tasks according to the selected filter (all tasks, pending tasks, completed tasks). This enhances the user experience by providing a convenient way to navigate through different task views.
Refactored the codebase to adhere to a consistent and improved style by applying Prettier code formatting. This enhances readability and maintains a standardized code format across the project.
Deploy con Netlify: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Descripción del Pull Request:
Cambios Realizados:
Detalles Técnicos:
.trim()
,.focus()
, y manejo de eventos para lograr interactividad eficiente y una experiencia de usuario fluida.Este pull request está listo para su revisión. ¡Gracias! 🌟
Code by Diego Huaccha