Skip to content

Commit 5552e6f

Browse files
committed
Added readme, development.txt and images
1 parent 1df300c commit 5552e6f

15 files changed

+81
-0
lines changed

README.md

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
Install this package using the composer:
2+
https://packagist.org/packages/lima/movies (version 1.0.4)
3+
4+
Considerations:
5+
- The module was built following the best practices of Magento, using ui components, ko javascript, saving data with queue repository, interfaces and queue with cron.
6+
- I tried so hard to use ui components to retrieve items from the API, but nothing works, I got overlaping block collection (without ui components), but the pagination, the total of items and the filter were not working well. After many tries, my best solution for this was to use a block model and ko scripts to create a table and an ajax form to retrieve items from the API (keeping magento 2 admin theme at most). All other admin grid uses best practices with full-featured ui components (except in-line editing).
7+
- I chose to use the queue system with cron to import products, but the queue import can be forced with the bulk action import (admin grid queue).
8+
- I have some versions on packgist because I never put a projeto into packgist and I had to do some tests.
9+
10+
This module contains the following resources:
11+
1 - Set a default value for products like 'price', 'stock' and 'attribute_set'
12+
2 - Define the default search terms, such as 'language' and 'adult'
13+
3 - Import movie with custom price or stock (this overlaps with default 'price' or 'price'), you can override these values in the search results table, just before import
14+
4 - Movies import through the queuing system (using cron). After searching and importing the selected results, this movie goes to a queue import and then becomes a product
15+
5 - The queuing system uses cron to import products
16+
6 - You can add a movie as one of your favorite in the catalog page view clicking "Add to favorites" button next to "Add to wish list" or "Add to compare"
17+
7 - This module can be installed with the composer (https://packagist.org/packages/lima/movies)
18+
8 - ACL for all resources
19+
20+
Demo images:
21+
22+
* Menu
23+
![alt text](https://github.com/lima195/Lima_Movie/images/01_menu.png)
24+
25+
* System configuration
26+
![alt text](https://github.com/lima195/Lima_Movie/images/02_config.png)
27+
28+
* Search Movie Results
29+
![alt text](https://github.com/lima195/Lima_Movie/images/03_search_movie.png)
30+
31+
* Setup custom price
32+
![alt text](https://github.com/lima195/Lima_Movie/images/04_setup_custom_price.png)
33+
34+
* Confirm Import
35+
![alt text](https://github.com/lima195/Lima_Movie/images/05_import_confirm.png)
36+
37+
* Import Movie Queue (waiting cron process)
38+
![alt text](https://github.com/lima195/Lima_Movie/images/06_import_movie_queue.png)
39+
40+
41+
* Force Import
42+
![alt text](https://github.com/lima195/Lima_Movie/images/07_import_movie_queue_force.png)
43+
44+
* Import Success
45+
![alt text](https://github.com/lima195/Lima_Movie/images/08_import_movie_success.png)
46+
47+
* Favorite List Before
48+
![alt text](https://github.com/lima195/Lima_Movie/images/09_movie_favorite_list_before.png)
49+
50+
* Search Movie Results (frontend)
51+
![alt text](https://github.com/lima195/Lima_Movie/images/10_movie_search_result_frontend.png)
52+
53+
* Product View
54+
![alt text](https://github.com/lima195/Lima_Movie/images/11_movie_view.png)
55+
56+
* Added as favorite
57+
![alt text](https://github.com/lima195/Lima_Movie/images/12_movie_add_favorite.png)
58+
59+
* Favorite List Now (This collection has a group by product_id, count and limit 10 in _initSelect() on collection file)
60+
![alt text](https://github.com/lima195/Lima_Movie/images/13_movie_favorite_list.png)

development.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Install this package using the composer:
2+
https://packagist.org/packages/lima/movies (version 1.0.4)
3+
4+
Considerations:
5+
- The module was built following the best practices of Magento, using ui components, ko javascript, saving data with queue repository, interfaces and queue with cron.
6+
- I tried so hard to use ui components to retrieve items from the API, but nothing works, I got overlaping block collection (without ui components), but the pagination, the total of items and the filter were not working well. After many tries, my best solution for this was to use a block model and ko scripts to create a table and an ajax form to retrieve items from the API (keeping magento 2 admin theme at most). All other admin grid uses best practices with full-featured ui components (except in-line editing).
7+
- I chose to use the queue system with cron to import products, but the queue import can be forced with the bulk action import (admin grid queue).
8+
- I have some versions on packgist because I never put a projeto into packgist and I had to do some tests.
9+
10+
This module contains the following resources:
11+
1 - Set a default value for products like 'price', 'stock' and 'attribute_set'
12+
2 - Define the default search terms, such as 'language' and 'adult'
13+
3 - Import movie with custom price or stock (this overlaps with default 'price' or 'price'), you can override these values in the search results table, just before import
14+
4 - Movies import through the queuing system (using cron). After searching and importing the selected results, this movie goes to a queue import and then becomes a product
15+
5 - The queuing system uses cron to import products
16+
6 - You can add a movie as one of your favorite in the catalog page view clicking "Add to favorites" button next to "Add to wish list" or "Add to compare"
17+
7 - This module can be installed with the composer (https://packagist.org/packages/lima/movies)
18+
8 - ACL for all resources
19+
20+
See readme for demo images
21+
I tooked almost 3 weekends to finish this.

images/01_menu.png

27.2 KB
Loading

images/02_config.png

100 KB
Loading

images/03_search_movie.png

175 KB
Loading

images/04_setup_custom_price.png

42.3 KB
Loading

images/05_import_confirm.png

13.2 KB
Loading

images/06_import_movie_queue.png

54.9 KB
Loading
14.1 KB
Loading

images/08_import_movie_success.png

129 KB
Loading
41.7 KB
Loading
291 KB
Loading

images/11_movie_view.png

553 KB
Loading

images/12_movie_add_favorite.png

88.6 KB
Loading

images/13_movie_favorite_list.png

19.6 KB
Loading

0 commit comments

Comments
 (0)