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

メール設定・CSV出力項目設定:ブラウザバック不具合の修正 #5700

Merged
merged 4 commits into from
Aug 31, 2022

Conversation

riki-develop
Copy link
Contributor

@riki-develop riki-develop commented Aug 30, 2022

概要(Overview・Refs Issue)

メールテンプレート編集画面でブラウザバックをすると、
テンプレート名と本文が食い違った表示になる #5670

複数回select要素の変更を行いブラウザバックすると表示キャッシュが残り、
select部分のみ前ページの文字列が保持されてしまう

方針(Policy)

ブラウザの「戻る」イベントが発生した場合のみ、
option要素selected属性を再設定し表示を更新

実装に関する補足(Appendix)

同様の不具合が発生するページ【CSV出力項目設定】も修正

※補足
EC-CUBE4.2以前のversionでも同じ不具合を確認

テスト(Test)

▼下記URLにて動作確認
/admin/setting/shop/mail
/admin/setting/shop/csv

▼開発環境(M1 Mac:Docker)

EC-CUBE:4.2.0-beta2
DB:MySQL 5.7.39
Apache/2.4.54 (Debian)
PHP:7.4.30

マイナーバージョン互換性保持のための制限事項チェックリスト

  • 既存機能の仕様変更はありません
  • フックポイントの呼び出しタイミングの変更はありません
  • フックポイントのパラメータの削除・データ型の変更はありません
  • twigファイルに渡しているパラメータの削除・データ型の変更はありません
  • Serviceクラスの公開関数の、引数の削除・データ型の変更はありません
  • 入出力ファイル(CSVなど)のフォーマット変更はありません

レビュワー確認項目

  • 動作確認
  • コードレビュー
  • E2E/Unit テスト確認(テストの追加・変更が必要かどうか)
  • 互換性が保持されているか
  • セキュリティ上の問題がないか
    • 権限を超えた操作が可能にならないか
    • 不要なファイルアップロードがないか
    • 外部へ公開されるファイルや機能の追加ではないか
    • テンプレートでのエスケープ漏れがないか

@riki-develop riki-develop changed the title Ck issues 5670 メール設定・CSV出力項目設定:ブラウザバック不具合の修正 issues 5670 Aug 30, 2022
@chihiro-adachi chihiro-adachi added this to the 4.2.0 milestone Aug 30, 2022
@chihiro-adachi chihiro-adachi changed the title メール設定・CSV出力項目設定:ブラウザバック不具合の修正 issues 5670 メール設定・CSV出力項目設定:ブラウザバック不具合の修正 Aug 30, 2022
@chihiro-adachi
Copy link
Contributor

@riki-develop
safari/firefoxでは修正確認できましたが、chromeでは改善されませんでした。
※OSはMac Montereyです

どうもwindow.performance.navigation.typeがブラウザバック時でも0が返る挙動になるようです。

@chihiro-adachi
Copy link
Contributor

@riki-develop
少し手元で試してみただけなのですが、以下のコードだけでも良いのかなと思いましたがいかがでしょうか。

            $(window).on('pageshow', function() {
                var tmp_select =  $('#mail_template[name="mail[template]"] option[selected]').val();
                $('#mail_template[name="mail[template]"]').val(tmp_select);
            });

@riki-develop
Copy link
Contributor Author

@chihiro-adachi
ご確認ありがとうございます。
共有頂いたコードで問題ない事を確認しました。

▼下記、不要な処理を削除
window.performance.navigation.type
... removeAttr('selected');

そもそもwindow.performance.navigation.typeは非推奨でした、失礼しました。
https://developer.mozilla.org/ja/docs/Web/API/PerformanceNavigation/type

@chihiro-adachi
Copy link
Contributor

@riki-develop
ありがとうございます。修正確認しました

@codecov-commenter
Copy link

codecov-commenter commented Aug 31, 2022

Codecov Report

Merging #5700 (942ee07) into 4.2 (0c42641) will decrease coverage by 0.00%.
The diff coverage is n/a.

@@             Coverage Diff              @@
##                4.2    #5700      +/-   ##
============================================
- Coverage     78.84%   78.84%   -0.01%     
  Complexity     6273     6273              
============================================
  Files           469      469              
  Lines         21058    21058              
============================================
- Hits          16604    16603       -1     
- Misses         4454     4455       +1     
Flag Coverage Δ
E2E 64.82% <ø> (-0.02%) ⬇️
Unit 77.59% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...ontroller/Admin/Product/ProductClassController.php 90.28% <0.00%> (-0.58%) ⬇️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug:Low bugbounty2022:pr:entry バグバウンティ2022 バグ登録 PR登録 bugbounty2022:pr:recognition バグバウンティ2022 バグ登録 PR取込 Status: ready-for-merge
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants