123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- /**
- * Copyright 2021, 2024 5 Mode
- *
- * This file is part of StarWorth.
- *
- * StarWorth is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * StarWorth 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with StarWorth. If not, see <https://www.gnu.org/licenses/>.
- *
- * index.js
- *
- * StarWorth JS file for Home
- *
- * @author Daniele Bonini <my25mb@aol.com>
- * @copyrights (c) 2021, 2024, the Open Gallery's contributors
- */
- var bBurgerMenuVisible = false;
- var bSideBarVisible = false;
- $(document).ready(function() {
- $("#Password").on("keydown",function(e){
- key = e.which;
- //alert(key);
- $("#chatHint").val("");
- if (key===13) {
- e.preventDefault();
- frmHC.submit();
- } else {
- $("#Password2").val($(this).val());
- //e.preventDefault();
- }
- });
- $("#Password2").on("keydown",function(e){
- key = e.which;
- //alert(key);
- $("#chatHint").val("");
- if (key===13) {
- e.preventDefault();
- $("#Password").val("");
- frmHC.submit();
- } else {
- //e.preventDefault();
- }
- });
- $("#MessageLine").on("keydown",function(e){
- key = e.which;
- //alert(key);
- if (key===13) {
- //e.preventDefault();
- //sendMessage()
- } else {
- //e.preventDefault();
- }
- });
- });
- $("#burger-menu").on("click",function(){
- if (!bBurgerMenuVisible) {
- $(".friend-header").css("display", "table");
- } else {
- $(".friend-header").css("display", "none");
- }
- bBurgerMenuVisible=!bBurgerMenuVisible;
- });
- function hideBurgerMenu() {
- $(".friend-header").css("display", "none");
- bBurgerMenuVisible=false;
- }
- function showSideBar() {
- if (window.innerWidth>650) {
- if (!bSideBarVisible) {
- $("#content-bar").css("width","100%");
- $("#sidebar").show("slow");
- }
- bSideBarVisible = true;
- }
- }
- function closeSideBar() {
- $("#sidebar").hide();
- $("#content-bar").css("width","100%");
- bSideBarVisible = false;
- }
- $("#call-sidebar").on("mouseover", function() {
- showSideBar();
- });
- function closeSplash() {
- $("#hideSplash").val("1");
- $("#splash").hide();
- }
- function refresh() {
- $("#CommandLine").val("refreshbrd");
- frmHC.submit();
- }
- function delSign(sign) {
- $("#CommandLine").val("del '" + sign + "'");
- frmHC.submit();
- }
- function confSign(sign) {
- $("#CommandLine").val("conf '" + sign + "'");
- frmHC.submit();
- }
- function setStar(sign) {
- $("#CommandLine").val("set '" + sign + "'");
- frmHC.submit();
- }
- function sendSign() {
- var val = "";
- val = $("#date").val().trim();
- if (val=="" || val.length<4) {
- $("#date").addClass("emptyfield");
- return;
- }
- val = $("#desc").val().trim();
- if (val=="" || val.length<4) {
- $("#desc").addClass("emptyfield");
- return;
- }
- $("#CommandLine").val("sign");
- frmHC.submit();
- }
- $("#send").on("click",function() {
- $("#date").removeClass("emptyfield");
- $("#desc").removeClass("emptyfield");
- sendSign();
- });
- function setContentPos() {
- if (window.innerWidth<650) {
- //$(document.body).css("background","#a38873");
- $(document.body).css("background","url('/SW_res/sw_bgm1.jpg') fixed");
- $(document.body).css("background-size","100 100");
- $(document.body).css("background-position","30% 0%");
- $("#call-sidebar").hide();
- $("#ahome").attr("href","/");
- $("#agithub").css("display","none");
- $("#afeedback").css("display","none");
- $("#asupport").css("display","none");
- $("#pwd2").css("display","inline");
- //$("#sidebar").css("display","none");
- $("#burger-menu").css("display","none");
- //$("#content-bar").css("width","100%");
- $("#logo-hl").css("display","none");
- $(".td-data-date").hide();
- $(".td-data-time").hide();
- } else {
- $(document.body).css("background","url('/SW_res/sw_bg1.jpg') fixed");
- $(document.body).css("background-size","cover");
- $(document.body).css("background-position","left top");
- $("#ahome").attr("href","http://starworth.5mode-foss.eu");
- $("#call-sidebar").show();
- $("#agithub").css("display","inline");
- $("#afeedback").css("display","inline");
- $("#asupport").css("display","inline");
- $("#pwd2").css("display","none");
- //$("#sidebar").css("display","inline");
- $("#burger-menu").css("display","none");
- //$("#content-bar").css("width","75%");
- $("#logo-hl").css("display","inline");
- $(".td-data-date").show();
- $(".td-data-time").show();
- }
- //table-event
- if (window.innerWidth<1250) {
- $(".table-event").css("margin-left","2%");
- $(".table-event").css("width","98%");
- $(".table-event").css("min-width","500px");
- } else {
- $(".table-event").css("margin-left","33%");
- $(".table-event").css("width","62%");
- $(".table-event").css("min-width","900px");
- $(".table-event").css("max-width","900px");
- }
-
- hideBurgerMenu();
-
- }
- function setFooterPos2() {
- if (document.getElementById("footerCont")) {
- tollerance = 16;
- $("#footerCont").css("top", parseInt( window.innerHeight - $("#footerCont").height() - tollerance) + "px");
- $("#footer").css("top", parseInt( window.innerHeight - $("#footer").height() - tollerance) + "px");
- }
- }
- function showEncodedPassword() {
- if ($("#Password").val() === "") {
- $("#Password").addClass("emptyfield");
- return;
- }
- if ($("#Salt").val() === "") {
- $("#Salt").addClass("emptyfield");
- return;
- }
- passw = encryptSha2( $("#Password").val() + $("#Salt").val());
- msg = "Please set your hash in the config file with this value:";
- alert(msg + "\n\n" + passw);
- }
- $("input#files").on("change", function(e) {
-
- if (!document.getElementById("files").files) {
- $("#del-attach").css("display", "none");
- } else {
- $("#del-attach").css("display", "inline");
- }
- //frmHC.submit();
- });
- function clearUpload() {
- $("#upload-cont").html("<input id='files' name='files[]' type='file' accept='.gif,.png,.jpg,.jpeg' style='visibility: hidden;' multiple>");
- $("#del-attach").css("display", "none");
- }
- $("#Password").on("keydown", function(e){
- $("#Password").removeClass("emptyfield");
- });
- $("#Salt").on("keydown", function(e){
- $("#Salt").removeClass("emptyfield");
- });
- window.addEventListener("load", function() {
-
- if ($("#frmHC").css("display")==="none") {
- setTimeout("setContentPos()", 5200);
- setTimeout("setFooterPos2()", 500);
- } else {
- setTimeout("setContentPos()", 1000);
- setTimeout("setFooterPos2()", 500);
- }
-
- }, true);
- window.addEventListener("resize", function() {
- if ($("#frmHC").css("display")==="none") {
- setTimeout("setContentPos()", 5200);
- setTimeout("setFooterPos2()", 500);
- } else {
- setTimeout("setContentPos()", 1000);
- setTimeout("setFooterPos2()", 500);
- }
- }, true);
|