Skip to content
Snippets Groups Projects
getters.js 1.72 KiB
/*
export function someGetter (state) {
}
*/
export function jobTypes(state) {
  return [
    { label: "Full Time", value: "fulltime" },
    { label: "Part Time", value: "part-time" },
    { label: "Internship", value: "internship" },
    { label: "Freelance", value: "freelance" },
    { label: "Contract", value: "contract" }
  ];
}

const Industries = {};

export function jobSectors(state) {
  return [
    { value: "null", label: "Select a sector" },
    { value: "Agriculture", label: "Agriculture" },
    { value: "Architecture", label: "Architecture" },
    { value: "Chemical", label: "Chemical industries" },
    { value: "Commerce", label: "Commerce" },
    { value: "Construction", label: "Construction" },
    { value: "Design", label: "Design" },
    { value: "Education", label: "Education" },
    { value: "Financial", label: "Financial" },
    { value: "Food", label: "Food" },
    { value: "Health", label: "Healthcare" },
    { value: "IT", label: "IT Services" },
    { value: "Manufacturing", label: "Manufacturing" },
    { value: "Mining", label: "Raw materials" },
    { value: "Engineering", label: "Engineering" },
    { value: "Electronics", label: "Electronics" },
    { value: "Media", label: "Electronics" },
    { value: "Oil", label: "Oil and Gas" },
    { value: "Professional", label: "Professional Services" },
    { value: "Public", label: "Public service" },
    { value: "Shipping", label: "Shipping and Logistics" },
    { value: "Software", label: "Software" },
    { value: "Textiles", label: "Textiles and clothing" },
    { value: "Telco", label: "Telecommunications" },
    { value: "Transports", label: "Transports" },
    { value: "Tourism", label: "Tourism" },
    { value: "Utilities", label: "Utilities" }
  ];
}