summaryrefslogtreecommitdiff
path: root/src/renderer/gameserver/server.ts
blob: d0b4002f993dbe04845dc9c76997e23a2e59d30e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import GameServerProfile from './profile';
import { shell, ipcRenderer } from 'electron';
import { switchPage } from '../CustomEvents';


export default class GameServer {
  constructor(
    public profile:GameServerProfile,
    public menuName:string,
    public name:string,
    public shortDescription:string,// the server in 1-2 sentences
    public newsPageUrl:string,
    public backgrounds:{isVideo:boolean,file:string}[],
    public icon:string,
    public socialLinks:socialLink[]
  ){}

  getMenuEntry():HTMLElement{
    const sidebarItem = document.createElement('div');
    sidebarItem.classList.add("sidebarItem");

    //Title
    const title = document.createElement('div');
    title.classList.add("title");

    const titleIMG = document.createElement('img');
    titleIMG.src = `./media/server/${this.icon}`;

    const titleText = document.createElement('div');
    titleText.innerText = this.menuName;

    title.appendChild(titleIMG);
    title.appendChild(titleText);

    title.addEventListener('click', ()=>{
      switchPage("SERVER",this.name);
    });

    sidebarItem.appendChild(title);
    //Collapsable
    const container = document.createElement('div');
    container.classList.add("colapse");

    const info = document.createElement('div');
    info.innerHTML = '<i class="fas fa-info fa-fw"></i>Information';
    container.appendChild(info);

    info.addEventListener('click', ()=>{
      switchPage("SERVER",this.name);
    });

    const news = document.createElement('div');
    news.innerHTML = '<i class="far fa-newspaper fa-fw"></i>News <i class="fas fa-external-link-alt"  data-fa-transform="shrink-2"></i>';
    if(this.newsPageUrl && this.newsPageUrl!==null){
      news.addEventListener('click', ()=>{
        shell.openExternal(this.newsPageUrl);
      });
    } else {
      news.hidden = true;
    }

    container.appendChild(news);

    const screenshots = document.createElement('div');
    screenshots.innerHTML = '<i class="fas fa-camera fa-fw"></i>Screenshots';
    container.appendChild(screenshots);

    screenshots.addEventListener('click', ()=>{
      switchPage("SERVER", this.name, "SCREENSHOTS");
    });

    const preferences = document.createElement('div');
    preferences.innerHTML = '<i class="fas fa-sliders-h fa-fw"></i>Preferences';
    preferences.addEventListener('click', ()=>{
      switchPage("SERVER",this.name,"PREF");
    });
    container.appendChild(preferences);

    sidebarItem.appendChild(container);
    //event Target / interactivity
    const events = document.createElement('span');
    events.classList.add("switch-page-event");
    events.addEventListener("site-changed", (event:CustomEvent)=>{
      sidebarItem.classList.remove("selected");
      info.classList.remove("selected");
      //news.classList.remove("selected");
      screenshots.classList.remove("selected");
      preferences.classList.remove("selected");
      if(event.detail.sitetype === "SERVER" && event.detail.page === this.name){
        sidebarItem.classList.add("selected");
        // if(event.detail.subPage === "NEWS") {
        //   news.classList.add("selected");
        // } else
         if(event.detail.subPage === "PREF") {
          preferences.classList.add("selected");
        } else if(event.detail.subPage === "SCREENSHOTS") {
          screenshots.classList.add("selected");
        } else {
          info.classList.add("selected");
        }
      }
    });

    sidebarItem.appendChild(events);
    return sidebarItem;
  }

  getPage(type:string):HTMLElement{
    const page = document.createElement('div');
    if (typeof(type) === undefined || type == null){
      page.appendChild(this.getInfoPage());
    } else if (type == "SCREENSHOTS"){
      page.appendChild(this.getScreenshotsPage());
    } else if (type == "PREF"){
      page.appendChild(this.getPreferencesPage());
    } else {
      const content = document.createElement('div');
      content.classList.add("unknownServerPage");
      content.innerText = `Unknown page for${this.name}`;
      page.appendChild(content);
    }
    this.updateLoginTextElement();
    return page;
  }

  private getInfoPage():HTMLElement{
    const content = document.createElement('div');
    content.classList.add("infoServerPage");

    const title = document.createElement('div');
    title.classList.add("title");
    title.innerText = this.name;
    content.appendChild(title);

    const socialContainer = document.createElement('div');
    socialContainer.classList.add("socialContainer");
    setTimeout(()=>{
      this.socialLinks.forEach((link)=>{
        socialContainer.appendChild(link.getHTML());
      });
    }, 5);
    content.appendChild(socialContainer);

    const shrtDsrption = document.createElement('div');
    shrtDsrption.classList.add("shortDescription");
    shrtDsrption.innerText = this.shortDescription;
    content.appendChild(shrtDsrption);

    return content;
  }

  private getPreferencesPage():HTMLElement{
    const content = document.createElement('div');
    content.classList.add("PreferencesPage");

    const title = document.createElement('h2');
    title.innerText = `Preferences for ${this.name}`;
    content.appendChild(title);

    const loginSection = document.createElement('div');
    loginSection.classList.add("LoginSection");
    content.appendChild(loginSection);

    const loginUsername = document.createElement('input') as HTMLInputElement;
    loginUsername.value = localStorage.getItem("2_username_"+this.profile.address);

    const loginPin = document.createElement('input') as HTMLInputElement;
    loginPin.type = "password";
    loginPin.value = localStorage.getItem("2_pin_"+this.profile.address);

    const saveBtn =  document.createElement('button') as HTMLButtonElement;
    saveBtn.innerText = "save";

    saveBtn.addEventListener('click', ()=>{
      localStorage.setItem("2_username_"+this.profile.address, loginUsername.value);
      localStorage.setItem("2_pin_"+this.profile.address, loginPin.value);
      this.updateLoginTextElement();
    });


    loginSection.appendChild(loginUsername);
    loginSection.appendChild(loginPin);
    loginSection.appendChild(saveBtn);

    return content;
  }

  private getScreenshotsPage():HTMLElement{
    const screenshotContainer = document.createElement('div');
    screenshotContainer.classList.add("screenshotsContainer");
    screenshotContainer.id="screenshots";

    ipcRenderer.send('getScreenshots', this.profile.address);

    return screenshotContainer;
  }

  updateLoginTextElement():void{
    const account = localStorage.getItem("2_username_"+this.profile.address);
    const pin = localStorage.getItem("2_pin_"+this.profile.address);
    const element = document.getElementById('LoginText');
    if(account && pin){
      element.innerHTML = `Logged in as <b>${account}</b>`;
    }else{
      element.innerHTML = "Automatic login not set up";
    }
  }

  play(){
    const args:any = JSON.parse(JSON.stringify(this.profile));
    args.username = localStorage.getItem("2_username_"+this.profile.address);
    args.password = localStorage.getItem("2_pin_"+this.profile.address);
    ipcRenderer.send('play', args);
  }
}

export class socialLink {
  constructor(
    public icon:string,// has to be one from font awesome -https://fontawesome.com/icons
    public tooltip:string,
    public url:string
  ){}

  getHTML():HTMLElement{
    //<button onclick="sv.openSocialLink(this)" socialLink="abc"><i class="fa fa-user"></i></button><br>
    const element = document.createElement('button');
    element.onclick = ()=>{this.open()};
    element.innerHTML = `<i class="${this.icon}"></i>`;
    element.title = this.tooltip;
    return element;
  }

  open(){
    console.log("A link was clicked!", this.url);
      if(this.url)
        shell.openExternal(this.url.indexOf("://")!==-1?this.url:`https://${this.url}`);
  }
}

ipcRenderer.on('getScreenshots', (event:any, data:{dir:string, screenshots:string[]}) => {
  console.log(data)
      const screenshots = document.getElementById('screenshots');
      if(screenshots){
        // Display screenshots if that tab is open
        if(data.screenshots.length!==0){
          data.screenshots.forEach((fileName:string)=>{
            const screenshot = document.createElement("div");
            screenshot.classList.add("screenshot");
            screenshots.appendChild(screenshot);
            const img = document.createElement("img");
            img.src = data.dir+fileName;
            screenshot.appendChild(img);

            // const text = document.createElement("span");
            // text.innerText = fileName;
            // screenshot.appendChild(text);
            screenshot.addEventListener('dragstart', (event) => {
              event.preventDefault()
              ipcRenderer.send('dragFileOut', data.dir+fileName)
            })

          });
        } else {
          const nothingHere = document.createElement("p");
          nothingHere.classList.add("nothingHere");
          nothingHere.innerText = "There is nothing here, yet. Make some screenshots in Game and come back here. The default key for snaping screenshots is 'P'."

          screenshots.appendChild(nothingHere);
        }

        const openFolderButton = document.createElement('button');
        openFolderButton.innerText = "Open folder to see all";
        openFolderButton.addEventListener('click', ()=>{
          shell.openItem(data.dir);
        });
        screenshots.appendChild(openFolderButton);
      }
})