Branch: refs/heads/master Home: https://github.com/phpmyadmin/phpmyadmin Commit: f7f8722e1f013afbb0332cd9d03999ef54c293fa https://github.com/phpmyadmin/phpmyadmin/commit/f7f8722e1f013afbb0332cd9d039... Author: Kamil Tekiela tekiela246@gmail.com Date: 2022-08-22 (Mon, 08 August 2022) -03:00
Changed paths: A libraries/classes/EditField.php M libraries/classes/Controllers/Table/ReplaceController.php M libraries/classes/InsertEdit.php M phpstan-baseline.neon M psalm-baseline.xml M test/classes/InsertEditTest.php M test/classes/Stubs/DbiDummy.php
Log Message: ----------- Refactor insert edit (#17684)
This is a major redesign of the code that handles these four actions: in-place edit(AJAX), edit of multiple rows, copying of rows, and insertion of new rows. The goal is to make the code easier to read and more understandable.
I introduced a new DTO for better readability. Some of the methods were made private to the model The controller has access to two methods for getting the value for INSERT and for UPDATE Unfortunately, I have introduced method envy on EditField, but I do not want to move the functionality away from InsertEdit.php Unit tests have not improved in readability but I added helpful comments explaining what we are testing. There's probably a way to improve it too.
I will probably merge all commits once I decide it's ready for review.
Signed-off-by: Kamil Tekiela tekiela246@gmail.com