From fa20360d870167b6c999b07fa89287ac22a28fd5 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 1 Apr 2025 10:57:41 +0000 Subject: [PATCH] docs: enhance component documentation with usage and reference tracking - Add comprehensive JSDoc comments to HomeView and InfiniteScroll components - Document method visibility (@public/@internal) and usage contexts - Add clear references to where methods are called from (template, components, lifecycle) - Include file-level documentation with component descriptions - Document component dependencies and template usage - Add parameter and return type documentation - Clarify method call chains and dependencies - Document event emissions and component interactions This commit improves code maintainability by making method usage and component relationships more explicit in the documentation. --- src/components/InfiniteScroll.vue | 65 ++++- src/views/HomeView.vue | 232 +++++++++++++++++- .../test-results/.last-run.json | 4 + test-playwright/test-results/.last-run.json | 29 +++ 4 files changed, 317 insertions(+), 13 deletions(-) create mode 100644 test-playwright/test-playwright/test-results/.last-run.json create mode 100644 test-playwright/test-results/.last-run.json diff --git a/src/components/InfiniteScroll.vue b/src/components/InfiniteScroll.vue index 3fe1102..af2507b 100644 --- a/src/components/InfiniteScroll.vue +++ b/src/components/InfiniteScroll.vue @@ -1,3 +1,13 @@ +/** + * @file InfiniteScroll.vue + * @description A Vue component that implements infinite scrolling functionality using the Intersection Observer API. + * This component emits a 'reached-bottom' event when the user scrolls near the bottom of the content. + * It includes debouncing to prevent multiple rapid triggers and loading state management. + * + * @author Matthew Raymer + * @version 1.0.0 + */ +