Hello every one, In this tutorial, you will learn to create a full stack web application from scratch using Microsoft SQL server for the database, .NET Core Web API for the backend, and React JS for the front end.
We will first start with creating the necessary tables in Microsoft SQL server, then create the Web API project with the required rest API end points. Finally we will use React JS for creating the front end.
- You will learn how to add routing for our app.
- Create bootstrap table with custom sorting and filtering capabilities.
- Add modal pop up windows with drop downs and date pickers.
- We will also learn how to upload an image and store it in the backend server.
Lets first create the database tables required for our app.
We need two tables for our app.
One to store department details and another one to store employee details.
Lets start with department table.
This table will have two fields.
One to store an autogenerated table id, and another one to store the department name.
CREATE TABLE [dbo].[Department]( [DepartmentId] [int] IDENTITY(1,1), [DepartmentName] [nvarchar](500) )
Lets insert some records using insert query.
INSERT into [dbo].[Department] ([DepartmentName]) VALUES ('IT') INSERT into [dbo].[Department] ([DepartmentName]) VALUES ('Support')
Now lets check the data in our table using select query.
select * from [dbo].[Department]
Let us similarly create table to store employee details.
We will be storing employee id, employee name, department to which the employee belongs to, the date of joining and also the uploaded profile picture file name.
CREATE TABLE [dbo].[Employee]( [EmployeeId] [int] IDENTITY(1,1) , [EmployeeName] [nvarchar](500) , [Department] [nvarchar](500) , [DateOfJoining] [datetime] , [PhotoFileName] [nvarchar](500) )
INSERT into [dbo].[Employee] ([EmployeeName], [Department], [DateOfJoining], [PhotoFileName]) VALUES ('Bob', 'IT', '2021-06-17', 'anonymous.png')
Lets create the dot net core web API project.
-> Lets open up visual studio first.
-> Click on create a new project.
-> Choose ASP dot net core Web API .
->Choose appropriate folder.
->We might not need HTTPS for now.
Now lets take a look at some of the important files in the project.
-> All the dependencies and packages needed for our app can be found in the dependencies folder.
-> launchSettings.json file contains the details of how the project should be started.
-> Controllers folders contains controllers in which we write our API methods.
-> We generally keep the configuration details such as database details in appSettings.json.
-> The program.cs contains the Main() program which is the entry point of our app.
-> Also it creates web host which basically helps the app to listen to http requests.
-> The startup class configures all the services needed for our app. Services are basically reusable components that can be used across our app using dependency
Injection. It also contains the configure method which creates our app’s request processing pipeline.
We need to make a couple of changes in startup class.
One is to enable the CORS.
By default, all web API projects come with a security which blocks requests coming from different domains. We are basically writing instructions to disable that security and allow the requests to be served.
We are also making one more change to the serializer class to keep the json serializer as our default.
We might need to install a nuget package to do this.
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json.Serialization; using Microsoft.Extensions.FileProviders; using System.IO; namespace WebApplication1 { public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { //Enable CORS services.AddCors(c => { c.AddPolicy("AllowOrigin", options => options.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); }); //JSON Serializer services.AddControllersWithViews().AddNewtonsoftJson(options => options.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore) .AddNewtonsoftJson(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver()); services.AddControllers(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { //Enable CORS app.UseCors(options => options.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader()); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( Path.Combine(Directory.GetCurrentDirectory(), "Photos")), RequestPath = "/Photos" }); } } }
app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider( Path.Combine(Directory.GetCurrentDirectory(), "Photos")), RequestPath = "/Photos" });
Please also add a folder with name 'Photos'.
To work with SQL server, please also add below nuget package.
Next, add the models.
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebApplication1.Models { public class Department { public int DepartmentId { get; set; } public string DepartmentName { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebApplication1.Models { public class Employee { public int EmployeeId { get; set; } public string EmployeeName {get; set; } public string Department { get; set; } public string DateOfJoining { get; set; } public string PhotoFileName { get; set; } } }
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Data; using System.Data.SqlClient; using Microsoft.Extensions.Configuration; using WebApplication1.Models; namespace WebApplication1.Controllers { [Route("api/[controller]")] [ApiController] public class DepartmentController : ControllerBase { private readonly IConfiguration _configuration; public DepartmentController(IConfiguration configuration) { _configuration = configuration; } [HttpGet] public JsonResult Get() { string query = @" select DepartmentId, DepartmentName from dbo.Department "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using(SqlConnection myCon=new SqlConnection(sqlDataSource)) { myCon.Open(); using(SqlCommand myCommand=new SqlCommand(query, myCon)) { myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult(table); } [HttpPost] public JsonResult Post(Department dep) { string query = @" insert into dbo.Department values (@DepartmentName) "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myCommand.Parameters.AddWithValue("@DepartmentName", dep.DepartmentName); myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult("Added Successfully"); } [HttpPut] public JsonResult Put(Department dep) { string query = @" update dbo.Department set DepartmentName= @DepartmentName where DepartmentId=@DepartmentId "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myCommand.Parameters.AddWithValue("@DepartmentId", dep.DepartmentId); myCommand.Parameters.AddWithValue("@DepartmentName", dep.DepartmentName); myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult("Updated Successfully"); } [HttpDelete("{id}")] public JsonResult Delete(int id) { string query = @" delete from dbo.Department where DepartmentId=@DepartmentId "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myCommand.Parameters.AddWithValue("@DepartmentId", id); myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult("Deleted Successfully"); } } }
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Data; using System.Data.SqlClient; using Microsoft.Extensions.Configuration; using WebApplication1.Models; using Microsoft.AspNetCore.Hosting; using System.IO; namespace WebApplication1.Controllers { [Route("api/[controller]")] [ApiController] public class EmployeeController : ControllerBase { private readonly IConfiguration _configuration; private readonly IWebHostEnvironment _env; public EmployeeController(IConfiguration configuration,IWebHostEnvironment env) { _configuration = configuration; _env = env; } [HttpGet] public JsonResult Get() { string query = @" select EmployeeId, EmployeeName,Department, convert(varchar(10),DateOfJoining,120) as DateOfJoining,PhotoFileName from dbo.Employee "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult(table); } [HttpPost] public JsonResult Post(Employee emp) { string query = @" insert into dbo.Employee (EmployeeName,Department,DateOfJoining,PhotoFileName) values (@EmployeeName,@Department,@DateOfJoining,@PhotoFileName) "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myCommand.Parameters.AddWithValue("@EmployeeName", emp.EmployeeName); myCommand.Parameters.AddWithValue("@Department", emp.Department); myCommand.Parameters.AddWithValue("@DateOfJoining", emp.DateOfJoining); myCommand.Parameters.AddWithValue("@PhotoFileName", emp.PhotoFileName); myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult("Added Successfully"); } [HttpPut] public JsonResult Put(Employee emp) { string query = @" update dbo.Employee set EmployeeName= @EmployeeName, Department=@Department, DateOfJoining=@DateOfJoining, PhotoFileName=@PhotoFileName where EmployeeId=@EmployeeId "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myCommand.Parameters.AddWithValue("@EmployeeId", emp.EmployeeId); myCommand.Parameters.AddWithValue("@EmployeeName", emp.EmployeeName); myCommand.Parameters.AddWithValue("@Department", emp.Department); myCommand.Parameters.AddWithValue("@DateOfJoining", emp.DateOfJoining); myCommand.Parameters.AddWithValue("@PhotoFileName", emp.PhotoFileName); myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult("Updated Successfully"); } [HttpDelete("{id}")] public JsonResult Delete(int id) { string query = @" delete from dbo.Employee where EmployeeId=@EmployeeId "; DataTable table = new DataTable(); string sqlDataSource = _configuration.GetConnectionString("EmployeeAppCon"); SqlDataReader myReader; using (SqlConnection myCon = new SqlConnection(sqlDataSource)) { myCon.Open(); using (SqlCommand myCommand = new SqlCommand(query, myCon)) { myCommand.Parameters.AddWithValue("@EmployeeId", id); myReader = myCommand.ExecuteReader(); table.Load(myReader); myReader.Close(); myCon.Close(); } } return new JsonResult("Deleted Successfully"); } [Route("SaveFile")] [HttpPost] public JsonResult SaveFile() { try { var httpRequest = Request.Form; var postedFile = httpRequest.Files[0]; string filename = postedFile.FileName; var physicalPath = _env.ContentRootPath + "/Photos/" + filename; using(var stream=new FileStream(physicalPath, FileMode.Create)) { postedFile.CopyTo(stream); } return new JsonResult(filename); } catch (Exception) { return new JsonResult("anonymous.png"); } } } }
React JS Front End:
Create react js project with below command:
> npx create-react-app my-app
my-app is the name of our project.
Folder structure of the project:
<!DOCTYPE html> <html lang="en"> <head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <meta charset="utf-8" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="theme-color" content="#000000" /> <meta name="description" content="Web site created using create-react-app" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <!-- manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <!-- Notice the use of %PUBLIC_URL% in the tags above. It will be replaced with the URL of the `public` folder during the build. Only files inside the `public` folder can be referenced from the HTML. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> <title>React App</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> </body> </html>
import React,{Component} from 'react'; export class Home extends Component{ render(){ return( <div> <h3>This is Home page</h3> </div> ) } }
import React,{Component} from 'react'; export class Department extends Component{ render(){ return( <div> <h3>This is Department page</h3> </div> ) } }
import React,{Component} from 'react'; export class Employee extends Component{ render(){ return( <div> <h3>This is Employee page</h3> </div> ) } }
import logo from './logo.svg'; import './App.css'; import {Home} from './Home'; import {Department} from './Department'; import {Employee} from './Employee'; import {BrowserRouter, Route, Switch,NavLink} from 'react-router-dom'; function App() { return ( <BrowserRouter> <div className="App container"> <h3 className="d-flex justify-content-center m-3"> React JS Frontend </h3> <nav className="navbar navbar-expand-sm bg-light navbar-dark"> <ul className="navbar-nav"> <li className="nav-item- m-1"> <NavLink className="btn btn-light btn-outline-primary" to="/home"> Home </NavLink> </li> <li className="nav-item- m-1"> <NavLink className="btn btn-light btn-outline-primary" to="/department"> Department </NavLink> </li> <li className="nav-item- m-1"> <NavLink className="btn btn-light btn-outline-primary" to="/employee"> Employee </NavLink> </li> </ul> </nav> <Switch> <Route path='/home' component={Home}/> <Route path='/department' component={Department}/> <Route path='/employee' component={Employee}/> </Switch> </div> </BrowserRouter> ); } export default App;
import React,{Component} from 'react'; import {variables} from './Variables.js'; export class Department extends Component{ constructor(props){ super(props); this.state={ departments:[], modalTitle:"", DepartmentName:"", DepartmentId:0, DepartmentIdFilter:"", DepartmentNameFilter:"", departmentsWithoutFilter:[] } } FilterFn(){ var DepartmentIdFilter=this.state.DepartmentIdFilter; var DepartmentNameFilter = this.state.DepartmentNameFilter; var filteredData=this.state.departmentsWithoutFilter.filter( function(el){ return el.DepartmentId.toString().toLowerCase().includes( DepartmentIdFilter.toString().trim().toLowerCase() )&& el.DepartmentName.toString().toLowerCase().includes( DepartmentNameFilter.toString().trim().toLowerCase() ) } ); this.setState({departments:filteredData}); } sortResult(prop,asc){ var sortedData=this.state.departmentsWithoutFilter.sort(function(a,b){ if(asc){ return (a[prop]>b[prop])?1:((a[prop]<b[prop])?-1:0); } else{ return (b[prop]>a[prop])?1:((b[prop]<a[prop])?-1:0); } }); this.setState({departments:sortedData}); } changeDepartmentIdFilter = (e)=>{ this.state.DepartmentIdFilter=e.target.value; this.FilterFn(); } changeDepartmentNameFilter = (e)=>{ this.state.DepartmentNameFilter=e.target.value; this.FilterFn(); } refreshList(){ fetch(variables.API_URL+'department') .then(response=>response.json()) .then(data=>{ this.setState({departments:data,departmentsWithoutFilter:data}); }); } componentDidMount(){ this.refreshList(); } changeDepartmentName =(e)=>{ this.setState({DepartmentName:e.target.value}); } addClick(){ this.setState({ modalTitle:"Add Department", DepartmentId:0, DepartmentName:"" }); } editClick(dep){ this.setState({ modalTitle:"Edit Department", DepartmentId:dep.DepartmentId, DepartmentName:dep.DepartmentName }); } createClick(){ fetch(variables.API_URL+'department',{ method:'POST', headers:{ 'Accept':'application/json', 'Content-Type':'application/json' }, body:JSON.stringify({ DepartmentName:this.state.DepartmentName }) }) .then(res=>res.json()) .then((result)=>{ alert(result); this.refreshList(); },(error)=>{ alert('Failed'); }) } updateClick(){ fetch(variables.API_URL+'department',{ method:'PUT', headers:{ 'Accept':'application/json', 'Content-Type':'application/json' }, body:JSON.stringify({ DepartmentId:this.state.DepartmentId, DepartmentName:this.state.DepartmentName }) }) .then(res=>res.json()) .then((result)=>{ alert(result); this.refreshList(); },(error)=>{ alert('Failed'); }) } deleteClick(id){ if(window.confirm('Are you sure?')){ fetch(variables.API_URL+'department/'+id,{ method:'DELETE', headers:{ 'Accept':'application/json', 'Content-Type':'application/json' } }) .then(res=>res.json()) .then((result)=>{ alert(result); this.refreshList(); },(error)=>{ alert('Failed'); }) } } render(){ const { departments, modalTitle, DepartmentId, DepartmentName }=this.state; return( <div> <button type="button" className="btn btn-primary m-2 float-end" data-bs-toggle="modal" data-bs-target="#exampleModal" onClick={()=>this.addClick()}> Add Department </button> <table className="table table-striped"> <thead> <tr> <th> <div className="d-flex flex-row"> <input className="form-control m-2" onChange={this.changeDepartmentIdFilter} placeholder="Filter"/> <button type="button" className="btn btn-light" onClick={()=>this.sortResult('DepartmentId',true)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-arrow-down-square-fill" viewBox="0 0 16 16"> <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5a.5.5 0 0 1 1 0z"/> </svg> </button> <button type="button" className="btn btn-light" onClick={()=>this.sortResult('DepartmentId',false)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-arrow-up-square-fill" viewBox="0 0 16 16"> <path d="M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2zm6.5-4.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 1 0z"/> </svg> </button> </div> DepartmentId </th> <th> <div className="d-flex flex-row"> <input className="form-control m-2" onChange={this.changeDepartmentNameFilter} placeholder="Filter"/> <button type="button" className="btn btn-light" onClick={()=>this.sortResult('DepartmentName',true)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-arrow-down-square-fill" viewBox="0 0 16 16"> <path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5a.5.5 0 0 1 1 0z"/> </svg> </button> <button type="button" className="btn btn-light" onClick={()=>this.sortResult('DepartmentName',false)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-arrow-up-square-fill" viewBox="0 0 16 16"> <path d="M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2zm6.5-4.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 1 0z"/> </svg> </button> </div> DepartmentName </th> <th> Options </th> </tr> </thead> <tbody> {departments.map(dep=> <tr key={dep.DepartmentId}> <td>{dep.DepartmentId}</td> <td>{dep.DepartmentName}</td> <td> <button type="button" className="btn btn-light mr-1" data-bs-toggle="modal" data-bs-target="#exampleModal" onClick={()=>this.editClick(dep)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-pencil-square" viewBox="0 0 16 16"> <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/> <path fillRule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/> </svg> </button> <button type="button" className="btn btn-light mr-1" onClick={()=>this.deleteClick(dep.DepartmentId)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-trash-fill" viewBox="0 0 16 16"> <path d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0z"/> </svg> </button> </td> </tr> )} </tbody> </table> <div className="modal fade" id="exampleModal" tabIndex="-1" aria-hidden="true"> <div className="modal-dialog modal-lg modal-dialog-centered"> <div className="modal-content"> <div className="modal-header"> <h5 className="modal-title">{modalTitle}</h5> <button type="button" className="btn-close" data-bs-dismiss="modal" aria-label="Close" ></button> </div> <div className="modal-body"> <div className="input-group mb-3"> <span className="input-group-text">DepartmentName</span> <input type="text" className="form-control" value={DepartmentName} onChange={this.changeDepartmentName}/> </div> {DepartmentId==0? <button type="button" className="btn btn-primary float-start" onClick={()=>this.createClick()} >Create</button> :null} {DepartmentId!=0? <button type="button" className="btn btn-primary float-start" onClick={()=>this.updateClick()} >Update</button> :null} </div> </div> </div> </div> </div> ) } }
import React,{Component} from 'react'; import {variables} from './Variables.js'; export class Employee extends Component{ constructor(props){ super(props); this.state={ departments:[], employees:[], modalTitle:"", EmployeeId:0, EmployeeName:"", Department:"", DateOfJoining:"", PhotoFileName:"anonymous.png", PhotoPath:variables.PHOTO_URL } } refreshList(){ fetch(variables.API_URL+'employee') .then(response=>response.json()) .then(data=>{ this.setState({employees:data}); }); fetch(variables.API_URL+'department') .then(response=>response.json()) .then(data=>{ this.setState({departments:data}); }); } componentDidMount(){ this.refreshList(); } changeEmployeeName =(e)=>{ this.setState({EmployeeName:e.target.value}); } changeDepartment =(e)=>{ this.setState({Department:e.target.value}); } changeDateOfJoining =(e)=>{ this.setState({DateOfJoining:e.target.value}); } addClick(){ this.setState({ modalTitle:"Add Employee", EmployeeId:0, EmployeeName:"", Department:"", DateOfJoining:"", PhotoFileName:"anonymous.png" }); } editClick(emp){ this.setState({ modalTitle:"Edit Employee", EmployeeId:emp.EmployeeId, EmployeeName:emp.EmployeeName, Department:emp.Department, DateOfJoining:emp.DateOfJoining, PhotoFileName:emp.PhotoFileName }); } createClick(){ fetch(variables.API_URL+'employee',{ method:'POST', headers:{ 'Accept':'application/json', 'Content-Type':'application/json' }, body:JSON.stringify({ EmployeeName:this.state.EmployeeName, Department:this.state.Department, DateOfJoining:this.state.DateOfJoining, PhotoFileName:this.state.PhotoFileName }) }) .then(res=>res.json()) .then((result)=>{ alert(result); this.refreshList(); },(error)=>{ alert('Failed'); }) } updateClick(){ fetch(variables.API_URL+'employee',{ method:'PUT', headers:{ 'Accept':'application/json', 'Content-Type':'application/json' }, body:JSON.stringify({ EmployeeId:this.state.EmployeeId, EmployeeName:this.state.EmployeeName, Department:this.state.Department, DateOfJoining:this.state.DateOfJoining, PhotoFileName:this.state.PhotoFileName }) }) .then(res=>res.json()) .then((result)=>{ alert(result); this.refreshList(); },(error)=>{ alert('Failed'); }) } deleteClick(id){ if(window.confirm('Are you sure?')){ fetch(variables.API_URL+'employee/'+id,{ method:'DELETE', headers:{ 'Accept':'application/json', 'Content-Type':'application/json' } }) .then(res=>res.json()) .then((result)=>{ alert(result); this.refreshList(); },(error)=>{ alert('Failed'); }) } } imageUpload=(e)=>{ e.preventDefault(); const formData=new FormData(); formData.append("file",e.target.files[0],e.target.files[0].name); fetch(variables.API_URL+'employee/savefile',{ method:'POST', body:formData }) .then(res=>res.json()) .then(data=>{ this.setState({PhotoFileName:data}); }) } render(){ const { departments, employees, modalTitle, EmployeeId, EmployeeName, Department, DateOfJoining, PhotoPath, PhotoFileName }=this.state; return( <div> <button type="button" className="btn btn-primary m-2 float-end" data-bs-toggle="modal" data-bs-target="#exampleModal" onClick={()=>this.addClick()}> Add Employee </button> <table className="table table-striped"> <thead> <tr> <th> EmployeeId </th> <th> EmployeeName </th> <th> Department </th> <th> DOJ </th> <th> Options </th> </tr> </thead> <tbody> {employees.map(emp=> <tr key={emp.EmployeeId}> <td>{emp.EmployeeId}</td> <td>{emp.EmployeeName}</td> <td>{emp.Department}</td> <td>{emp.DateOfJoining}</td> <td> <button type="button" className="btn btn-light mr-1" data-bs-toggle="modal" data-bs-target="#exampleModal" onClick={()=>this.editClick(emp)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-pencil-square" viewBox="0 0 16 16"> <path d="M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z"/> <path fillRule="evenodd" d="M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5v11z"/> </svg> </button> <button type="button" className="btn btn-light mr-1" onClick={()=>this.deleteClick(emp.EmployeeId)}> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" className="bi bi-trash-fill" viewBox="0 0 16 16"> <path d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0z"/> </svg> </button> </td> </tr> )} </tbody> </table> <div className="modal fade" id="exampleModal" tabIndex="-1" aria-hidden="true"> <div className="modal-dialog modal-lg modal-dialog-centered"> <div className="modal-content"> <div className="modal-header"> <h5 className="modal-title">{modalTitle}</h5> <button type="button" className="btn-close" data-bs-dismiss="modal" aria-label="Close" ></button> </div> <div className="modal-body"> <div className="d-flex flex-row bd-highlight mb-3"> <div className="p-2 w-50 bd-highlight"> <div className="input-group mb-3"> <span className="input-group-text">Emp Name</span> <input type="text" className="form-control" value={EmployeeName} onChange={this.changeEmployeeName}/> </div> <div className="input-group mb-3"> <span className="input-group-text">Department</span> <select className="form-select" onChange={this.changeDepartment} value={Department}> {departments.map(dep=><option key={dep.DepartmentId}> {dep.DepartmentName} </option>)} </select> </div> <div className="input-group mb-3"> <span className="input-group-text">DOJ</span> <input type="date" className="form-control" value={DateOfJoining} onChange={this.changeDateOfJoining}/> </div> </div> <div className="p-2 w-50 bd-highlight"> <img width="250px" height="250px" src={PhotoPath+PhotoFileName}/> <input className="m-2" type="file" onChange={this.imageUpload}/> </div> </div> {EmployeeId==0? <button type="button" className="btn btn-primary float-start" onClick={()=>this.createClick()} >Create</button> :null} {EmployeeId!=0? <button type="button" className="btn btn-primary float-start" onClick={()=>this.updateClick()} >Update</button> :null} </div> </div> </div> </div> </div> ) } }
Hi there! Thank you for such great content! Very simple example but enough to cover a lot of functionalities.
ReplyDeleteI do have one question. I did everything exactly the same but I keep getting this error: "System.Data.SqlClient.SqlException: 'Must declare the scalar variable "@ListingID".'". Any suggestion on what could go wrong?
Hi Rachel, have you managed to figure out why that is? In case you have not...
DeleteBasically, it is complaining about not getting any value for the sql column 'ListingID'. So you would need to provide that value.
Hi Rachel,
ReplyDeleteI just downloaded the code from above mentioned GitHub link (https://github.com/ArtOfEngineer/ReactJS-NetCoreWebAPI-MSSQL) and created the DB with above said tables.
All working as expected.
DB - MSSQL 2014
VS 2019
Thanks
Hi,
DeleteCan I know how you downloaded it
Great tutorial. Really helpful.
ReplyDeleteGreat Tutorial!. Thank you for this.
ReplyDeleteCould you please let me know if this has to be 2 different deployments 1 for the API & other for the React app on the server. Can we combine both together as in the Single page application.
Profe, excuse me, but when I enter the form it does not let me write in it, can you help me inge?
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteHi Author,
ReplyDeleteThank you so much for the amazing content.
I am very happy because I have completed the full stack developer course because of your help.