{"id":22632300,"url":"https://github.com/jacob-briscoe/interactive-comments","last_synced_at":"2026-04-28T11:33:50.931Z","repository":{"id":227565669,"uuid":"771798530","full_name":"jacob-briscoe/interactive-comments","owner":"jacob-briscoe","description":"Interactive Comments","archived":false,"fork":false,"pushed_at":"2025-08-12T17:33:33.000Z","size":1581,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-12T19:21:31.906Z","etag":null,"topics":["angular"],"latest_commit_sha":null,"homepage":"https://jacob-briscoe.github.io/interactive-comments/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacob-briscoe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-14T01:03:19.000Z","updated_at":"2025-08-12T17:33:36.000Z","dependencies_parsed_at":"2024-03-14T02:29:31.162Z","dependency_job_id":"89d81f32-028b-4113-9563-a64976016e0b","html_url":"https://github.com/jacob-briscoe/interactive-comments","commit_stats":null,"previous_names":["jacob-briscoe/interactive-comments"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jacob-briscoe/interactive-comments","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacob-briscoe%2Finteractive-comments","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacob-briscoe%2Finteractive-comments/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacob-briscoe%2Finteractive-comments/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacob-briscoe%2Finteractive-comments/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacob-briscoe","download_url":"https://codeload.github.com/jacob-briscoe/interactive-comments/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacob-briscoe%2Finteractive-comments/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32379319,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular"],"created_at":"2024-12-09T02:17:02.472Z","updated_at":"2026-04-28T11:33:50.826Z","avatar_url":"https://github.com/jacob-briscoe.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Interactive comments section solution\n\nThis is a solution to the [Interactive comments section challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/interactive-comments-section-iG1RugEG9). Frontend Mentor challenges help you improve your coding skills by building realistic projects. \n\n## Table of contents\n\n- [Overview](#overview)\n  - [The challenge](#the-challenge)\n  - [Screenshot](#screenshot)\n  - [Links](#links)\n- [My process](#my-process)\n  - [Built with](#built-with)\n  - [What I learned](#what-i-learned)\n  - [Useful resources](#useful-resources)\n- [Author](#author)\n\n## Overview\n\n### The challenge\n\nUsers should be able to:\n\n- View the optimal layout for the app depending on their device's screen size\n- See hover states for all interactive elements on the page\n- Create, Read, Update, and Delete comments and replies\n- Upvote and downvote comments\n- **Bonus**: If you're building a purely front-end project, use `localStorage` to save the current state in the browser that persists when the browser is refreshed.\n- **Bonus**: Instead of using the `createdAt` strings from the `data.json` file, try using timestamps and dynamically track the time since the comment or reply was posted.\n\n### Screenshot\n![](./images/desktop.png)\n\n### Links\n\n- Solution URL: [https://www.frontendmentor.io/solutions/angular-interactive-comments-LVgnKKcPH3](https://www.frontendmentor.io/solutions/angular-interactive-comments-LVgnKKcPH3)\n- Live Site URL: [https://jacob-briscoe.github.io/interactive-comments/](https://jacob-briscoe.github.io/interactive-comments/)\n\n## My process\n\nI started building this app by creating a sandbox to experiment with the various components needed in the app. I used this as a way to create the styles so that I could\nvisually make adjustments to the look and feel. Once I was satisfied with the look and feel, I moved on to individual component behavior. Next, I focused on putting \nthe components together in the main screen of the app. And finally, I created a component store to properly handle reactivity and state.\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS\n- Flexbox\n- CSS Grid\n- Mobile-first workflow\n- [Angular](https://angular.dev/) - Front-End Framework\n- [TailwindCSS](https://tailwindcss.com/) - For styles\n\n### What I learned\n\nOne of the most challenging aspects of this was to calculate relative time for the comments. Initially I considered pulling in a library to handle this for me\nbut I wanted the challenge of calculating it myself. In addition, I made the relative time calculation update automatically as well.\n\n### Useful resources\n\n- [Angular Dev](https://angular.dev/) - This is a great site for referencing Angular documentation.\n- [MDN](https://mdn.io) - I referenced this site many times, great for HTML, CSS, and JavaScript.\n- [TypeScript](https://www.typescriptlang.org/) - Typescript documentation.\n\n## Author\n\n- Website - [Jacob Briscoe](https://jacob-briscoe.github.io/)\n- Frontend Mentor - [@jacob-briscoe](https://www.frontendmentor.io/profile/jacob-briscoe)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacob-briscoe%2Finteractive-comments","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacob-briscoe%2Finteractive-comments","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacob-briscoe%2Finteractive-comments/lists"}