settings.js 5.27 KB
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
6
7
8
9
/*
███████╗██╗███╗   ██╗ ██████╗ ███████╗██████╗     ██╗    ██╗███████╗ ██████╗ 
██╔════╝██║████╗  ██║██╔════╝ ██╔════╝██╔══██╗    ██║    ██║██╔════╝██╔════╝ 
█████╗  ██║██╔██╗ ██║██║  ███╗█████╗  ██████╔╝    ██║ █╗ ██║█████╗  ██║  ███╗
██╔══╝  ██║██║╚██╗██║██║   ██║██╔══╝  ██╔══██╗    ██║███╗██║██╔══╝  ██║   ██║
██║     ██║██║ ╚████║╚██████╔╝███████╗██║  ██║    ╚███╔███╔╝███████╗╚██████╔╝
╚═╝     ╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚══════╝╚═╝  ╚═╝     ╚══╝╚══╝ ╚══════╝ ╚═════╝ 
*/

Athanasios's avatar
Athanasios committed
10
const BASE_URL = `${window.location.origin}/${window.location.pathname.split('/').filter((e, i)=>{return i>0 & i<4}).join('/')}`;
Athanasios's avatar
Athanasios committed
11
12
13
14
15
16
const ON = true;
const OFF = false;
const EMPTY_LINK = "javascript:undefined";
const DEFAULT = {
  social: {
    twitter: {
Athanasios's avatar
Athanasios committed
17
      icon: `${BASE_URL}/assets/images/twitter.png`,
Athanasios's avatar
Athanasios committed
18
19
20
      profile: "https://twitter.com/InnolabM4"
    },
    facebook: {
Athanasios's avatar
Athanasios committed
21
      icon: `${BASE_URL}/assets/images/facebook.png`,
Athanasios's avatar
Athanasios committed
22
23
24
      profile: "https://www.facebook.com/HfTStuttgart"
    },
    linkedin: {
Athanasios's avatar
Athanasios committed
25
      icon: `${BASE_URL}/assets/images/linkedin.png`,
Athanasios's avatar
Athanasios committed
26
27
28
      profile: "https://www.linkedin.com/school/hochschule-f%C3%BCr-technik-stuttgart-%E2%80%93-university-of-applied-sciences"
    },
    webpage: {
Athanasios's avatar
Athanasios committed
29
      icon: `${BASE_URL}/assets/images/webpage.png`,
Athanasios's avatar
Athanasios committed
30
31
32
      profile: "https://www.hft-stuttgart.de"
    }
  },
Athanasios's avatar
Athanasios committed
33
34
  avatar: `${BASE_URL}/assets/images/avatar.png`
};
Athanasios's avatar
Athanasios committed
35

Athanasios's avatar
Athanasios committed
36
37
38
39
40
41
42
43
44
/*
███████╗███████╗████████╗████████╗██╗███╗   ██╗ ██████╗ ███████╗
██╔════╝██╔════╝╚══██╔══╝╚══██╔══╝██║████╗  ██║██╔════╝ ██╔════╝
███████╗█████╗     ██║      ██║   ██║██╔██╗ ██║██║  ███╗███████╗
╚════██║██╔══╝     ██║      ██║   ██║██║╚██╗██║██║   ██║╚════██║
███████║███████╗   ██║      ██║   ██║██║ ╚████║╚██████╔╝███████║
╚══════╝╚══════╝   ╚═╝      ╚═╝   ╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚══════╝
*/

Athanasios's avatar
Athanasios committed
45
46
47
let settings = {

  switches: [
Athanasios's avatar
Athanasios committed
48
49
50
51
    {
      name: "projectLogo",
      state: ON
    },
Athanasios's avatar
Athanasios committed
52
53
54
55
56
57
58
59
60
61
62
63
64
65
    {
      name: "projectName",
      state: ON
    },
    {
      name: "participants",
      state: ON
    },
    {
      name: "footerLogos",
      state: ON
    }
  ],

Athanasios's avatar
Athanasios committed
66
67
  projectLogo: `${BASE_URL}/assets/logos/M4_LAB_tr.png`,

Athanasios's avatar
Athanasios committed
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  projectName: "M4_LAB Page Demo",

  participants: [
    {
      name: "John Doe",
      avatar: DEFAULT.avatar,
      email: "john.doe@lalaland.com",
      social: [
        {
          agent: "twitter",
          icon: DEFAULT.social.twitter.icon,
          profile: DEFAULT.social.twitter.profile
        },
        {
          agent: "facebook",
          icon: DEFAULT.social.facebook.icon,
          profile: DEFAULT.social.facebook.profile
        },
        {
          agent: "linkedin",
          icon: DEFAULT.social.linkedin.icon,
          profile: DEFAULT.social.linkedin.profile
        },
        {
          agent: "webpage",
          icon: DEFAULT.social.webpage.icon,
          profile: "https://johndoe.com"
        }
      ]
    },
    {
      name: "Charlotte Doe",
Athanasios's avatar
Athanasios committed
100
      avatar: `${BASE_URL}/assets/images/charlotte.jpg`,
Athanasios's avatar
Athanasios committed
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
      email: "charlotte.doe@lalaland.com",
      social: [
        {
          agent: "twitter",
          icon: DEFAULT.social.twitter.icon,
          profile: DEFAULT.social.twitter.profile
        },
        {
          agent: "facebook",
          icon: DEFAULT.social.facebook.icon,
          profile: DEFAULT.social.facebook.profile
        },
        {
          agent: "linkedin",
          icon: DEFAULT.social.linkedin.icon,
          profile: DEFAULT.social.linkedin.profile
        }
      ]
    }
  ],

  footerLogos: [
    {
Athanasios's avatar
Athanasios committed
124
      logo: `${BASE_URL}/assets/logos/Logo_M4_LAB.jpg`,
Athanasios's avatar
Athanasios committed
125
126
127
128
      href: EMPTY_LINK,
      title: "M4_LAB"
    },
    {
Athanasios's avatar
Athanasios committed
129
      logo: `${BASE_URL}/assets/logos/logo1.png`,
Athanasios's avatar
Athanasios committed
130
131
132
133
      href: "http://www.innovative-hochschule.de",
      title: "Innovative Hochschule"
    },
    {
Athanasios's avatar
Athanasios committed
134
      logo: `${BASE_URL}/assets/logos/logo2.png`,
Athanasios's avatar
Athanasios committed
135
136
137
138
      href: "https://www.bmbf.de",
      title: "Bundesministerium für Bildung und Forschung"
    },
    {
Athanasios's avatar
Athanasios committed
139
      logo: `${BASE_URL}/assets/logos/logo3.png`,
Athanasios's avatar
Athanasios committed
140
141
142
143
      href: "https://www.gwk-bonn.de",
      title: "Die Gemeinsame Wissenschaftskonferenz"
    }
  ]
Athanasios's avatar
Athanasios committed
144
};