This project will help interns at MVP Studio to understand how ReactJs, C# Web Api, MongoDb is used in Talent Code Architecture.
Please follow the instructions below to understand how to get started. If you have any questions, please check if it's asked on QuestionHub or raise the question there to get support.
- https://reactjs.org/docs/hello-world.html
- MVP Studio React Training.pdf can be found here ReactExamples.zip can be found here
React coding examples in ReactExamples.zip: *ReactHelloWorld.html: Printing hello world using React *ReactTimeline.css: CSS File for Timeline example *ReactTimeline.html: React components and container example *ReactTimelinePassObject.html: Passing a prop as an attribute and javascript object example *ReactTimelinePassArray.html : Passing an array of javascript objects example
See the coding guidelines and FAQ
Please try not to add styles inside the jsx file. Instead, please add your styles to TalentTheme.css.
Please use ES6, jsx, use state
Limit your use of javascript or jQuery - jQuery is required for AJAX, but very little else.
Use AJAX to get/send data to the controller
Please use plain javascript not typescript
Note : Make sure that you have Visual Studio 2017 installed in your computer. Visual Studio 2015 does not work with ReactJS
- Find the folder that contains webpack.config.js in the solution explorer
- Right click on the folder and select 'Open Folder in File Explorer'
- Open command prompt (windows + R, type cmd) and go to the folder that contains webpack.config.js (E.g: cd C:\Talent\Talent\Talent.WebApp\Scripts\react)
Install npm util packages:
npm install
- Check webpack version (make sure it's 4.5.0):
webpack -version
Check the wiki for more details.
- Get the latest source via Source Control Explorer
- Run webpack:
cd C:\Talent\Talent\App\Talent.App.WebApp\wwwroot\js\react
npm run build
- Launch Talent.WebApp project in Visual Studio. Register an account using your email address and log in.
Check the wiki for more details.
- Web Application:
Talent.WebApp
: All frontend files are located here
- Microservices:
Talent.Services.Identity
: backend functions related to Login/LogoutTalent.Services.Profile
: backend functions related to ProfileTalent.Services.Talent
: backend functions related to Talent Matching, Jobs
- Common coding mistakes using jsx
- Class names: class (html) => className (jsx), tabindex (html) => tabIndex (jsx)
- Require closing parent element or fragments: https://reactjs.org/docs/fragments.html
- Jsx Closing tags differ from html tags, you must have a closing tag for images and inputs:
<img></img>, <input</input>
- Forgetting to turn on webpack :
npm run build
- Forgetting to clear the cache
Click here for more details.
Click here for more details.
-
Task 1 : Employer profile page
- Add last name to the primary contact details
- Allow users to edit company contact details by clicking on the edit button
- Display the user's full name on primary contact details (for read only display)
-
Task 2 : Manage Job page
- Display jobs as a list of cards
- Bonus/Optional: Update a job, Close a job
-
Submitting tasks
- Please submit tasks the same way you did for Onboarding:
- Upload code to your personal GitHub account
- Deploy a copy to Azure
- Notify your mentor using the industryconnect.io internship portal