2023-04-26 16:21:32 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe ReactComponentHelper do
|
2023-04-26 16:21:32 +00:00
|
|
|
describe 'react_component' do
|
|
|
|
context 'with no block passed in' do
|
|
|
|
let(:result) { helper.react_component('name', { one: :two }) }
|
|
|
|
|
|
|
|
it 'returns a tag with data attributes' do
|
|
|
|
expect(parsed_html.div['data-component']).to eq('Name')
|
|
|
|
expect(parsed_html.div['data-props']).to eq('{"one":"two"}')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a block passed in' do
|
|
|
|
let(:result) do
|
|
|
|
helper.react_component('name', { one: :two }) do
|
|
|
|
helper.content_tag(:nav, 'ok')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a tag with data attributes' do
|
|
|
|
expect(parsed_html.div['data-component']).to eq('Name')
|
|
|
|
expect(parsed_html.div['data-props']).to eq('{"one":"two"}')
|
|
|
|
expect(parsed_html.div.nav.content).to eq('ok')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'react_admin_component' do
|
|
|
|
let(:result) { helper.react_admin_component('name', { one: :two }) }
|
|
|
|
|
|
|
|
it 'returns a tag with data attributes' do
|
|
|
|
expect(parsed_html.div['data-admin-component']).to eq('Name')
|
2023-06-02 13:00:27 +00:00
|
|
|
expect(parsed_html.div['data-props']).to eq('{"one":"two"}')
|
2023-04-26 16:21:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def parsed_html
|
|
|
|
Nokogiri::Slop(result)
|
|
|
|
end
|
|
|
|
end
|