swad-core/swad_tab.c

303 lines
11 KiB
C
Raw Normal View History

2015-01-17 20:07:13 +01:00
// swad_tab.c: tabs drawing
/*
SWAD (Shared Workspace At a Distance),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
2019-01-07 21:52:19 +01:00
Copyright (C) 1999-2019 Antonio Ca<EFBFBD>as Vargas
2015-01-17 20:07:13 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
2018-11-09 20:47:39 +01:00
#include "swad_form.h"
2015-01-17 20:07:13 +01:00
#include "swad_global.h"
#include "swad_parameter.h"
#include "swad_tab.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/****************************** Private constants ****************************/
/*****************************************************************************/
const char *Tab_TabIcons[Tab_NUM_TABS] =
{
/* TabUnk */ NULL,
2019-04-01 11:15:38 +02:00
/* TabStr */ "home",
2019-01-09 01:41:54 +01:00
/* TabSys */ "sitemap",
/* TabCty */ "globe",
/* TabIns */ "university",
/* TabCtr */ "building",
/* TabDeg */ "graduation-cap",
/* TabCrs */ "list-ol",
2019-01-10 15:26:33 +01:00
/* TabAss */ "check",
2019-01-09 15:36:02 +01:00
/* TabFil */ "folder-open",
2019-01-10 03:04:30 +01:00
/* TabUsr */ "users",
2019-01-09 01:41:54 +01:00
/* TabMsg */ "envelope",
2019-01-11 10:14:33 +01:00
/* TabAna */ "chart-bar",
2019-01-09 01:41:54 +01:00
/* TabPrf */ "user",
2015-01-17 20:07:13 +01:00
};
/*****************************************************************************/
/******************************* Private types *******************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private variables *****************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
2016-10-12 14:02:56 +02:00
static bool Tab_CheckIfICanViewTab (Tab_Tab_t Tab);
2019-01-09 01:41:54 +01:00
static const char *Tab_GetIcon (Tab_Tab_t Tab);
2015-01-17 20:07:13 +01:00
/*****************************************************************************/
/**************** Draw tabs with the current tab highlighted *****************/
/*****************************************************************************/
2015-11-27 13:45:39 +01:00
void Tab_DrawTabs (void)
2015-01-17 20:07:13 +01:00
{
2015-11-30 01:13:00 +01:00
extern const char *The_ClassTxtTabOn[The_NUM_THEMES];
extern const char *The_ClassTxtTabOff[The_NUM_THEMES];
2015-01-17 20:07:13 +01:00
extern const char *The_TabOnBgColors[The_NUM_THEMES];
extern const char *The_TabOffBgColors[The_NUM_THEMES];
2016-12-28 17:22:25 +01:00
extern const char *Txt_TABS_TXT[Tab_NUM_TABS];
extern const char *Txt_TABS_TXT[Tab_NUM_TABS];
2016-10-12 14:02:56 +02:00
Tab_Tab_t NumTab;
2015-01-17 20:07:13 +01:00
bool ICanViewTab;
2016-12-18 19:50:33 +01:00
const char *ClassHeadRow3[The_NUM_THEMES] =
{
"HEAD_ROW_3_WHITE", // The_THEME_WHITE
"HEAD_ROW_3_GREY", // The_THEME_GREY
2019-02-20 17:18:13 +01:00
"HEAD_ROW_3_PURPLE", // The_THEME_PURPLE
2016-12-18 19:50:33 +01:00
"HEAD_ROW_3_BLUE", // The_THEME_BLUE
"HEAD_ROW_3_YELLOW", // The_THEME_YELLOW
2019-02-20 17:18:13 +01:00
"HEAD_ROW_3_PINK", // The_THEME_PINK
2016-12-18 19:50:33 +01:00
};
/***** Start tabs container *****/
fprintf (Gbl.F.Out,"<div class=\"%s\">"
"<nav id=\"tabs\">"
2016-12-19 00:55:24 +01:00
"<ul class=\"LIST_LEFT\">",
2016-12-18 19:50:33 +01:00
ClassHeadRow3[Gbl.Prefs.Theme]);
2015-01-17 20:07:13 +01:00
/***** Draw the tabs *****/
2016-10-12 14:02:56 +02:00
for (NumTab = (Tab_Tab_t) 1;
NumTab <= (Tab_Tab_t) Tab_NUM_TABS - 1;
2015-01-17 20:07:13 +01:00
NumTab++)
{
ICanViewTab = Tab_CheckIfICanViewTab (NumTab);
/* If current tab is unknown, then activate the first one with access allowed */
2016-01-17 15:10:54 +01:00
if (Gbl.Action.Tab == TabUnk)
2015-01-17 20:07:13 +01:00
{
2016-01-17 15:10:54 +01:00
Gbl.Action.Tab = NumTab;
2015-01-17 20:07:13 +01:00
Tab_DisableIncompatibleTabs ();
}
2016-12-10 16:12:19 +01:00
if (ICanViewTab) // Don't show the first hidden tabs
2015-01-17 20:07:13 +01:00
{
/* Form, icon (at top) and text (at bottom) of the tab */
2015-09-04 19:26:08 +02:00
fprintf (Gbl.F.Out,"<li class=\"%s %s\">",
2016-01-17 15:10:54 +01:00
NumTab == Gbl.Action.Tab ? "TAB_ON" :
2015-01-17 20:07:13 +01:00
"TAB_OFF",
2016-01-17 15:10:54 +01:00
NumTab == Gbl.Action.Tab ? The_TabOnBgColors[Gbl.Prefs.Theme] :
2015-01-17 20:07:13 +01:00
The_TabOffBgColors[Gbl.Prefs.Theme]);
2016-12-10 16:12:19 +01:00
fprintf (Gbl.F.Out,"<div"); // This div must be present even in current tab in order to render properly the tab
if (NumTab != Gbl.Action.Tab)
fprintf (Gbl.F.Out," class=\"ICO_HIGHLIGHT\"");
fprintf (Gbl.F.Out,">");
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActMnu);
2016-12-10 16:12:19 +01:00
Par_PutHiddenParamUnsigned ("NxtTab",(unsigned) NumTab);
2018-11-09 20:47:39 +01:00
Frm_LinkFormSubmit (Txt_TABS_TXT[NumTab],
2016-12-10 16:12:19 +01:00
NumTab == Gbl.Action.Tab ? The_ClassTxtTabOn[Gbl.Prefs.Theme] :
The_ClassTxtTabOff[Gbl.Prefs.Theme],NULL);
2018-12-27 21:35:49 +01:00
fprintf (Gbl.F.Out,"<img src=\"%s/%s\" alt=\"%s\" title=\"%s\""
2016-12-10 16:12:19 +01:00
" class=\"TAB_ICO\" />"
"<div class=\"TAB_TXT %s\">%s</div>"
"</a>",
2019-01-09 01:41:54 +01:00
Gbl.Prefs.URLIconSet,
Tab_GetIcon (NumTab),
2016-12-28 17:22:25 +01:00
Txt_TABS_TXT[NumTab],
Txt_TABS_TXT[NumTab],
2016-12-10 16:12:19 +01:00
NumTab == Gbl.Action.Tab ? The_ClassTxtTabOn[Gbl.Prefs.Theme] :
The_ClassTxtTabOff[Gbl.Prefs.Theme],
2016-12-28 17:22:25 +01:00
Txt_TABS_TXT[NumTab]);
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2015-01-17 20:07:13 +01:00
fprintf (Gbl.F.Out,"</div>"
"</li>");
}
}
2016-12-18 19:50:33 +01:00
/***** End tabs container *****/
2015-12-01 22:31:01 +01:00
fprintf (Gbl.F.Out,"</ul>"
2016-12-18 19:50:33 +01:00
"</nav>"
"</div>");
2015-01-17 20:07:13 +01:00
}
/*****************************************************************************/
/************************* Check if I can view a tab *************************/
/*****************************************************************************/
2016-10-12 14:02:56 +02:00
static bool Tab_CheckIfICanViewTab (Tab_Tab_t Tab)
2015-01-17 20:07:13 +01:00
{
switch (Tab)
{
case TabUnk:
return false;
case TabSys:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Cty.CtyCod <= 0); // No country selected
2015-01-17 20:07:13 +01:00
case TabCty:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Cty.CtyCod > 0 && // Country selected
Gbl.Hierarchy.Ins.InsCod <= 0); // No institution selected
2015-01-17 20:07:13 +01:00
case TabIns:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Ins.InsCod > 0 && // Institution selected
Gbl.Hierarchy.Ctr.CtrCod <= 0); // No centre selected
2015-01-17 20:07:13 +01:00
case TabCtr:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Ctr.CtrCod > 0 && // Centre selected
Gbl.Hierarchy.Deg.DegCod <= 0); // No degree selected
2015-01-17 20:07:13 +01:00
case TabDeg:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Deg.DegCod > 0 && // Degree selected
2019-04-04 10:45:15 +02:00
Gbl.Hierarchy.Crs.CrsCod <= 0); // No course selected
2015-01-17 20:07:13 +01:00
case TabCrs:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Level == Hie_CRS); // Course selected
2017-04-29 21:32:04 +02:00
case TabAss:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Level == Hie_CRS || // Course selected
2017-10-03 00:09:06 +02:00
Gbl.Usrs.Me.Role.Logged >= Rol_STD); // I belong to course or I am an admin
2017-02-09 10:31:21 +01:00
case TabFil:
2019-04-03 20:57:04 +02:00
return (Gbl.Hierarchy.Ins.InsCod > 0 || // Institution selected
2017-10-03 00:09:06 +02:00
Gbl.Usrs.Me.Logged); // I'm logged
2015-01-17 20:07:13 +01:00
default:
return true;
}
}
2019-01-09 01:41:54 +01:00
/*****************************************************************************/
/********************** Get icon associated to an action *********************/
/*****************************************************************************/
static const char *Tab_GetIcon (Tab_Tab_t NumTab)
{
if (NumTab < (Tab_Tab_t) 1 || NumTab >= Tab_NUM_TABS)
return NULL;
return Ico_GetIcon (Tab_TabIcons[NumTab]);
}
2015-01-17 20:07:13 +01:00
/*****************************************************************************/
/*************** Set current tab depending on current action *****************/
/*****************************************************************************/
void Tab_SetCurrentTab (void)
{
2018-04-24 13:21:53 +02:00
Gbl.Action.Tab = Act_GetTab (Gbl.Action.Act);
2015-01-17 20:07:13 +01:00
/***** Change action and tab if country, institution, centre or degree
are incompatible with the current tab *****/
2016-01-17 15:10:54 +01:00
switch (Gbl.Action.Tab)
2015-01-17 20:07:13 +01:00
{
case TabCty:
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Cty.CtyCod <= 0) // No country selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCty;
2015-01-17 20:07:13 +01:00
break;
case TabIns:
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Ins.InsCod <= 0) // No institution selected
2015-01-17 20:07:13 +01:00
{
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Cty.CtyCod > 0) // Country selected, but no institution selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeIns;
2015-01-17 20:07:13 +01:00
else // No country selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCty;
2015-01-17 20:07:13 +01:00
}
break;
case TabCtr:
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Ctr.CtrCod <= 0) // No centre selected
2015-01-17 20:07:13 +01:00
{
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Ins.InsCod > 0) // Institution selected, but no centre selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCtr;
2019-04-03 20:57:04 +02:00
else if (Gbl.Hierarchy.Cty.CtyCod > 0) // Country selected, but no institution selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeIns;
2015-01-17 20:07:13 +01:00
else // No country selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCty;
2015-01-17 20:07:13 +01:00
}
break;
case TabDeg:
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Deg.DegCod <= 0) // No degree selected
2015-01-17 20:07:13 +01:00
{
2019-04-03 20:57:04 +02:00
if (Gbl.Hierarchy.Ctr.CtrCod > 0) // Centre selected, but no degree selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeDeg;
2019-04-03 20:57:04 +02:00
else if (Gbl.Hierarchy.Ins.InsCod > 0) // Institution selected, but no centre selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCtr;
2019-04-03 20:57:04 +02:00
else if (Gbl.Hierarchy.Cty.CtyCod > 0) // Country selected, but no institution selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeIns;
2015-01-17 20:07:13 +01:00
else // No country selected
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCty;
2015-01-17 20:07:13 +01:00
}
break;
default:
break;
}
2016-10-20 22:58:11 +02:00
2018-04-24 13:21:53 +02:00
Gbl.Action.Tab = Act_GetTab (Act_GetSuperAction (Gbl.Action.Act));
2015-01-17 20:07:13 +01:00
Tab_DisableIncompatibleTabs ();
}
/*****************************************************************************/
/************************** Disable incompatible tabs ************************/
/*****************************************************************************/
void Tab_DisableIncompatibleTabs (void)
{
/***** Set country, institution, centre, degree and course depending on the current tab.
This will disable tabs incompatible with the current one. *****/
2016-01-17 15:10:54 +01:00
switch (Gbl.Action.Tab)
2015-01-17 20:07:13 +01:00
{
case TabSys:
2019-04-03 20:57:04 +02:00
Gbl.Hierarchy.Cty.CtyCod = -1L;
2018-10-04 21:57:25 +02:00
/* falls through */
/* no break */
2015-01-17 20:07:13 +01:00
case TabCty:
2019-04-03 20:57:04 +02:00
Gbl.Hierarchy.Ins.InsCod = -1L;
2018-10-04 21:57:25 +02:00
/* falls through */
/* no break */
2015-01-17 20:07:13 +01:00
case TabIns:
2019-04-03 20:57:04 +02:00
Gbl.Hierarchy.Ctr.CtrCod = -1L;
2018-10-04 21:57:25 +02:00
/* falls through */
/* no break */
2015-01-17 20:07:13 +01:00
case TabCtr:
2019-04-03 20:57:04 +02:00
Gbl.Hierarchy.Deg.DegCod = -1L;
2018-10-04 21:57:25 +02:00
/* falls through */
/* no break */
2015-01-17 20:07:13 +01:00
case TabDeg:
2019-04-04 10:45:15 +02:00
Gbl.Hierarchy.Crs.CrsCod = -1L;
2015-01-17 20:07:13 +01:00
break;
default:
break;
}
}