The source code for iveytechclub.ca!
- HTML/CSS/JS website with custom rendered React components for dynamic portions.
- Designed for non-technical users to be able to update
events
,team
,alumni
,resources
,company logos
, and thefamily photo
. - If you run into trouble, reach out to someone on the club with web development experience. See technical sections below.
https://www.figma.com/file/xhRnCRDWI4jLFfMv4VIIQ7/Ivey-Tech-Club
Check out the deployed version at https://iveytechclub.ca.
This section contains information on how to update areas of the website that often need maintenance. It is aimed at admins who aren't familiar with Git or web development. Click to expand each page to see information on updating data for that page. Before you begin, it may be helpful to keep this README open in a separate tab.
Home Page
- From the root directory, navigate to pages -> HomePage -> assets.
- Click Add file -> Upload files, at the top right corner of the page.
- Upload the new image you want to display as the family photo. Make sure to note the file name and extension.
- Go back to the root directory by clicking on /iveytechclub.ca in the top left corner.
- Click on index.html in the list of files.
- Click on the pencil icon to edit the file, located in the top right corner of the file viewer.
- Locate line 58 of the file. It should be inside an
<img/>
tag with an id offamily-photo
. The code should look like this:src="pages/HomePage/assets/{__some file here__}"
- Change the file and extension at the end of the
src
entry to the file name and extension you just uploaded. Make sure you preserve the closing double quotes. - Click Commit changes at the bottom of the page.
- Wait for the website to respond to your changes. This may take a few minutes. You should be good to go!
- From the root directory, navigate to pages -> HomePage -> assets -> CompanyLogos.
- Once you see the list of company logo files, click Add file -> Upload files, at the top right corner of the page.
- Once you've added your logo files, click Commit changes at the bottom of the page.
- Go back to the root directory by clicking on /iveytechclub.ca in the top left corner.
- From the root directory, navigate to pages -> HomePage -> companies.json.
- Click on the pencil icon to edit the file, located in the top right corner of the file viewer.
- Following the JSON pattern, add entries to the array containing the name of the company and the exact name of the file and its extension. Make sure the last entry of the array does not have a comma following it.
- Once you've added all entries, click Commit changes at the bottom of the page.
- Wait for the website to respond to your changes. This may take a few minutes. You should be good to go!
Events Page
- From the root directory, navigate to pages -> EventsPage -> assets -> EventBanners.
- Once you see the list of event banner files, click Add file -> Upload files, at the top right corner of the page. Recommend standard FB event banner size ratio,
1200 x 628 pixels (1.91:1 ratio)
. - Once you've added your logo files, click Commit changes at the bottom of the page.
- Go back to the root directory by clicking on /iveytechclub.ca in the top left corner.
- From the root directory, navigate to pages -> EventsPage -> events.json.
- Click on the pencil icon to edit the file, located in the top right corner of the file viewer.
- Following the JSON pattern, add entries to the array containing all the relevant fields, and the exact name of the file and its extension. Make sure the last entry of the array does not have a comma following it. The recommended max length of the
description
field is 85 words, or about 450 characters. The date followsDD-MM-YYYY
convention. TheregisterLink
should be a URL, the button on the event will bring the user to the URL once clicked. - Once you've added all entries, click Commit changes at the bottom of the page.
- Wait for the website to respond to your changes. This may take a few minutes. You should be good to go! The component will automatically sort the events by upcoming and previous sections using the inputted date.
Resources Page
- From the root directory, navigate to pages -> ResourcesPage -> assets -> ResourceImages.
- Once you see the list of resource image files, click Add file -> Upload files, at the top right corner of the page.
- Once you've added your resource image files, click Commit changes at the bottom of the page.
- Go back to the root directory by clicking on /iveytechclub.ca in the top left corner.
- From the root directory, navigate to pages -> ResourcesPage -> resources.json.
- Click on the pencil icon to edit the file, located in the top right corner of the file viewer.
- Following the JSON pattern, add entries to the array containing all the relevant fields, and the exact name of the image and its extension. Make sure the last entry of the array does not have a comma following it. The
link
should be a URL, the clicking the button under that resource will bring the user to the URL. - Once you've added all entries, click Commit changes at the bottom of the page. You can also rearrange entries in the JSON to change the order they appear on the page. Entries are rendered left to write, top to bottom.
- Wait for the website to respond to your changes. This may take a few minutes. You should be good to go!
People (Team/Alumni Pages)
- From the root directory, navigate to pages -> TeamPage -> assets -> TeamPhotos.
- Once you see the list of team member image files, click Add file -> Upload files, at the top right corner of the page. We recommend JPEG files no larger than
100kB
, at a resolution of about700x700px
(square cropped), to optimize loading times. It may help to follow naming conventionfirstname_lastname.xxx
. - Once you've added your image files, click Commit changes at the bottom of the page.
- Go back to the root directory by clicking on /iveytechclub.ca in the top left corner.
- From the root directory, navigate to pages -> TeamPage -> team.json.
- Click on the pencil icon to edit the file, located in the top right corner of the file viewer.
- Cut the old JSON array (all the data inside the square brackets
[]
) and paste it somewhere else (we will move it to the alumni page). - Replace the array with new entries containing all the relevant fields, and the exact name of each person's image and its extension. Make sure the last entry of the array does not have a comma following it. The
linkedin
field should be a LinkedIn URL starting withhttps://
. Ensure that what you've added follows proper JSON format. - Once you've added all entries, click Commit changes at the bottom of the page.
- Go back to the root directory by clicking on /iveytechclub.ca in the top left corner.
- From the root directory, navigate to pages -> AlumniPage -> alumni.json.
- Click on the pencil icon to edit the file, located in the top right corner of the file viewer.
- Insert a new JSON object,
{},
at the start of the array (after the[
bracket.). Inside these curly brackets, type a new line"year": "2021-2022",
, corresponding to the outbound team's year. In another new line, type"team":
and then paste in the JSON array you cut earlier with the old team's data. Ensure that all JSON syntax is correct (refer to previous years). - Once you're done, click Commit changes at the bottom of the page.
- Wait for the website to respond to your changes. This may take a few minutes. You should be good to go!
This section contains information on how to run the site on your local machine. You should be familiar with HTML, CSS, JavaScript, NPM, React, and Git.
This site is built using a mix of React, Bootstrap and vanilla HTML/CSS/JS. Pages that feature repetitive components (like the Team page) use React to render HTML dynamically from JSON. This was done to make updating the pages fairly simple. If you have any questions, please reach out to [email protected].
- Clone this repo to your local machine.
- After running
npm install
, you can runlive-server
in the root directory to get a development server running with hot reloading. The navbar links might appear broken, but you have to append.html
manually. Github takes care of this in the production version for us (so we can avoid having the.html
appear in the URL). - You can run
npm run watch-jsx
to run the React compiler, which will listen for changes and build components from thecomponents
folder into thebuild
folder. You only need to do this if you are revising the React components. - Strongly recommend using Prettier or another code formatter to enforce consistency. Especially relevant for this project which has sprawling HTML and JSON sheets. Please keep this documentation updated :)
- Refactor to use Sass or some other tool to make typing CSS less cumbersome. Otherwise, pay attention to CSS specificity patterns to avoid unintended styling.
- Add loading buffer animation. Some pages have a lot of images and it takes longer to load.
- Consider adding calendar to the
events
page?