Upgrade heatmaps stile Hotjar: movimenti mouse e anteprima pagina live.

Traccia i movimenti aggregati, overlay a gradienti sull’iframe della pagina e toggle click/move in admin.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-20 23:03:12 +02:00
co-authored by Cursor
parent 8a07c5d569
commit b84321346f
26 changed files with 361 additions and 96 deletions
@@ -0,0 +1,8 @@
# frozen_string_literal: true
class AddMoveHeatmapToAnalytics < ActiveRecord::Migration[7.2]
def change
add_column :analytics_events, :weight, :integer, null: false, default: 1
add_column :analytics_page_cells, :move_count, :integer, null: false, default: 0
end
end