Skip to content

Commit 928bde6

Browse files
Merge pull request #9 from ManiruzzamanAkash/frontend-crud
Frontend CRUD Operation - Job Page - [On Development]
2 parents 11ad33c + c56a6d9 commit 928bde6

File tree

95 files changed

+6651
-382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+6651
-382
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# wp-react-kit
2-
A simple starter kit to work in WordPress with WP-script, React, React Router, Tailwind CSS, PostCSS, Eslint, i18n, PHP OOP plugin architecture easily in a minute.
2+
A simple starter kit to work in WordPress with WP-script, React, React Router, Tailwind CSS, PostCSS, Eslint, WP-Data, WP-Data Store, React Components, React CRUD, i18n, PHP OOP plugin architecture easily in a minute.
33

44
----
55

@@ -96,6 +96,14 @@ Or, it could be your custom processed URL.
9696
[View Detailed documentations with parameters and responses of the REST API](https://github.com/ManiruzzamanAkash/wp-react-kit/blob/main/Rest-API-Docs.MD)
9797

9898
### Version & Changelogs
99+
100+
**v0.4.0 - 12/08/2022**
101+
102+
1. Added many re-usable general components.
103+
1. Header Component refactored and re-designed.
104+
1. WP-Data setup and made Job Store.
105+
1. Job List Page frontend added.
106+
99107
**v0.3.1 - 11/08/2022**
100108

101109
1. PHPUnit Test cases setup.
@@ -191,3 +199,18 @@ https://github.com/ManiruzzamanAkash/wp-react-kit/releases/tag/vPhpOOP
191199
### Demo With React Router & Menu
192200

193201
![Demo Plugin](https://i.ibb.co/vPp9Mm9/Wp-Scripts-Demo.png "Demo in WordPress plugin")
202+
203+
204+
### Final Demos
205+
206+
**Job List Page**
207+
208+
![Job List Page](https://i.ibb.co/VJBb4Nq/Jobs-List.png "Job List Page")
209+
210+
**Job List Page with Pagination**
211+
212+
![Job List Page with Pagination](https://i.ibb.co/1vr6tXS/Job-Pagination.png "Job List Page with Pagination")
213+
214+
**Job List Page with search**
215+
216+
![Job List Page with Search](https://i.ibb.co/nr3pTXM/Jobs-Search.png "Job List Page with Search")

includes/Assets/Manager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ public function get_styles(): array {
4242
return [
4343
'job-place-custom-css' => [
4444
'src' => JOB_PLACE_BUILD . '/style-index.css',
45-
'version' => filemtime( JOB_PLACE_DIR . '/build/style-index.css' ),
45+
'version' => JOB_PLACE_VERSION,
4646
'deps' => [],
4747
],
4848
'job-place-css' => [
4949
'src' => JOB_PLACE_BUILD . '/index.css',
50-
'version' => filemtime( JOB_PLACE_DIR . '/build/index.css' ),
50+
'version' => JOB_PLACE_VERSION,
5151
'deps' => [ 'job-place-custom-css' ],
5252
],
5353
];

job-place.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class Job_Place {
2828
*
2929
* @var string
3030
*/
31-
const VERSION = '0.3.0';
31+
const VERSION = '0.4.0';
3232

3333
/**
3434
* Plugin slug.

0 commit comments

Comments
 (0)