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

4.1-beta3 : 管理画面 ファイルアップロード UI の修正 #5125

Merged
merged 3 commits into from
Aug 31, 2021

Conversation

matsuoshi
Copy link
Contributor

@matsuoshi matsuoshi commented Aug 30, 2021

概要(Overview・Refs Issue)

4.1 beta3 にて、管理画面のファイルアップロードの UI が 4.0と異なっていた問題に対応しました

関連issue

#5114

方針(Policy)

file_widget で出力されるHTMLコードは 4.0 と 4.1 とで差異があったため、bootstrap_4_horizontal_layout.html.twig にて新規に file_widget ブロックを作成し、出力されるHTMLを 4.0時と同等にする (CSSは変更しない)

管理画面の widget 追加のみのため、フロントには影響なしの想定

実装に関する補足(Appendix)

テスト(Test)

相談(Discussion)

レビュワー確認項目

  • 動作確認
  • コードレビュー
  • E2E/Unit テスト確認(テストの追加・変更が必要かどうか)
  • 互換性が保持されているか
  • セキュリティ上の問題がないか

@codecov-commenter
Copy link

codecov-commenter commented Aug 30, 2021

Codecov Report

Merging #5125 (8a7bf27) into 4.1 (49ec600) will decrease coverage by 0.00%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff             @@
##              4.1    #5125      +/-   ##
==========================================
- Coverage   68.16%   68.16%   -0.01%     
==========================================
  Files         457      457              
  Lines       24980    24988       +8     
==========================================
+ Hits        17027    17032       +5     
- Misses       7953     7956       +3     
Flag Coverage Δ
tests 68.16% <ø> (-0.01%) ⬇️

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

Impacted Files Coverage Δ
...ntroller/Admin/Setting/System/MemberController.php 67.96% <0.00%> (-1.38%) ⬇️
src/Eccube/Entity/Member.php 85.85% <0.00%> (+0.75%) ⬆️
src/Eccube/Form/Type/Admin/MemberType.php 58.51% <0.00%> (+1.19%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 49ec600...8a7bf27. Read the comment docs.

@okazy okazy added affected:admin_template 管理画面テンプレートのDOMに影響のある変更 bug:Low labels Aug 30, 2021
@okazy okazy added this to the 4.1 milestone Aug 30, 2021
@okazy
Copy link
Contributor

okazy commented Aug 30, 2021

動作確認しました。

変更前

商品登録画面

image

<div class="custom-file">
<input type="file" id="admin_product_product_image" name="admin_product[product_image][]" multiple="multiple" accept="image/*" style="display:none;" class="custom-file-input">
<label for="admin_product_product_image" class="custom-file-label"></label>
</div>

ファイル管理

image

<div class="custom-file">
<input type="file" id="form_file" name="form[file][]" required="required" multiple="multiple" class="custom-file-input"><label for="form_file" class="custom-file-label"></label>
</div>

変更後

商品登録画面

image

<input type="file" id="admin_product_product_image" name="admin_product[product_image][]" multiple="multiple" accept="image/*" style="display:none;" class="form-control-file">

ファイル管理

image

<input type="file" id="form_file" name="form[file][]" required="required" multiple="multiple" class="form-control-file">

4.0

商品登録画面

<input type="file" id="admin_product_product_image" name="admin_product[product_image][]" multiple="multiple" accept="image/*" style="display:none;" class="form-control-file">

ファイル管理

<input type="file" id="form_file" name="form[file][]" required="required" multiple="multiple" class="form-control-file">

@okazy okazy added bug:Middle and removed bug:Low labels Aug 31, 2021
@okazy
Copy link
Contributor

okazy commented Aug 31, 2021

プラグインとデザプレのアップロードも確認

4.0

image

image

image

修正前(4.1)

image

image

image

修正後

image

image

image

@okazy
Copy link
Contributor

okazy commented Aug 31, 2021

@matsuoshi

独自プラグインのアップデートの際のファイルアップロードも対応しました。

matsuoshi#3

image

独自プラグインアップデートの file_widget の出力HTMLの調整
@matsuoshi
Copy link
Contributor Author

@okazy ありがとうございます、修正漏れでしたね、マージさせてもらいました!

@okazy okazy merged commit ce55b43 into EC-CUBE:4.1 Aug 31, 2021
@okazy
Copy link
Contributor

okazy commented Aug 31, 2021

ありがとうございます!マージしました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
affected:admin_template 管理画面テンプレートのDOMに影響のある変更 bug:Middle
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants