Create an infinite scrolling blog roll in Rails with Hotwire

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • rails-infinite-scroll-posts

    Discontinued Learn how to create an infinite scrolling blog roll in Rails with Turbo and Stimulus.

  • Source Code

  • IntersectionObserver

    Intersection Observer

  • import { Controller } from "stimulus" export default class extends Controller { static targets = ["entry"] static values = { path: String, } connect() { this.createObserver(); } createObserver() { let observer; let options = { // https://github.com/w3c/IntersectionObserver/issues/124#issuecomment-476026505 threshold: [0, 1.0] }; observer = new IntersectionObserver(entries => this.handleIntersect(entries), options); observer.observe(this.entryTarget); } handleIntersect(entries) { entries.forEach(entry => { if (entry.isIntersecting) { // https://github.com/turbolinks/turbolinks/issues/219#issuecomment-376973429 history.replaceState(history.state, "", this.pathValue); } }); } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Sequel 5.80.0 Released

    1 project | news.ycombinator.com | 1 May 2024
  • HN who is hiring ratio (job seekers vs. jobs posted)

    1 project | news.ycombinator.com | 1 May 2024
  • Mongoid 9.0 Released

    1 project | news.ycombinator.com | 1 May 2024
  • XRB is a templating system built loosely on top of XHTML markup

    1 project | news.ycombinator.com | 1 May 2024
  • End-to-end MLOps CI/CD pipeline with Harness and AWS

    2 projects | dev.to | 1 May 2024