-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
339 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
const fs = require("fs"); | ||
const path = require("path"); | ||
|
||
const dbConnection = require("./connection.js"); | ||
|
||
|
||
const dbBuild = () => { | ||
const sqlPath = readFileSync(join(__dirname, "build.sql")).toString(); | ||
return dbConnection.query(sql, (err, res) => { | ||
if (err) throw new Error('error build.js'); | ||
else console.log('build sucsess'); | ||
|
||
}); | ||
}; | ||
|
||
|
||
|
||
module.exports = { dbBuild }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
BEGIN; | ||
|
||
DROP TABLE IF EXISTS students, teachers, grades, courses; | ||
|
||
|
||
CREATE TABLE IF NOT EXISTS courses( | ||
course_id SERIAL PRIMARY KEY, | ||
course_title TEXT NOT NULL | ||
|
||
); | ||
|
||
INSERT INTO courses (course_id, course_title) VALUES(1,'Physics'); | ||
INSERT INTO courses (course_id, course_title) VALUES(2,'Maths'); | ||
INSERT INTO courses (course_id, course_title) VALUES(3,'Chemistry'); | ||
INSERT INTO courses (course_id, course_title) VALUES(4,'Arabic'); | ||
INSERT INTO courses (course_id, course_title) VALUES(5,'Biology'); | ||
INSERT INTO courses (course_id, course_title) VALUES(6,'coding'); | ||
INSERT INTO courses (course_id, course_title) VALUES(7,'English'); | ||
|
||
CREATE TABLE IF NOT EXISTS students( | ||
student_id SERIAL PRIMARY KEY, | ||
student_name TEXT NOT NULL , | ||
student_birth INTEGER NOT NULL, | ||
student_sex TEXT NOT NULL, | ||
student_address TEXT NOT NULL , | ||
student_EMAIL VARCHAR(320), | ||
student_img VARCHAR(250) NOT NULL | ||
|
||
); | ||
|
||
INSERT INTO students (student_id , student_name, student_birth, student_sex, student_address, student_EMAIL,student_img) VALUES (1,'Tasnin' , 8/8/1996, 'Female', 'Bethlehem' ,'[email protected]','https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.forbes.com%2Fsites%2Fangelauyeung%2F2019%2F10%2F24%2Fjeff-bezos-is-no-longer-the-richest-person-in-the-world%2F&psig=AOvVaw0aqN38lJLcC_x4z05J8o3B&ust=1582725738852000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCPjl3f3u7OcCFQAAAAAdAAAAABAU'); | ||
INSERT INTO students (student_id, student_name, student_birth, student_sex, student_address, student_EMAIL,student_img) VALUES (2,'Matt' , 25/5/1995, 'Male', 'Bethlehem' ,'[email protected]','https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.pexels.com%2Fsearch%2Fperson%2F&psig=AOvVaw0aqN38lJLcC_x4z05J8o3B&ust=1582725738852000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCPjl3f3u7OcCFQAAAAAdAAAAABAD'); | ||
INSERT INTO students (student_id, student_name, student_birth, student_sex, student_address, student_EMAIL,student_img) VALUES (3,'karmel' , 4/9/1996, 'Female', 'Bethlehem' ,'[email protected]','https://www.google.com/url?sa=i&url=https%3A%2F%2Fengineering.unl.edu%2Fkayla-person%2F&psig=AOvVaw0aqN38lJLcC_x4z05J8o3B&ust=1582725738852000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCPjl3f3u7OcCFQAAAAAdAAAAABAb'); | ||
INSERT INTO students (student_id, student_name, student_birth, student_sex, student_address, student_EMAIL,student_img) VALUES (4,'Harry' , 17/11/1996, 'Male', 'Bethlehem' ,'[email protected]','https://www.google.com/url?sa=i&url=https%3A%2F%2Fp-upload.facebook.com%2Fnasdaily%2Fphotos%2F%3Fref%3Dpage_internal&psig=AOvVaw0aqN38lJLcC_x4z05J8o3B&ust=1582725738852000&source=images&cd=vfe&ved=0CAIQjRxqFwoTCPjl3f3u7OcCFQAAAAAdAAAAABAO'); | ||
|
||
|
||
CREATE TABLE IF NOT EXISTS relation( | ||
relation_id SERIAL PRIMARY KEY, | ||
course_id INT , | ||
FOREIGN KEY course_id REFERENCES courses (course_id) | ||
student_id INT, | ||
FOREIGN KEY student_id REFERENCES students (student_id), | ||
|
||
); | ||
|
||
INSERT INTO relation( course_id , student_id) VALUES (1,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (2,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (3,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (4,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (5,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (6,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (7,1); | ||
INSERT INTO relation( course_id , student_id) VALUES (1,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (2,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (3,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (4,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (5,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (6,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (7,2); | ||
INSERT INTO relation( course_id , student_id) VALUES (1,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (2,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (3,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (4,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (5,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (6,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (7,3); | ||
INSERT INTO relation( course_id , student_id) VALUES (1,4); | ||
INSERT INTO relation( course_id , student_id) VALUES (2,4); | ||
INSERT INTO relation( course_id , student_id) VALUES (3,4); | ||
INSERT INTO relation( course_id , student_id) VALUES (4,4); | ||
INSERT INTO relation( course_id , student_id) VALUES (5,4); | ||
INSERT INTO relation( course_id , student_id) VALUES (6,4); | ||
INSERT INTO relation( course_id , student_id) VALUES (7,4); | ||
|
||
|
||
CREATE TABLE IF NOT EXISTS grades( | ||
grade_id SERIAL PRIMARY KEY, | ||
grade_mark VARCHAR(50) , | ||
course_id INT , | ||
FOREIGN KEY course_id REFERENCES courses (course_id) , | ||
student_id INT, | ||
FOREIGN KEY student_id REFERENCES students (student_id) | ||
); | ||
|
||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(84,1 ,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(90, 2 ,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(94,3 ,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(88,4,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(70,5 ,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(57,6 ,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(50,7,1 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(77,1 ,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(70,2 ,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(87,3 ,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(88,4,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(99,5 ,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(60,6 ,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(90,7,2); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(91,1 ,3 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(80,2 ,3 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(98,3 ,3 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(94,4,3 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(99,5 ,3 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(91,6 ,3 ); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(90,7,3); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(64,1 ,4); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(83,2 ,4); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(57,3 ,4); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(50,4,4); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(90,5 ,4); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(70,6 ,4); | ||
INSERT INTO grades( grade_mark , course_id , student_id) VALUES(88,7,4); | ||
|
||
|
||
|
||
|
||
|
||
CREATE TABLE IF NOT EXISTS teachers( | ||
teacher_id SERIAL PRIMARY KEY, | ||
teacher_address TEXT , | ||
teacher_phone INTEGER | ||
|
||
); | ||
|
||
COMMIT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
require("env2")("./config.env"); | ||
const { Pool } = require("pg"); | ||
const url = ''; | ||
|
||
let connectionString = process.env.DB_URL; | ||
|
||
if (process.env.NODE_ENV === "test") { | ||
connectionString = process.env.TEST_DB_URL; | ||
} | ||
if (!connectionString) { | ||
throw new Error("please set a DB_URL env variable"); | ||
|
||
} | ||
const options = { | ||
connectionString: url, | ||
sll: true | ||
}; | ||
|
||
module.exports = new Pool(options); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
const dbConnection = require("../config/connection") | ||
|
||
// students, teachers, grades, courses | ||
|
||
const sqlStudent = "select * students" | ||
const sqlGrades = "select * grades" | ||
const sqlCourses = "select * courses" | ||
// const sqlStudent = "select * students" | ||
|
||
const getdataStudent = callback => { | ||
dbConnection.query(sqlStudent, (err, res) => { | ||
if (err) console.log(err); | ||
else { | ||
// console.log(rows); | ||
callback(err, res.rows); | ||
} | ||
}); | ||
} | ||
const getdataGrades = callback => { | ||
dbConnection.query(sqlGrades, (err, res) => { | ||
if (err) console.log(err); | ||
else { | ||
// console.log(rows); | ||
callback(err, res.rows); | ||
} | ||
}); | ||
} | ||
const getdataCourses = callback => { | ||
dbConnection.query(sqlCourses, (err, res) => { | ||
if (err) console.log(err); | ||
else { | ||
// console.log(rows); | ||
callback(err, res.rows); | ||
} | ||
}); | ||
} | ||
module.exports = { getdataStudent, getdataGrades, getdataCourses } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const xhr = new XMLHttpRequest(); | ||
const apicall = (method, url, callback) => { | ||
xhr.onreadystatechange = () => { | ||
if (xhr.readyState == 4 && xhr.status == 200) { | ||
let response = xhr.responseText | ||
if (typeof callback === "function") callback(response) | ||
else { console.log("error:", xhr.status, "|", xhr.readyState) } | ||
} | ||
} | ||
xhr.open(method, url) | ||
xhr.send() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="style.css" /> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Anton&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link href="https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> | ||
|
||
<title>Student Managment System</title> | ||
</head> | ||
<body> | ||
</head> | ||
|
||
<body> | ||
<section class="topsection"> | ||
<img src="./imges/school.png" alt="school picture" /> | ||
<h1>Student Managment System</h1> | ||
<img src="./imges/school.png" alt="school picture" /> | ||
<h1>Student Managment System</h1> | ||
</section> | ||
<section class="gradesTable"></section> | ||
|
||
<form class="searchForm" action="page.php"> | ||
<input type="text" placeholder="Your ID Number.." name="search" /> | ||
<button type="submit"> | ||
<i class="fa fa-search" aria-hidden="true"></i> | ||
</button> | ||
</form> | ||
|
||
<section class="gradesTable"> | ||
<table class="gradesTable_std"> | ||
<tr> | ||
<th>Course</th> | ||
<th> | ||
Grades | ||
</th> | ||
</tr> | ||
<tr> | ||
<td> | ||
Math | ||
</td> | ||
<td>80</td> | ||
</tr> | ||
</table> | ||
</section> | ||
|
||
<script src="dom.js"></script> | ||
</body> | ||
</html> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.