Skip to content

Latest commit

 

History

History
114 lines (66 loc) · 3.26 KB

README.md

File metadata and controls

114 lines (66 loc) · 3.26 KB

- Devjobs web app

  • DevJobs is a job finding platform for software developers. The platform allows software developers to search for job postings and apply for jobs.

Technologies used in the development of the site

  • HTML5
  • CSS3
  • JavaScript
  • Local Storage

bbc696e6-f3c7-498e-b354-2e27fba52aac

Installation

  1. Clone the repository or download the ZIP file.
  2. Open the project directory.
  3. Open the index.html file in a web browser.

Code Overview

The JavaScript code is structured to facilitate key operations:

1. Job Listings Display (getData)

The getData function is responsible for rendering job listings on the main page (index.html). Each job listing includes essential details such as:

  • Job title
  • Company name
  • Location
  • Work type (Full Time, Part Time, etc.)
  • Time posted

Usage:

Call the getData function and pass an array of job data as an argument. The function will generate HTML content dynamically based on the provided job data and display it on the main page.

Example:

// Assuming 'data' is an array of job objects
getData(data);

The function utilizes HTML templates to dynamically generate the content based on the provided job data.



2. Job Search Functionality (search)

The search function facilitates job searches based on user-specified criteria. Users can search by job title, location, and work type. The search results are then displayed on the main page, providing a streamlined approach to finding relevant job listings.

Usage:

Call the search function with the search term, key, and the array of data as arguments. The function returns an array of filtered job data based on the search criteria.

Example:

// Assuming 'data' is an array of job objects
const searchTerm = 'JavaScript Developer';
const searchKey = 'title';
const searchResults = search(searchTerm, searchKey, data);
console.log(searchResults); // Output: Array of job objects matching the search criteria



3. Current Page Information (getCurrentUrl)

The getCurrentUrl function extracts information about the current page, including the page name and any relevant parameters (e.g., job ID). This function is crucial for determining the context and executing page-specific logic, such as editing or adding job listings.

Usage:

Call the getCurrentUrl function to obtain an object containing information about the current page, such as the page name and ID.

Example:

const pageInformation = getCurrentUrl();
console.log(pageInformation.pageName); // Output: Current page name
console.log(pageInformation.id); // Output: Current job ID (if applicable)

4. Dark Theme Support

The application includes a dark theme feature to enhance user experience. Users can toggle between dark and light themes using the provided switch at the top of the page.


🌎 Live Preview

https://api-exchange.netlify.app/

Contributing

Contributions are welcome! If you find any issues or want to add new features, please submit a pull request.

Author

Ehed Haciyev & DevJobs_Project