Skip to content
Snippets Groups Projects
Commit d31414cf authored by Gabriel Copat's avatar Gabriel Copat
Browse files

HTML fixes w/ Rhys Nute & Rhys Evans

parent 0015600d
No related branches found
No related tags found
1 merge request!31Resolve "As a user, I want to see a page of local authorities so that I can easily source contact details for a variety of different local authorities."
Showing
with 61 additions and 425 deletions
......@@ -60,7 +60,6 @@ public class Location {
public boolean isLocationApproved() {
return locationApproved;
}
......
......@@ -12,7 +12,7 @@ public interface LocationRepository {
List<Location> getAllApprovedLocations();
int nametoLocationID(String name);
int nametoLocationID(String name);
// List<Location> getApprovedLocations2(List<Location> list);
......
......@@ -41,16 +41,7 @@ public class LocationRepositoryJDBC implements LocationRepository {
String sql= "SELECT * FROM locations";
return jdbc.query(sql, locationMapper);
}
public LocationRepositoryJDBC() {
JdbcTemplate ajdbc = new JdbcTemplate();
this.jdbc =ajdbc;
setlocationMapper();
}
public LocationRepositoryJDBC(JdbcTemplate jdbc, RowMapper<Location> locationMapper) {
this.jdbc = jdbc;
this.locationMapper = locationMapper;
}
@Override
public List<Location> getAllApprovedLocations(){
......
......@@ -5,8 +5,6 @@ import Team5.SmartTowns.data.LocationRepository;
import Team5.SmartTowns.data.Trail;
import Team5.SmartTowns.data.TrailsRepository;
import Team5.SmartTowns.rewards.RewardsRepository;
import Team5.SmartTowns.users.UserRepository;
import jakarta.validation.constraints.Max;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
......@@ -18,15 +16,12 @@ import org.springframework.web.servlet.ModelAndView;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
@Controller
public class PlacesController {
@Autowired
private PlacesCoordinatesRepository placeRepo;
@Autowired
private LocationRepository locationRepo;
@Autowired
private TrailsRepository trailsRepo;
......@@ -34,12 +29,15 @@ public class PlacesController {
@Autowired
private RewardsRepository rewardsRepository;
@Autowired
private LocationRepository locationRepository;
@GetMapping("/checkpoints")
public ModelAndView getLocationPages(){
ModelAndView modelAndView = new ModelAndView("landmarks/locationPage.html");
List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords();
List<Location> approvedLocations = locationRepo.getAllApprovedLocations();
List<Location> approvedLocations = locationRepository.getAllApprovedLocations();
modelAndView.addObject("location", approvedLocations);
modelAndView.addObject("locationCoords", locCoords);
......@@ -58,7 +56,7 @@ public class PlacesController {
@GetMapping("/checkpoints/{location}")
public ModelAndView getResultBySearchKeyLocation(@PathVariable String location) {
List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords();
List<Location> approvedLocations = locationRepo.getAllApprovedLocations();
List<Location> approvedLocations = locationRepository.getAllApprovedLocations();
int locationID = 999;
for (int i=0;i<approvedLocations.size();i++){
......@@ -84,7 +82,7 @@ public class PlacesController {
public ModelAndView getTrailsPage(){
ModelAndView modelAndView = new ModelAndView("landmarks/trailsPage.html");
List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords();
List<Location> approvedLocations = locationRepo.getAllApprovedLocations();
List<Location> approvedLocations = locationRepository.getAllApprovedLocations();
List<Trail> trailslocations = trailsRepo.getAllTrails();
List<Location> locationCoordsWorkaround = new ArrayList<Location>();
......@@ -103,8 +101,9 @@ public class PlacesController {
@GetMapping("/trails/{trail}")
public ModelAndView getResultBySearchKeyTrails(@PathVariable String trail) {
List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords();
List<Location> approvedLocations = locationRepo.getAllApprovedLocations();
List<Location> approvedLocations = locationRepository.getAllApprovedLocations();
List<Trail> trailslocations = trailsRepo.getAllTrails();
int trailID = 999;// otherwise cases errors e.g. null used. 999 unlikely to be used so safe until then
for (int i=0;i<trailslocations.size();i++){
......@@ -113,9 +112,6 @@ public class PlacesController {
break;}
}
ModelAndView modelAndView= new ModelAndView("fragments/trailsPageFrags :: trailsSection");
System.out.println(locCoords.get(0).getLocationID());
System.out.println(approvedLocations.get(0).getLocationID());
// locations[indexValue.index].getLocationTrailID()==trail.getTrailsId()}
final int trailIDFINAL = trailID;
......
......@@ -18,6 +18,7 @@ public class PlacesCoordinatesRepositoryJDBC implements PlacesCoordinatesReposit
private JdbcTemplate jdbc;
private RowMapper<LocationsCoordinates> locationCoordMapper;
private RowMapper<TownWithTrails> townCoordMapper;
public PlacesCoordinatesRepositoryJDBC(JdbcTemplate aJdbc) {
this.jdbc = aJdbc;
setLocationCoordsMapper();
......@@ -217,369 +218,3 @@ public class PlacesCoordinatesRepositoryJDBC implements PlacesCoordinatesReposit
/// if location id == unapproved location id,-> make sure coords within boundaries, -> approve and append lcoations table and add to coords table.
// List<String> unapprovedLocationTowns = new ArrayList<String>();
// for (int i=1;unapprovedLocations.size()>i;i++ ){
// if (Objects.equals(unapprovedLocations.get(i).getLocationPlace(), town)){
// }
//
////
// // unapproved list
// // if matches name, approve
// // add long/lat coords
// //use to update table
// }
//}
spring.datasource.url=jdbc:mariadb://localhost:3306/
spring.datasource.url=jdbc:mariadb://localhost:3306/towns
spring.datasource.username=root
spring.datasource.password=comsc
......
......@@ -54,10 +54,6 @@ INSERT INTO stickers (packID, stickerID, name, description, rarity) VALUE (3, 1,
INSERT INTO stickers (packID, stickerID, name, description, rarity) VALUE (3, 2, 'Welsh Outline', 'Welsh Heritage', '1');
INSERT INTO stickers (packID, stickerID, name, description, rarity) VALUE (3, 3, 'Welsh Spoon', 'Welsh Heritage', '1');
# delete from stickerprogress;
# insert into stickerprogress (userID, stickerID, hasSticker) value ('1', '1', true);
# insert into stickerprogress (userID, stickerID, hasSticker) value ('1', '3', true);
# insert into stickerprogress (userID, stickerID, hasSticker) value ('2', '2', true);
delete from locationCoordinates;
insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLong) value (2, 51.57623, -3.21910 );
......@@ -73,23 +69,13 @@ insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLon
insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLong) value (20, 51.43547, -3.16789 );
# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 1);
# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 2);
# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 3);
# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 5);
# insert into stickerprogress (userID, packID, stickerID) value (1, 2, 1);
# insert into stickerprogress (userID, packID, stickerID) value (1, 2, 3);
delete from localauthority;
insert into localauthority ( localAuthorityName, address1, address2, city, county, postcode, website) value ( 'Caerphilly County Borough Council', 'Tredomen Park','', 'Ystrad Mynach, Hengoed', '', 'CF82 7PG', 'https://www.caerphilly.gov.uk/main.aspx?lang=en-GB');
insert into localauthority ( localAuthorityName, address1, address2, city, county, postcode, website) value ( 'Risca Town Council', 'Unit B, 75 Tredegar Street', '', 'Risca', '', 'NP11 6BW', 'https://www.riscatowncouncil.org.uk/');
insert into localauthority ( localAuthorityName, address1, address2, city, county, postcode, website) value ( 'Penarth Town Council West House', 'Stanwell Road', '', 'Penarth', '', 'CF64 2YG', 'https://www.penarthtowncouncil.gov.uk/your-council/');
#
delete from townsWithTrails;
insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Caerphilly', '51.57903','-3.22075 ','51.60418','51.55093','-3.25222','-3.17696');
insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Risca','51.61195','-3.09648','51.63039','51.59175','-3.12129','-3.06438');
......
......@@ -28,8 +28,7 @@ create table if not exists trails
city varchar(128)
) engine=InnoDB;
drop table if exists locationCoordinates;
drop table if exists locations;
create table if not exists locations
(
locationID bigint auto_increment primary key,
......@@ -103,7 +102,7 @@ create table if not exists locationCoordinates
)engine=InnoDB;
drop table if exists townsWithTrails;
create table if not exists townsWithTrails
(
townID bigint auto_increment primary key,
......@@ -117,7 +116,7 @@ create table if not exists townsWithTrails
)engine=InnoDB;
drop table if exists localAuthority;
create table if not exists localAuthority
(
localAuthorityID bigint auto_increment primary key,
......@@ -130,7 +129,7 @@ create table if not exists localAuthority
website varchar(250)
) engine=InnoDB;
drop table if exists businesses;
create table if not exists businesses
(
businessID bigint auto_increment primary key,
......
body{
background: rgb(41, 41, 41);
color: wheat;
}
/*body{*/
/* background: rgb(41, 41, 41);*/
/* color: wheat;*/
/*}*/
main {
background-color: rgb(206, 153, 253);
color: black;
......@@ -9,7 +9,7 @@ main {
align-content: center;
text-align: center;
border-radius: 25px;
max-width: 620px;
max-width: 80vw;
margin: 0 auto
}
......
......@@ -157,6 +157,31 @@ and (max-device-width: 640px) {
flex-direction: column;
align-items: center;
justify-content: flex-end;
& ul {
list-style: none;
text-decoration: none;
& li {
display: flex;
align-items: center;
justify-content: center;
padding: 15px;
margin-block: 3px;
background-color: #1f1f1f;
border-radius: 20px;
text-decoration: none;
text-align: center;
& a {
text-decoration: none;
font-weight: 600;
color: white;
font-size: 1.2em;
}
}
}
}
.rightFooter {
......@@ -170,6 +195,7 @@ and (max-device-width: 640px) {
aspect-ratio: 1;
}
}
}
......
......@@ -20,12 +20,6 @@
<input hidden type="submit" value="Sign Out"/>
</form>
</li>
<li class="nav-li li-first">
<a href="/local-authorities" class="nav-links">Local Authorities</a>
</li>
<li class="nav-li li-first">
<a href="/businesses" class="nav-links">Local Businesses</a>
</li>
</ul>
</nav>
</header>
......@@ -42,6 +36,14 @@
</div>
<div class="footer-div centerFooter">
<div class="footerText">
<ul>
<li class="nav-li li-first">
<a href="/local-authorities" class="nav-links">Local Authorities</a>
</li>
<li class="nav-li li-first">
<a href="/businesses" class="nav-links">Local Businesses</a>
</li>
</ul>
<h3>Follow Us</h3>
<a href="https://www.facebook.com/VZTAsmarttowns/" class="icon"><img src="/images/icons/Facebook.png" height="25" width="25" alt="Facebook Logo" class="icon"/></a>
<a href="https://www.twitter.com/VZTAsmarttowns/" class="icon"><img src="/images/icons/Twitter.jpg" height="25" width="25" alt="X (formally Twitter) Logo" class="icon"/></a>
......
......@@ -93,7 +93,7 @@
</div>
</div>
<H3>Checkpoints:</H3>
<!-- With the trial name, we go through locations list to get -->
With the trial name, we go through locations list to get
<div th:each="location:${locations}" >
<div>
<li id="checkpointList">
......
......@@ -4,14 +4,14 @@
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" th:href="@{css/templatingstyle.css}">
<link rel="stylesheet" th:href="@{css/mobile-style.css}">
<link rel="stylesheet" th:href="@{css/locationApprovalFormStyle.css}">
<script src="/scripts/locationApprovalForm.js"></script>
</head>
<body>
<header th:insert="~{/fragments/Templating.html :: header}"></header>
<header th:insert="~{/fragments/banners.html :: header}"></header>
<hr style="height:20px; visibility:hidden;" />
<main>
<H1 id="formHeader">Locations To Be Approved:</H1>
......@@ -67,6 +67,6 @@
<hr style="height:20px; visibility:hidden;" />
</main>
<footer th:insert="~{/fragments/Templating.html :: footer}"></footer>
<footer th:insert="~{/fragments/banners.html :: footer}"></footer>
</body>
</html>
\ No newline at end of file
......@@ -13,7 +13,9 @@
<div class="title-container">
<h1 class="title">Welcome to VZTA Smart Towns!</h1>
<a class="submitLand" href="/landmarkSubmission"> <button> Submit Landmark!</button></a>
<a th:if="${#authentication.getName().equals('Admin')}" class="reviewLand" href="/checkpointApproval"> <button> Review Landmark!</button></a>
<p class="small-text">Choose your town and start tracking your trails!</p>
</div>
<article class="towns-wrapper">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment