2018-03-17 18:26:18 +05:30
import { _ _ , s _ _ } from '../locale' ;
export const MAX _CHILDREN _COUNT = 20 ;
2018-11-20 20:47:30 +05:30
export const ACTIVE _TAB _SUBGROUPS _AND _PROJECTS = 'subgroups_and_projects' ;
export const ACTIVE _TAB _SHARED = 'shared' ;
export const ACTIVE _TAB _ARCHIVED = 'archived' ;
export const GROUPS _LIST _HOLDER _CLASS = '.js-groups-list-holder' ;
export const GROUPS _FILTER _FORM _CLASS = '.js-group-filter-form' ;
2020-04-22 19:07:51 +05:30
export const CONTENT _LIST _CLASS = '.groups-list' ;
2018-11-20 20:47:30 +05:30
2018-03-17 18:26:18 +05:30
export const COMMON _STR = {
FAILURE : _ _ ( 'An error occurred. Please try again.' ) ,
2018-11-20 20:47:30 +05:30
LEAVE _FORBIDDEN : s _ _ (
'GroupsTree|Failed to leave the group. Please make sure you are not the only owner.' ,
) ,
2018-03-17 18:26:18 +05:30
LEAVE _BTN _TITLE : s _ _ ( 'GroupsTree|Leave this group' ) ,
EDIT _BTN _TITLE : s _ _ ( 'GroupsTree|Edit group' ) ,
2018-11-20 20:47:30 +05:30
GROUP _SEARCH _EMPTY : s _ _ ( 'GroupsTree|No groups matched your search' ) ,
GROUP _PROJECT _SEARCH _EMPTY : s _ _ ( 'GroupsTree|No groups or projects matched your search' ) ,
2018-03-17 18:26:18 +05:30
} ;
export const ITEM _TYPE = {
PROJECT : 'project' ,
GROUP : 'group' ,
} ;
export const GROUP _VISIBILITY _TYPE = {
2018-11-20 20:47:30 +05:30
public : _ _ (
'Public - The group and any public projects can be viewed without any authentication.' ,
) ,
internal : _ _ (
2021-01-29 00:20:46 +05:30
'Internal - The group and any internal projects can be viewed by any logged in user except external users.' ,
2018-11-20 20:47:30 +05:30
) ,
2018-03-17 18:26:18 +05:30
private : _ _ ( 'Private - The group and its projects can only be viewed by members.' ) ,
} ;
export const PROJECT _VISIBILITY _TYPE = {
public : _ _ ( 'Public - The project can be accessed without any authentication.' ) ,
2021-01-29 00:20:46 +05:30
internal : _ _ (
'Internal - The project can be accessed by any logged in user except external users.' ,
) ,
2020-04-08 14:13:33 +05:30
private : _ _ (
'Private - Project access must be granted explicitly to each user. If this project is part of a group, access will be granted to members of the group.' ,
) ,
2018-03-17 18:26:18 +05:30
} ;
export const VISIBILITY _TYPE _ICON = {
public : 'earth' ,
internal : 'shield' ,
private : 'lock' ,
} ;