Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

チャットメッセージのハイパーリンクの受信側の表示エラー #115

Open
kazu-0226 opened this issue Oct 19, 2020 · 5 comments · Fixed by #117
Open

チャットメッセージのハイパーリンクの受信側の表示エラー #115

kazu-0226 opened this issue Oct 19, 2020 · 5 comments · Fixed by #117

Comments

@kazu-0226
Copy link
Owner

概要

チャットメッセージのハイパーリンクの受信側の表示エラー

再現手順

https://github.comというメッセージを送信した際の相手の表示が以下となる
https://github.com/'' target='_blank'>https://github.com/' target='_blank'>https://github.com/

修正しないとどう困るか

メッセージの表示崩れ

原因

.html_safeが効いていない?

修正案

@kazu-0226
Copy link
Owner Author

<%= raw content %>で問題なく、表示されたがリロードすると戻ってしまう

@kazu-0226
Copy link
Owner Author

上記から原因は、左右両方のパーシャルで呼び出しているため、
<%= content_url_to_link(content).html_safe %>

送信(右のパーシャル)で破壊的メソッドでcontentの内容を書き換えて、さらに左で書き換えているからリロードしないと2重になる。

<%= raw content %>とだと1回しか呼び出されていないため、問題なく表示されたのち、呼び出していないのでcontentが置き換えられず、リロードすると単に文字列になってしまう

@kazu-0226
Copy link
Owner Author

対処法として
・破壊的メソッドを使わない
・dupメソッドでコピーしてcontentを複数用意する

@kazu-0226
Copy link
Owner Author

kazu-0226 added a commit that referenced this issue Oct 20, 2020
[Fix]#115/ハイパーリンクの受信側の表示エラー
@kazu-0226
Copy link
Owner Author

dupメソッドでコピーしてcontentを複数用意する

上記で対応したが力技の気があるため、破壊的メソッドを使わない方法も検討

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant