ih-portal
Version:
A project for connecting interaction hub services with catalyst-ui components
176 lines (166 loc) • 6.11 kB
JavaScript
/* eslint-disable quotes, quote-props */
const activityGuideEmpty = {
'data': {
},
};
const activityGuideItem = {
'data': {
'ActivityGuides': {
'Name': 'UC Financial Agreement2',
'DueDate': '2016-08-22',
'Description': 'UC Financial Agreement2 10004249 UCINN 2017',
'Owner': 'SSF',
'OwnerDescription': 'Student Financials',
'Url': '#',
},
},
};
const activityGuideArray = {
'data': {
'ActivityGuides': [
{
'Name': 'UC Financial Agreement',
'DueDate': '2016-08-22',
'Description': 'UC Financial Agreement2 10004249 UCINN 2017',
'Owner': 'SSF',
'OwnerDescription': 'Student Financials',
'Url': '#',
},
{
'Name': 'UC Financial Agreement2',
'DueDate': '2016-08-22',
'Description': 'UC Financial Agreement2 10004249 UCINN 2017',
'Owner': 'SSF',
'OwnerDescription': 'Student Financials',
'Url': '#',
},
],
},
};
const checklistEmpty = {
'data': {
},
};
const checklistItem = {
'data': {
'items': {
'emplid': '100000021',
'seq3c': '4',
'checklistSeq': '100',
'chklstItemCd': 'KRTEST',
'itemStatus': 'R',
'itemStatusLovdescr': 'Received',
'checklistCdDescr': 'A general thing',
'information': 'Confirm your study choices in the system by: <br/><br/>1. Logging onto the Self Service portal of the University system and enrolling (if you are unable to do this, contact Student Administration for assistance<br/>2. Complete the government funding form and submit it on line <br/>3. Complete the student survey form and submit it. You are now ready to study!',
'dueDt': '2015-09-02',
'adminFunction': 'GEN',
'adminFunctionDescr': 'General',
'institution': 'UCINN',
'institutionDescr': 'UniversityofCincinnati',
'responsibleId': '',
'emailAddr': '',
'letDataSeq': '0',
'assocId': '',
'name': '',
'responsibleName': 'Smith, John',
},
},
};
const checklistArray = {
'data': {
'items': [
{
'emplid': '100000021',
'seq3c': '4',
'checklistSeq': '100',
'chklstItemCd': 'KRTEST',
'itemStatus': 'R',
'itemStatusLovdescr': 'Received',
'checklistCdDescr': 'A general thing',
'information': 'Confirm your study choices in the system by: <br/><br/>1. Logging onto the Self Service portal of the University system and enrolling (if you are unable to do this, contact Student Administration for assistance<br/>2. Complete the government funding form and submit it on line <br/>3. Complete the student survey form and submit it. You are now ready to study!',
'dueDt': '2015-09-02',
'adminFunction': 'GEN',
'adminFunctionDescr': 'General',
'institution': 'UCINN',
'institutionDescr': 'UniversityofCincinnati',
'responsibleId': '',
'emailAddr': '',
'varDataSeq': '0',
'assocId': '',
'name': '',
'responsibleName': 'Smith, John',
},
{
'emplid': '100000021',
'seq3c': '4',
'checklistSeq': '100',
'chklstItemCd': 'KRTEST',
'itemStatus': 'R',
'itemStatusLovdescr': 'Received',
'checklistCdDescr': 'Something generally related',
'information': 'Ensure you understand the dates by which you must complete enrollment-related activities. You can find this information at ',
'dueDt': '2015-10-02',
'adminFunction': 'GEN',
'adminFunctionDescr': 'General',
'institution': 'UCINN',
'institutionDescr': 'UniversityofCincinnati',
'responsibleId': '',
'emailAddr': '',
'varDataSeq': '0',
'assocId': '',
'name': '',
'responsibleName': 'Jones, Tom',
},
{
'emplid': '100000021',
'seq3c': '3',
'checklistSeq': '100',
'chklstItemCd': 'KRTEST',
'itemStatus': 'I',
'itemStatusLovdescr': 'Initiated',
'checklistCdDescr': 'Student Term - Term related thing',
'information': 'Identify the person who will be your academic adviser and find their contact details as soon as possible as you will need to discuss your academic plans with them and obtain their approval for your program. You can determine who your adviser is by consulting the entry for your program in the Handbook at If you have any trouble, contact Student Administration for assistance.',
'dueDt': '2015-09-01',
'adminFunction': 'TERM',
'adminFunctionDescr': 'Student Term',
'institution': 'UCINN',
'institutionDescr': 'UniversityofCincinnati',
'responsibleId': '',
'emailAddr': '',
'varDataSeq': '0',
'assocId': '',
'name': '',
'responsibleName': 'Stevens, Bill',
},
{
'emplid': '100000021',
'seq3c': '2',
'checklistSeq': '100',
'chklstItemCd': 'BTEST',
'itemStatus': 'I',
'itemStatusLovdescr': 'Initiated',
'checklistCdDescr': 'Financial Thing',
'information': 'Now that you have your academic program resolved, you need to work out you weekly lecture and tutorial timetable. This is entirely your responsibility but your academic adviser had probably provided you with some tips already. Be sure to avoid clashes between commitments and to understand where lectures and tutorials will be located so that you can allow adequate traveling time to reach them.',
'dueDt': '2015-09-22',
'adminFunction': 'FIN',
'adminFunctionDescr': 'Financials',
'institution': 'UCINN',
'institutionDescr': 'UniversityofCincinnati',
'responsibleId': '100000011',
'emailAddr': '',
'varDataSeq': '0',
'assocId': '',
'name': '',
'responsibleName': 'Osmond, Merrill',
},
],
},
};
module.exports = {
activityGuideEmpty,
activityGuideItem,
activityGuideArray,
checklistEmpty,
checklistItem,
checklistArray,
};