swad-core/swad_tab.c

306 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.
2020-01-01 14:53:57 +01:00
Copyright (C) 1999-2020 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"
2019-10-23 20:07:56 +02:00
#include "swad_HTML.h"
2015-01-17 20:07:13 +01:00
#include "swad_parameter.h"
#include "swad_tab.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/****************************** Private constants ****************************/
/*****************************************************************************/
/*****************************************************************************/
/******************************* 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;
2019-11-22 01:04:03 +01:00
static const char *ClassHeadRow3[The_NUM_THEMES] =
2016-12-18 19:50:33 +01:00
{
2019-11-22 01:04:03 +01:00
[The_THEME_WHITE ] = "HEAD_ROW_3_WHITE",
[The_THEME_GREY ] = "HEAD_ROW_3_GREY",
[The_THEME_PURPLE] = "HEAD_ROW_3_PURPLE",
[The_THEME_BLUE ] = "HEAD_ROW_3_BLUE",
[The_THEME_YELLOW] = "HEAD_ROW_3_YELLOW",
[The_THEME_PINK ] = "HEAD_ROW_3_PINK",
2016-12-18 19:50:33 +01:00
};
/***** Start tabs container *****/
2019-10-24 00:04:40 +02:00
HTM_DIV_Begin ("class=\"%s\"",ClassHeadRow3[Gbl.Prefs.Theme]);
2019-11-11 00:15:44 +01:00
HTM_Txt ("<nav id=\"tabs\">");
2019-10-26 12:25:27 +02:00
HTM_UL_Begin ("class=\"TAB_LIST\"");
2015-01-17 20:07:13 +01:00
/***** Draw the tabs *****/
2019-12-15 20:02:34 +01: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 */
2019-10-26 22:49:13 +02:00
HTM_LI_Begin ("class=\"%s %s\"",
NumTab == Gbl.Action.Tab ? "TAB_ON" :
"TAB_OFF",
NumTab == Gbl.Action.Tab ? The_TabOnBgColors[Gbl.Prefs.Theme] :
The_TabOffBgColors[Gbl.Prefs.Theme]);
2016-12-10 16:12:19 +01:00
2019-10-26 13:21:02 +02:00
if (NumTab == Gbl.Action.Tab)
HTM_DIV_Begin (NULL); // This div must be present even in current tab in order to render properly the tab
else
2019-11-18 15:48:46 +01:00
HTM_DIV_Begin ("class=\"ICO_HIGHLIGHT\"");
2016-12-10 16:12:19 +01:00
2018-11-09 20:47:39 +01:00
Frm_StartForm (ActMnu);
2019-11-03 13:19:32 +01:00
Par_PutHiddenParamUnsigned (NULL,"NxtTab",(unsigned) NumTab);
2019-11-20 10:17:42 +01:00
HTM_BUTTON_SUBMIT_Begin (Txt_TABS_TXT[NumTab],
2019-11-20 11:04:54 +01:00
NumTab == Gbl.Action.Tab ? "BT_LINK" :
"BT_LINK",
NULL);
2019-10-30 00:42:01 +01:00
HTM_IMG (Gbl.Prefs.URLIconSet,Tab_GetIcon (NumTab),Txt_TABS_TXT[NumTab],
2019-10-30 22:31:03 +01:00
"class=\"TAB_ICO\"");
2019-10-24 00:04:40 +02:00
HTM_DIV_Begin ("class=\"TAB_TXT %s\"",
NumTab == Gbl.Action.Tab ? The_ClassTxtTabOn[Gbl.Prefs.Theme] :
The_ClassTxtTabOff[Gbl.Prefs.Theme]);
2019-11-10 12:36:37 +01:00
HTM_Txt (Txt_TABS_TXT[NumTab]);
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
2019-11-18 15:48:46 +01:00
HTM_BUTTON_End ();
2018-11-09 20:47:39 +01:00
Frm_EndForm ();
2015-01-17 20:07:13 +01:00
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
2019-10-26 22:49:13 +02:00
HTM_LI_End ();
2015-01-17 20:07:13 +01:00
}
}
2016-12-18 19:50:33 +01:00
/***** End tabs container *****/
2019-10-26 02:19:42 +02:00
HTM_UL_End ();
2019-11-11 00:15:44 +01:00
HTM_Txt ("</nav>");
2019-10-23 20:07:56 +02:00
HTM_DIV_End ();
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)
{
2019-11-22 01:04:03 +01:00
static const char *Tab_TabIcons[Tab_NUM_TABS] =
{
[TabUnk] = NULL,
2020-04-16 03:03:07 +02:00
[TabStr] = "house-user",
2019-11-22 01:04:03 +01:00
[TabSys] = "sitemap",
[TabCty] = "globe",
[TabIns] = "university",
[TabCtr] = "building",
[TabDeg] = "graduation-cap",
2020-02-20 00:32:07 +01:00
[TabCrs] = "chalkboard-teacher",
2019-11-22 01:04:03 +01:00
[TabAss] = "check",
[TabFil] = "folder-open",
[TabUsr] = "users",
[TabMsg] = "envelope",
[TabAna] = "chart-bar",
[TabPrf] = "user",
};
2019-12-15 20:02:34 +01:00
if (NumTab < (Tab_Tab_t) 1 ||
NumTab > (Tab_Tab_t) (Tab_NUM_TABS - 1))
2019-01-09 01:41:54 +01:00
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
2020-01-08 23:49:04 +01:00
{
2016-01-17 15:10:54 +01:00
Gbl.Action.Act = ActSeeCty;
2020-01-08 23:49:04 +01:00
Gbl.Action.Tab = Act_GetTab (Gbl.Action.Act);
}
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;
2020-01-08 23:49:04 +01:00
Gbl.Action.Tab = Act_GetTab (Gbl.Action.Act);
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;
2020-01-08 23:49:04 +01:00
Gbl.Action.Tab = Act_GetTab (Gbl.Action.Act);
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;
2020-01-08 23:49:04 +01:00
Gbl.Action.Tab = Act_GetTab (Gbl.Action.Act);
2015-01-17 20:07:13 +01:00
}
break;
default:
break;
}
2016-10-20 22:58:11 +02:00
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;
}
}