Usa screenshot di pagina come sfondo heatmap al posto dell’iframe.

Cattura periodica client-side (con consenso), storage ActiveStorage e overlay allineato all’immagine.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-20 23:14:47 +02:00
co-authored by Cursor
parent 406a90ae5b
commit 70fccc493e
25 changed files with 442 additions and 73 deletions
@@ -0,0 +1,16 @@
# frozen_string_literal: true
class CreateAnalyticsPageSnapshots < ActiveRecord::Migration[7.2]
def change
create_table :analytics_page_snapshots, id: :uuid, default: -> { "gen_random_uuid()" } do |t|
t.string :page_path, null: false
t.string :device, null: false
t.integer :width, null: false, default: 0
t.integer :height, null: false, default: 0
t.datetime :captured_at, null: false
t.timestamps
end
add_index :analytics_page_snapshots, %i[page_path device], unique: true, name: "index_analytics_page_snapshots_unique"
end
end