\n\n\n\n\n\n","import store from '../store';\n// The query endpoint defined outside the class to make it easy to change if need be.\nconst API = {\n baseWelcome: 'https://softworxsolutions.com/swapi/api/onlineschedule/welcomestart?',\n baseValidate: 'https://softworxsolutions.com/swapi/api/onlineschedule/validate?',\n baseInfo: 'https://softworxsolutions.com/swapi/api/onlineschedule/information?',\n submitappt: 'https://softworxsolutions.com/swapi/api/onlineschedule/createappointment',\n patientAppt: 'https://softworxsolutions.com/swapi/api/onlineschedule/getpatientappointments?',\n};\n\n// Class that will hold all queries to the API\nclass APIQuery {\n // static async welcomeScreen() {\n static async welcomeScreen(clientID) {\n return new Promise((resolve) => {\n const base = API.baseWelcome;\n const client = `clientid=${clientID}`;\n // const client = 'clientid=hoQN3shDOSco7AGYMIH5TIGdqEg=';\n const url = (`${base + client}`);\n // console.log('URL: ', url);\n fetch(url, {\n method: 'GET',\n })\n .then((result) => result.json())\n .then((json) => resolve(json))\n .catch((err) => console.log(err));\n });\n }\n\n // Takes in three values, the client ID, the username, and the password\n static async getValidation(clientID, username, password) {\n // Sets up an async call to the API so that it waits on an answer before moving forward\n return new Promise((resolve) => {\n // Puts all the parts together so that we can receive a reply from the API\n const url = API.baseValidate;\n // Using a native fetch to query the API and setting parameters\n // console.log('Sending Request', clientID);\n fetch(url, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n 'Access-Control-Allow-Origin': '*',\n },\n body: JSON.stringify({\n clientid: clientID,\n Phone: username,\n Pin: password,\n }),\n })\n .then((result) => result.json()) // Getting the result back\n .then((json) => resolve(json)) // putting it in JSON form\n .catch((err) => console.log(err)); // dealing with any errors\n });\n }\n\n static async getAppointmentData() {\n return new Promise((resolve) => {\n const base = API.baseInfo;\n const client = `UserSession=${store.state.sessionID}`;\n const url = (`${base + client}`);\n console.log('Sending Request');\n fetch(url, {\n method: 'GET',\n })\n .then((result) => result.json())\n .then((json) => resolve(json))\n .catch((err) => console.log(err));\n });\n }\n\n static async getPatientAppointments() {\n console.log('Getting Patient Appointments');\n return new Promise((resolve) => {\n const maxCount = 3;\n const base = API.patientAppt;\n const client = `UserSession=${store.state.sessionID}&maxcount=${maxCount}`;\n const url = (`${base + client}`);\n console.log('Sending Request');\n fetch(url, {\n method: 'GET',\n })\n .then((result) => result.json())\n .then((json) => resolve(json))\n .catch((err) => console.log(err));\n });\n }\n\n static async sendInformation(sessionID, officeID, doctorID, serviceID, date, time) {\n return new Promise((resolve) => {\n const base = API.submitappt;\n const datetime = `${date} ${time}`;\n const data = {\n UserSession: sessionID.trim(),\n OfficeID: officeID,\n ProviderId: doctorID,\n ServiceTypeId: serviceID,\n StartDate: datetime,\n };\n fetch(base, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n 'Access-Control-Allow-Origin': '*',\n },\n body: JSON.stringify(\n data,\n ),\n })\n .then((result) => result.json())\n .then((json) => resolve(json))\n .catch((err) => console.log(err));\n });\n }\n}\n\n// Exporting the class so that it can be used throughout the web app\nexport default APIQuery;\n","\n\n \n \n \n \n\n\n\n\n\n","\n \n \n \n \n\n\n\n\n\n","import { render } from \"./BaseButton.vue?vue&type=template&id=817746c4&scoped=true\"\nimport script from \"./BaseButton.vue?vue&type=script&lang=js\"\nexport * from \"./BaseButton.vue?vue&type=script&lang=js\"\n\nimport \"./BaseButton.vue?vue&type=style&index=0&id=817746c4&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-817746c4\"]])\n\nexport default __exports__","import { render } from \"./BaseDialog.vue?vue&type=template&id=1e8a0a3d&scoped=true\"\nimport script from \"./BaseDialog.vue?vue&type=script&lang=js\"\nexport * from \"./BaseDialog.vue?vue&type=script&lang=js\"\n\nimport \"./BaseDialog.vue?vue&type=style&index=0&id=1e8a0a3d&scoped=true&lang=css\"\n\nimport exportComponent from \"../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-1e8a0a3d\"]])\n\nexport default __exports__","import { render } from \"./LoginPage.vue?vue&type=template&id=7a94783e&scoped=true\"\nimport script from \"./LoginPage.vue?vue&type=script&lang=js\"\nexport * from \"./LoginPage.vue?vue&type=script&lang=js\"\n\nimport \"./LoginPage.vue?vue&type=style&index=0&id=7a94783e&lang=scss&scoped=true\"\n\nimport exportComponent from \"../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render],['__scopeId',\"data-v-7a94783e\"]])\n\nexport default __exports__","import { render } from \"./HomeView.vue?vue&type=template&id=3e7410be\"\nimport script from \"./HomeView.vue?vue&type=script&lang=js\"\nexport * from \"./HomeView.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n\n