From e62dee1c62b434fe722e795da440a4809cbdc09b Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 13 Feb 2023 10:06:14 +0100 Subject: [PATCH 01/31] #9073 create files structure --- .../include/ajax/tips_window.ajax.php | 60 +++++ .../include/class/TipsWindow.class.php | 228 ++++++++++++++++++ .../include/javascript/tipsWindow.js | 42 ++++ .../include/styles/tips_window.css | 71 ++++++ pandora_console/pandoradb.sql | 23 ++ .../views/dashboard/tipsWindow.php | 27 +++ 6 files changed, 451 insertions(+) create mode 100644 pandora_console/include/ajax/tips_window.ajax.php create mode 100644 pandora_console/include/class/TipsWindow.class.php create mode 100644 pandora_console/include/javascript/tipsWindow.js create mode 100644 pandora_console/include/styles/tips_window.css create mode 100644 pandora_console/views/dashboard/tipsWindow.php diff --git a/pandora_console/include/ajax/tips_window.ajax.php b/pandora_console/include/ajax/tips_window.ajax.php new file mode 100644 index 0000000000..cf0694fc50 --- /dev/null +++ b/pandora_console/include/ajax/tips_window.ajax.php @@ -0,0 +1,60 @@ +ajaxMethod($method) === true) { + $actions->{$method}(); + } else { + $actions->error('Unavailable method.'); + } +} else { + $actions->error('Method not found. ['.$method.']'); +} + + +// Stop any execution. +exit; diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php new file mode 100644 index 0000000000..1339abd475 --- /dev/null +++ b/pandora_console/include/class/TipsWindow.class.php @@ -0,0 +1,228 @@ + $msg] + ); + } + + + /** + * Checks if target method is available to be called using AJAX. + * + * @param string $method Target method. + * + * @return boolean True allowed, false not. + */ + public function ajaxMethod($method) + { + global $config; + + // Check access. + check_login(); + + return in_array($method, $this->AJAXMethods); + } + + + /** + * Constructor. + * + * @param boolean $must_run Must run or not. + * @param string $ajax_controller Controller. + * + * @return object + * @throws Exception On error. + */ + public function __construct( + $ajax_controller='include/ajax/tips_window.ajax' + ) { + $this->ajaxController = $ajax_controller; + + return $this; + } + + + /** + * Main method. + * + * @return void + */ + public function run() + { + ui_require_css_file('tips_window'); + ui_require_javascript_file('tipsWindow'); + echo ''; + ?> + + + + + getRandomTip(true); + View::render( + 'dashboard/tipsWindow', + [ + 'title' => $initialTip['title'], + 'text' => $initialTip['text'], + 'url' => $initialTip['url'], + 'files' => $initialTip['files'], + ] + ); + } + + + public function getRandomTip($return=false) + { + $exclude = get_parameter('exclude', ''); + + $sql = 'SELECT id, title, text, url + FROM twelcome_tip'; + + if (empty($exclude) === false && $exclude !== null) { + $exclude = implode(',', json_decode($exclude, true)); + if ($exclude !== '') { + $sql .= sprintf(' WHERE id NOT IN (%s)', $exclude); + } + } + + $sql .= ' ORDER BY RAND()'; + + $tip = db_get_row_sql($sql); + $tip['files'] = $this->getFilesFromTip($tip['id']); + + if ($return) { + if (empty($tip) === false) { + return $tip; + } else { + return false; + } + } else { + if (empty($tip) === false) { + echo json_encode(['success' => true, 'data' => $tip]); + return; + } else { + echo json_encode(['success' => false]); + return; + } + } + } + + + public function getTotalTips() + { + return db_get_sql('SELECT count(*) FROM twelcome_tip'); + } + + + public function getFilesFromTip($idTip) + { + if (empty($idTip) === true) { + return false; + } + + $sql = sprintf('SELECT filename, path FROM twelcome_tip_file WHERE twelcome_tip_file = %s', $idTip); + + return db_get_all_rows_sql($sql); + + } +} \ No newline at end of file diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js new file mode 100644 index 0000000000..b58b5be935 --- /dev/null +++ b/pandora_console/include/javascript/tipsWindow.js @@ -0,0 +1,42 @@ +/* globals $, idTips, totalTips, idTips, url, page */ +$(".carousel").ready(function() { + function render({ title, text, url, files }) { + $("#title_tip").html(title); + $("#text_tip").html(text); + $("#url_tip").attr("href", url); + $(".carousel .images").empty(); + + if (files) { + files.forEach(file => { + $(".carousel .images").append(``); + }); + $(".carousel").removeClass("invisible"); + } else { + $(".carousel").addClass("invisible"); + } + } + + $("#next_tip").on("click", function() { + if (idTips.length >= totalTips) { + idTips = []; + } + $.ajax({ + method: "POST", + url: url, + dataType: "json", + data: { + page: page, + method: "getRandomTip", + exclude: JSON.stringify(idTips) + }, + success: function({ success, data }) { + if (success) { + idTips.push(parseInt(data.id)); + render(data); + } else { + //TODO control error + } + } + }); + }); +}); diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css new file mode 100644 index 0000000000..f9a1f7eec3 --- /dev/null +++ b/pandora_console/include/styles/tips_window.css @@ -0,0 +1,71 @@ +#tips_window { + position: fixed; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.308); + top: 0; + left: 0; + z-index: 2001; +} +.window { + background-color: white; + width: 100%; + border-radius: 5px; +} +.tips_header { + display: flex; + padding: 0px 20px; + justify-content: space-between; +} +.description { + padding: 20px; + text-align: center; +} +.actions { + border-top: 1px solid #0000001a; + text-align: right; + padding: 20px; +} +.carousel { + overflow: hidden; + position: relative; + width: 100%; + max-width: 900px; + height: 400px; +} +.carousel .prev_step { + position: absolute; + top: 50%; + transform: translateY(-50%); + border: 0px; + background: none; + font-size: 50px; + color: white; + cursor: pointer; + left: 0; +} +.carousel .next_step { + position: absolute; + top: 50%; + transform: translateY(-50%); + right: 0; + z-index: 1; + border: 0px; + background: none; + font-size: 50px; + color: white; + cursor: pointer; +} +.carousel .images { + display: inline-block; + position: relative; + width: 100%; + font-size: 0px; +} +.carousel .images img { + width: 100%; +} +.title { + margin: 0; + padding: 0; +} diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 57a1d5e122..dd026d732d 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -4177,3 +4177,26 @@ CREATE TABLE IF NOT EXISTS `tmonitor_filter` ( `ag_custom_fields` TEXT, PRIMARY KEY (`id_filter`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + +CREATE TABLE IF NOT EXISTS `twelcome_tip` ( + `id` INT NOT NULL AUTO_INCREMENT, + `id_lang` INT NULL, + `title` VARCHAR(255) NOT NULL, + `text` TEXT NOT NULL, + `url` VARCHAR(255) NULL, + `enable` TINYINT NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + + +CREATE TABLE IF NOT EXISTS `twelcome_tip_file` ( + `id` INT NOT NULL AUTO_INCREMENT, + `twelcome_tip_file` INT NOT NULL, + `filename` VARCHAR(255) NOT NULL, + `path` VARCHAR(255) NOT NULL, + PRIMARY KEY (`id`), + CONSTRAINT `twelcome_tip_file` + FOREIGN KEY (`twelcome_tip_file`) + REFERENCES `twelcome_tip` (`id`) + ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php new file mode 100644 index 0000000000..8cfdcb5d7f --- /dev/null +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -0,0 +1,27 @@ +
+
+

Ver típs al iniciar

+
+ + +
+

+

+ +

+ +
+
+ +
+
\ No newline at end of file From 6619cf059d07d889280d06ec58a2bc5db5a02367 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 13 Feb 2023 13:26:49 +0100 Subject: [PATCH 02/31] #9073 added design v1 --- .../include/class/TipsWindow.class.php | 37 ++-- .../include/javascript/jquery.bxslider.min.js | 7 + .../include/javascript/tipsWindow.js | 207 +++++++++++++++--- .../include/styles/jquery.bxslider.css | 172 +++++++++++++++ .../include/styles/tips_window.css | 83 ++++++- .../views/dashboard/tipsWindow.php | 43 +++- 6 files changed, 487 insertions(+), 62 deletions(-) create mode 100644 pandora_console/include/javascript/jquery.bxslider.min.js create mode 100644 pandora_console/include/styles/jquery.bxslider.css diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 1339abd475..ac1e4252de 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -127,31 +127,36 @@ class TipsWindow public function run() { ui_require_css_file('tips_window'); + ui_require_css_file('jquery.bxslider'); ui_require_javascript_file('tipsWindow'); - echo ''; + ui_require_javascript_file('jquery.bxslider.min'); + echo '
'; ?> - - + + 1)return this.each(function(){t(this).bxSlider(n)}),this;var s={},o=this,r=t(window).width(),a=t(window).height();if(!t(o).data("bxSlider")){var l=function(){t(o).data("bxSlider")||(s.settings=t.extend({},e,n),s.settings.slideWidth=parseInt(s.settings.slideWidth),s.children=o.children(s.settings.slideSelector),s.children.length1||s.settings.maxSlides>1,s.carousel&&(s.settings.preloadImages="all"),s.minThreshold=s.settings.minSlides*s.settings.slideWidth+(s.settings.minSlides-1)*s.settings.slideMargin,s.maxThreshold=s.settings.maxSlides*s.settings.slideWidth+(s.settings.maxSlides-1)*s.settings.slideMargin,s.working=!1,s.controls={},s.interval=null,s.animProp="vertical"===s.settings.mode?"top":"left",s.usingCSS=s.settings.useCSS&&"fade"!==s.settings.mode&&function(){for(var t=document.createElement("div"),e=["WebkitPerspective","MozPerspective","OPerspective","msPerspective"],i=0;i
'),s.viewport=o.parent(),s.settings.ariaLive&&!s.settings.ticker&&s.viewport.attr("aria-live","polite"),s.loader=t('
'),s.viewport.prepend(s.loader),o.css({width:"horizontal"===s.settings.mode?1e3*s.children.length+215+"%":"auto",position:"relative"}),s.usingCSS&&s.settings.easing?o.css("-"+s.cssPrefix+"-transition-timing-function",s.settings.easing):s.settings.easing||(s.settings.easing="swing"),s.viewport.css({width:"100%",overflow:"hidden",position:"relative"}),s.viewport.parent().css({maxWidth:u()}),s.children.css({float:"horizontal"===s.settings.mode?"left":"none",listStyle:"none",position:"relative"}),s.children.css("width",h()),"horizontal"===s.settings.mode&&s.settings.slideMargin>0&&s.children.css("marginRight",s.settings.slideMargin),"vertical"===s.settings.mode&&s.settings.slideMargin>0&&s.children.css("marginBottom",s.settings.slideMargin),"fade"===s.settings.mode&&(s.children.css({position:"absolute",zIndex:0,display:"none"}),s.children.eq(s.settings.startSlide).css({zIndex:s.settings.slideZIndex,display:"block"})),s.controls.el=t('
'),s.settings.captions&&P(),s.active.last=s.settings.startSlide===f()-1,s.settings.video&&o.fitVids(),("all"===s.settings.preloadImages||s.settings.ticker)&&(e=s.children),s.settings.ticker?s.settings.pager=!1:(s.settings.controls&&C(),s.settings.auto&&s.settings.autoControls&&T(),s.settings.pager&&w(),(s.settings.controls||s.settings.autoControls||s.settings.pager)&&s.viewport.after(s.controls.el)),c(e,g)},c=function(e,i){var n=e.find('img:not([src=""]), iframe').length,s=0;return 0===n?void i():void e.find('img:not([src=""]), iframe').each(function(){t(this).one("load error",function(){++s===n&&i()}).each(function(){this.complete&&t(this).trigger("load")})})},g=function(){if(s.settings.infiniteLoop&&"fade"!==s.settings.mode&&!s.settings.ticker){var e="vertical"===s.settings.mode?s.settings.minSlides:s.settings.maxSlides,i=s.children.slice(0,e).clone(!0).addClass("bx-clone"),n=s.children.slice(-e).clone(!0).addClass("bx-clone");s.settings.ariaHidden&&(i.attr("aria-hidden",!0),n.attr("aria-hidden",!0)),o.append(i).prepend(n)}s.loader.remove(),m(),"vertical"===s.settings.mode&&(s.settings.adaptiveHeight=!0),s.viewport.height(p()),o.redrawSlider(),s.settings.onSliderLoad.call(o,s.active.index),s.initialized=!0,s.settings.responsive&&t(window).bind("resize",Z),s.settings.auto&&s.settings.autoStart&&(f()>1||s.settings.autoSlideForOnePage)&&H(),s.settings.ticker&&W(),s.settings.pager&&I(s.settings.startSlide),s.settings.controls&&D(),s.settings.touchEnabled&&!s.settings.ticker&&N(),s.settings.keyboardEnabled&&!s.settings.ticker&&t(document).keydown(F)},p=function(){var e=0,n=t();if("vertical"===s.settings.mode||s.settings.adaptiveHeight)if(s.carousel){var o=1===s.settings.moveSlides?s.active.index:s.active.index*x();for(n=s.children.eq(o),i=1;i<=s.settings.maxSlides-1;i++)n=o+i>=s.children.length?n.add(s.children.eq(i-1)):n.add(s.children.eq(o+i))}else n=s.children.eq(s.active.index);else n=s.children;return"vertical"===s.settings.mode?(n.each(function(i){e+=t(this).outerHeight()}),s.settings.slideMargin>0&&(e+=s.settings.slideMargin*(s.settings.minSlides-1))):e=Math.max.apply(Math,n.map(function(){return t(this).outerHeight(!1)}).get()),"border-box"===s.viewport.css("box-sizing")?e+=parseFloat(s.viewport.css("padding-top"))+parseFloat(s.viewport.css("padding-bottom"))+parseFloat(s.viewport.css("border-top-width"))+parseFloat(s.viewport.css("border-bottom-width")):"padding-box"===s.viewport.css("box-sizing")&&(e+=parseFloat(s.viewport.css("padding-top"))+parseFloat(s.viewport.css("padding-bottom"))),e},u=function(){var t="100%";return s.settings.slideWidth>0&&(t="horizontal"===s.settings.mode?s.settings.maxSlides*s.settings.slideWidth+(s.settings.maxSlides-1)*s.settings.slideMargin:s.settings.slideWidth),t},h=function(){var t=s.settings.slideWidth,e=s.viewport.width();if(0===s.settings.slideWidth||s.settings.slideWidth>e&&!s.carousel||"vertical"===s.settings.mode)t=e;else if(s.settings.maxSlides>1&&"horizontal"===s.settings.mode){if(e>s.maxThreshold)return t;e0?s.viewport.width()s.maxThreshold?t=s.settings.maxSlides:(e=s.children.first().width()+s.settings.slideMargin,t=Math.floor((s.viewport.width()+s.settings.slideMargin)/e)):"vertical"===s.settings.mode&&(t=s.settings.minSlides),t},f=function(){var t=0,e=0,i=0;if(s.settings.moveSlides>0)if(s.settings.infiniteLoop)t=Math.ceil(s.children.length/x());else for(;e0&&s.settings.moveSlides<=v()?s.settings.moveSlides:v()},m=function(){var t,e,i;s.children.length>s.settings.maxSlides&&s.active.last&&!s.settings.infiniteLoop?"horizontal"===s.settings.mode?(e=s.children.last(),t=e.position(),S(-(t.left-(s.viewport.width()-e.outerWidth())),"reset",0)):"vertical"===s.settings.mode&&(i=s.children.length-s.settings.minSlides,t=s.children.eq(i).position(),S(-t.top,"reset",0)):(t=s.children.eq(s.active.index*x()).position(),s.active.index===f()-1&&(s.active.last=!0),void 0!==t&&("horizontal"===s.settings.mode?S(-t.left,"reset",0):"vertical"===s.settings.mode&&S(-t.top,"reset",0)))},S=function(e,i,n,r){var a,l;s.usingCSS?(l="vertical"===s.settings.mode?"translate3d(0, "+e+"px, 0)":"translate3d("+e+"px, 0, 0)",o.css("-"+s.cssPrefix+"-transition-duration",n/1e3+"s"),"slide"===i?(o.css(s.animProp,l),0!==n?o.bind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd",function(e){t(e.target).is(o)&&(o.unbind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd"),q())}):q()):"reset"===i?o.css(s.animProp,l):"ticker"===i&&(o.css("-"+s.cssPrefix+"-transition-timing-function","linear"),o.css(s.animProp,l),0!==n?o.bind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd",function(e){t(e.target).is(o)&&(o.unbind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd"),S(r.resetValue,"reset",0),L())}):(S(r.resetValue,"reset",0),L()))):(a={},a[s.animProp]=e,"slide"===i?o.animate(a,n,s.settings.easing,function(){q()}):"reset"===i?o.css(s.animProp,e):"ticker"===i&&o.animate(a,n,"linear",function(){S(r.resetValue,"reset",0),L()}))},b=function(){for(var e="",i="",n=f(),o=0;o'+i+"
";s.pagerEl.html(e)},w=function(){s.settings.pagerCustom?s.pagerEl=t(s.settings.pagerCustom):(s.pagerEl=t('
'),s.settings.pagerSelector?t(s.settings.pagerSelector).html(s.pagerEl):s.controls.el.addClass("bx-has-pager").append(s.pagerEl),b()),s.pagerEl.on("click touchend","a",z)},C=function(){s.controls.next=t(''+s.settings.nextText+""),s.controls.prev=t(''+s.settings.prevText+""),s.controls.next.bind("click touchend",E),s.controls.prev.bind("click touchend",k),s.settings.nextSelector&&t(s.settings.nextSelector).append(s.controls.next),s.settings.prevSelector&&t(s.settings.prevSelector).append(s.controls.prev),s.settings.nextSelector||s.settings.prevSelector||(s.controls.directionEl=t('
'),s.controls.directionEl.append(s.controls.prev).append(s.controls.next),s.controls.el.addClass("bx-has-controls-direction").append(s.controls.directionEl))},T=function(){s.controls.start=t('"),s.controls.stop=t('"),s.controls.autoEl=t('
'),s.controls.autoEl.on("click",".bx-start",M),s.controls.autoEl.on("click",".bx-stop",y),s.settings.autoControlsCombine?s.controls.autoEl.append(s.controls.start):s.controls.autoEl.append(s.controls.start).append(s.controls.stop),s.settings.autoControlsSelector?t(s.settings.autoControlsSelector).html(s.controls.autoEl):s.controls.el.addClass("bx-has-controls-auto").append(s.controls.autoEl),A(s.settings.autoStart?"stop":"start")},P=function(){s.children.each(function(e){var i=t(this).find("img:first").attr("title");void 0!==i&&(""+i).length&&t(this).append('
'+i+"
")})},E=function(t){t.preventDefault(),s.controls.el.hasClass("disabled")||(s.settings.auto&&s.settings.stopAutoOnClick&&o.stopAuto(),o.goToNextSlide())},k=function(t){t.preventDefault(),s.controls.el.hasClass("disabled")||(s.settings.auto&&s.settings.stopAutoOnClick&&o.stopAuto(),o.goToPrevSlide())},M=function(t){o.startAuto(),t.preventDefault()},y=function(t){o.stopAuto(),t.preventDefault()},z=function(e){var i,n;e.preventDefault(),s.controls.el.hasClass("disabled")||(s.settings.auto&&s.settings.stopAutoOnClick&&o.stopAuto(),i=t(e.currentTarget),void 0!==i.attr("data-slide-index")&&(n=parseInt(i.attr("data-slide-index")),n!==s.active.index&&o.goToSlide(n)))},I=function(e){var i=s.children.length;return"short"===s.settings.pagerType?(s.settings.maxSlides>1&&(i=Math.ceil(s.children.length/s.settings.maxSlides)),void s.pagerEl.html(e+1+s.settings.pagerShortSeparator+i)):(s.pagerEl.find("a").removeClass("active"),void s.pagerEl.each(function(i,n){t(n).find("a").eq(e).addClass("active")}))},q=function(){if(s.settings.infiniteLoop){var t="";0===s.active.index?t=s.children.eq(0).position():s.active.index===f()-1&&s.carousel?t=s.children.eq((f()-1)*x()).position():s.active.index===s.children.length-1&&(t=s.children.eq(s.children.length-1).position()),t&&("horizontal"===s.settings.mode?S(-t.left,"reset",0):"vertical"===s.settings.mode&&S(-t.top,"reset",0))}s.working=!1,s.settings.onSlideAfter.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index)},A=function(t){s.settings.autoControlsCombine?s.controls.autoEl.html(s.controls[t]):(s.controls.autoEl.find("a").removeClass("active"),s.controls.autoEl.find("a:not(.bx-"+t+")").addClass("active"))},D=function(){1===f()?(s.controls.prev.addClass("disabled"),s.controls.next.addClass("disabled")):!s.settings.infiniteLoop&&s.settings.hideControlOnEnd&&(0===s.active.index?(s.controls.prev.addClass("disabled"),s.controls.next.removeClass("disabled")):s.active.index===f()-1?(s.controls.next.addClass("disabled"),s.controls.prev.removeClass("disabled")):(s.controls.prev.removeClass("disabled"),s.controls.next.removeClass("disabled")))},H=function(){if(s.settings.autoDelay>0){setTimeout(o.startAuto,s.settings.autoDelay)}else o.startAuto(),t(window).focus(function(){o.startAuto()}).blur(function(){o.stopAuto()});s.settings.autoHover&&o.hover(function(){s.interval&&(o.stopAuto(!0),s.autoPaused=!0)},function(){s.autoPaused&&(o.startAuto(!0),s.autoPaused=null)})},W=function(){var e,i,n,r,a,l,d,c,g=0;"next"===s.settings.autoDirection?o.append(s.children.clone().addClass("bx-clone")):(o.prepend(s.children.clone().addClass("bx-clone")),e=s.children.first().position(),g="horizontal"===s.settings.mode?-e.left:-e.top),S(g,"reset",0),s.settings.pager=!1,s.settings.controls=!1,s.settings.autoControls=!1,s.settings.tickerHover&&(s.usingCSS?(r="horizontal"===s.settings.mode?4:5,s.viewport.hover(function(){i=o.css("-"+s.cssPrefix+"-transform"),n=parseFloat(i.split(",")[r]),S(n,"reset",0)},function(){c=0,s.children.each(function(e){c+="horizontal"===s.settings.mode?t(this).outerWidth(!0):t(this).outerHeight(!0)}),a=s.settings.speed/c,l="horizontal"===s.settings.mode?"left":"top",d=a*(c-Math.abs(parseInt(n))),L(d)})):s.viewport.hover(function(){o.stop()},function(){c=0,s.children.each(function(e){c+="horizontal"===s.settings.mode?t(this).outerWidth(!0):t(this).outerHeight(!0)}),a=s.settings.speed/c,l="horizontal"===s.settings.mode?"left":"top",d=a*(c-Math.abs(parseInt(o.css(l)))),L(d)})),L()},L=function(t){var e,i,n,r=t?t:s.settings.speed,a={left:0,top:0},l={left:0,top:0};"next"===s.settings.autoDirection?a=o.find(".bx-clone").first().position():l=s.children.first().position(),e="horizontal"===s.settings.mode?-a.left:-a.top,i="horizontal"===s.settings.mode?-l.left:-l.top,n={resetValue:i},S(e,"ticker",r,n)},O=function(e){var i=t(window),n={top:i.scrollTop(),left:i.scrollLeft()},s=e.offset();return n.right=n.left+i.width(),n.bottom=n.top+i.height(),s.right=s.left+e.outerWidth(),s.bottom=s.top+e.outerHeight(),!(n.rights.right||n.bottoms.bottom)},F=function(t){var e=document.activeElement.tagName.toLowerCase(),i="input|textarea",n=new RegExp(e,["i"]),s=n.exec(i);if(null==s&&O(o)){if(39===t.keyCode)return E(t),!1;if(37===t.keyCode)return k(t),!1}},N=function(){s.touch={start:{x:0,y:0},end:{x:0,y:0}},s.viewport.bind("touchstart MSPointerDown pointerdown",X),s.viewport.on("click",".bxslider a",function(t){s.viewport.hasClass("click-disabled")&&(t.preventDefault(),s.viewport.removeClass("click-disabled"))})},X=function(t){if(s.controls.el.addClass("disabled"),s.working)t.preventDefault(),s.controls.el.removeClass("disabled");else{s.touch.originalPos=o.position();var e=t.originalEvent,i="undefined"!=typeof e.changedTouches?e.changedTouches:[e];s.touch.start.x=i[0].pageX,s.touch.start.y=i[0].pageY,s.viewport.get(0).setPointerCapture&&(s.pointerId=e.pointerId,s.viewport.get(0).setPointerCapture(s.pointerId)),s.viewport.bind("touchmove MSPointerMove pointermove",V),s.viewport.bind("touchend MSPointerUp pointerup",R),s.viewport.bind("MSPointerCancel pointercancel",Y)}},Y=function(t){S(s.touch.originalPos.left,"reset",0),s.controls.el.removeClass("disabled"),s.viewport.unbind("MSPointerCancel pointercancel",Y),s.viewport.unbind("touchmove MSPointerMove pointermove",V),s.viewport.unbind("touchend MSPointerUp pointerup",R),s.viewport.get(0).releasePointerCapture&&s.viewport.get(0).releasePointerCapture(s.pointerId)},V=function(t){var e=t.originalEvent,i="undefined"!=typeof e.changedTouches?e.changedTouches:[e],n=Math.abs(i[0].pageX-s.touch.start.x),o=Math.abs(i[0].pageY-s.touch.start.y),r=0,a=0;3*n>o&&s.settings.preventDefaultSwipeX?t.preventDefault():3*o>n&&s.settings.preventDefaultSwipeY&&t.preventDefault(),"fade"!==s.settings.mode&&s.settings.oneToOneTouch&&("horizontal"===s.settings.mode?(a=i[0].pageX-s.touch.start.x,r=s.touch.originalPos.left+a):(a=i[0].pageY-s.touch.start.y,r=s.touch.originalPos.top+a),S(r,"reset",0))},R=function(t){s.viewport.unbind("touchmove MSPointerMove pointermove",V),s.controls.el.removeClass("disabled");var e=t.originalEvent,i="undefined"!=typeof e.changedTouches?e.changedTouches:[e],n=0,r=0;s.touch.end.x=i[0].pageX,s.touch.end.y=i[0].pageY,"fade"===s.settings.mode?(r=Math.abs(s.touch.start.x-s.touch.end.x),r>=s.settings.swipeThreshold&&(s.touch.start.x>s.touch.end.x?o.goToNextSlide():o.goToPrevSlide(),o.stopAuto())):("horizontal"===s.settings.mode?(r=s.touch.end.x-s.touch.start.x,n=s.touch.originalPos.left):(r=s.touch.end.y-s.touch.start.y,n=s.touch.originalPos.top),!s.settings.infiniteLoop&&(0===s.active.index&&r>0||s.active.last&&r<0)?S(n,"reset",200):Math.abs(r)>=s.settings.swipeThreshold?(r<0?o.goToNextSlide():o.goToPrevSlide(),o.stopAuto()):S(n,"reset",200)),s.viewport.unbind("touchend MSPointerUp pointerup",R),s.viewport.get(0).releasePointerCapture&&s.viewport.get(0).releasePointerCapture(s.pointerId)},Z=function(e){if(s.initialized)if(s.working)window.setTimeout(Z,10);else{var i=t(window).width(),n=t(window).height();r===i&&a===n||(r=i,a=n,o.redrawSlider(),s.settings.onSliderResize.call(o,s.active.index))}},B=function(t){var e=v();s.settings.ariaHidden&&!s.settings.ticker&&(s.children.attr("aria-hidden","true"),s.children.slice(t,t+e).attr("aria-hidden","false"))},U=function(t){return t<0?s.settings.infiniteLoop?f()-1:s.active.index:t>=f()?s.settings.infiniteLoop?0:s.active.index:t};return o.goToSlide=function(e,i){var n,r,a,l,d=!0,c=0,g={left:0,top:0},u=null;if(s.oldIndex=s.active.index,s.active.index=U(e),!s.working&&s.active.index!==s.oldIndex){if(s.working=!0,d=s.settings.onSlideBefore.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index),"undefined"!=typeof d&&!d)return s.active.index=s.oldIndex,void(s.working=!1);"next"===i?s.settings.onSlideNext.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index)||(d=!1):"prev"===i&&(s.settings.onSlidePrev.call(o,s.children.eq(s.active.index),s.oldIndex,s.active.index)||(d=!1)),s.active.last=s.active.index>=f()-1,(s.settings.pager||s.settings.pagerCustom)&&I(s.active.index),s.settings.controls&&D(),"fade"===s.settings.mode?(s.settings.adaptiveHeight&&s.viewport.height()!==p()&&s.viewport.animate({height:p()},s.settings.adaptiveHeightSpeed),s.children.filter(":visible").fadeOut(s.settings.speed).css({zIndex:0}),s.children.eq(s.active.index).css("zIndex",s.settings.slideZIndex+1).fadeIn(s.settings.speed,function(){t(this).css("zIndex",s.settings.slideZIndex),q()})):(s.settings.adaptiveHeight&&s.viewport.height()!==p()&&s.viewport.animate({height:p()},s.settings.adaptiveHeightSpeed),!s.settings.infiniteLoop&&s.carousel&&s.active.last?"horizontal"===s.settings.mode?(u=s.children.eq(s.children.length-1),g=u.position(),c=s.viewport.width()-u.outerWidth()):(n=s.children.length-s.settings.minSlides,g=s.children.eq(n).position()):s.carousel&&s.active.last&&"prev"===i?(r=1===s.settings.moveSlides?s.settings.maxSlides-x():(f()-1)*x()-(s.children.length-s.settings.maxSlides),u=o.children(".bx-clone").eq(r),g=u.position()):"next"===i&&0===s.active.index?(g=o.find("> .bx-clone").eq(s.settings.maxSlides).position(),s.active.last=!1):e>=0&&(l=e*parseInt(x()),g=s.children.eq(l).position()),"undefined"!=typeof g?(a="horizontal"===s.settings.mode?-(g.left-c):-g.top,S(a,"slide",s.settings.speed)):s.working=!1),s.settings.ariaHidden&&B(s.active.index*x())}},o.goToNextSlide=function(){if(s.settings.infiniteLoop||!s.active.last){var t=parseInt(s.active.index)+1;o.goToSlide(t,"next")}},o.goToPrevSlide=function(){if(s.settings.infiniteLoop||0!==s.active.index){var t=parseInt(s.active.index)-1;o.goToSlide(t,"prev")}},o.startAuto=function(t){s.interval||(s.interval=setInterval(function(){"next"===s.settings.autoDirection?o.goToNextSlide():o.goToPrevSlide()},s.settings.pause),s.settings.autoControls&&t!==!0&&A("stop"))},o.stopAuto=function(t){s.interval&&(clearInterval(s.interval),s.interval=null,s.settings.autoControls&&t!==!0&&A("start"))},o.getCurrentSlide=function(){return s.active.index},o.getCurrentSlideElement=function(){return s.children.eq(s.active.index)},o.getSlideElement=function(t){return s.children.eq(t)},o.getSlideCount=function(){return s.children.length},o.isWorking=function(){return s.working},o.redrawSlider=function(){s.children.add(o.find(".bx-clone")).outerWidth(h()),s.viewport.css("height",p()),s.settings.ticker||m(),s.active.last&&(s.active.index=f()-1),s.active.index>=f()&&(s.active.last=!0),s.settings.pager&&!s.settings.pagerCustom&&(b(),I(s.active.index)),s.settings.ariaHidden&&B(s.active.index*x())},o.destroySlider=function(){s.initialized&&(s.initialized=!1,t(".bx-clone",this).remove(),s.children.each(function(){void 0!==t(this).data("origStyle")?t(this).attr("style",t(this).data("origStyle")):t(this).removeAttr("style")}),void 0!==t(this).data("origStyle")?this.attr("style",t(this).data("origStyle")):t(this).removeAttr("style"),t(this).unwrap().unwrap(),s.controls.el&&s.controls.el.remove(),s.controls.next&&s.controls.next.remove(),s.controls.prev&&s.controls.prev.remove(),s.pagerEl&&s.settings.controls&&!s.settings.pagerCustom&&s.pagerEl.remove(),t(".bx-caption",this).remove(),s.controls.autoEl&&s.controls.autoEl.remove(),clearInterval(s.interval),s.settings.responsive&&t(window).unbind("resize",Z),s.settings.keyboardEnabled&&t(document).unbind("keydown",F),t(this).removeData("bxSlider"))},o.reloadSlider=function(e){void 0!==e&&(n=e),o.destroySlider(),l(),t(o).data("bxSlider",this)},l(),t(o).data("bxSlider",this),this}}}(jQuery); \ No newline at end of file diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index b58b5be935..7fce4b0c9b 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -1,42 +1,183 @@ /* globals $, idTips, totalTips, idTips, url, page */ -$(".carousel").ready(function() { - function render({ title, text, url, files }) { - $("#title_tip").html(title); - $("#text_tip").html(text); - $("#url_tip").attr("href", url); - $(".carousel .images").empty(); - - if (files) { - files.forEach(file => { - $(".carousel .images").append(``); - }); - $(".carousel").removeClass("invisible"); - } else { - $(".carousel").addClass("invisible"); - } +$(".carousel .images").ready(function() { + if ($(".carousel .images img").length > 1) { + $(".carousel .images").bxSlider({ controls: true }); } +}); +function render({ title, text, url, files }) { + $("#title_tip").html(title); + $("#text_tip").html(text); + $("#url_tip").attr("href", url); + $(".carousel .images").empty(); - $("#next_tip").on("click", function() { - if (idTips.length >= totalTips) { - idTips = []; + if (files) { + files.forEach(file => { + $(".carousel .images").append(``); + }); + $(".carousel").removeClass("invisible"); + } else { + $(".carousel").addClass("invisible"); + } +} + +function next_tip() { + if (idTips.length >= totalTips) { + idTips = []; + } + $.ajax({ + method: "POST", + url: url, + dataType: "json", + data: { + page: page, + method: "getRandomTip", + exclude: JSON.stringify(idTips) + }, + success: function({ success, data }) { + if (success) { + idTips.push(parseInt(data.id)); + render(data); + } else { + //TODO control error + } } - $.ajax({ - method: "POST", - url: url, - dataType: "json", - data: { - page: page, - method: "getRandomTip", - exclude: JSON.stringify(idTips) - }, - success: function({ success, data }) { - if (success) { - idTips.push(parseInt(data.id)); - render(data); + }); +} + +function load_tips_modal(settings) { + var data = new FormData(); + if (settings.extradata) { + settings.extradata.forEach(function(item) { + if (item.value != undefined) { + if (item.value instanceof Object || item.value instanceof Array) { + data.append(item.name, JSON.stringify(item.value)); } else { - //TODO control error + data.append(item.name, item.value); } } }); + } + data.append("page", settings.onshow.page); + data.append("method", settings.onshow.method); + if (settings.onshow.extradata != undefined) { + data.append("extradata", JSON.stringify(settings.onshow.extradata)); + } + + if (settings.target == undefined) { + var uniq = uniqId(); + var div = document.createElement("div"); + div.id = "div-modal-" + uniq; + div.style.display = "none"; + + if (document.getElementById("main") == null) { + // MC env. + document.getElementById("page").append(div); + } else { + document.getElementById("main").append(div); + } + + var id_modal_target = "#div-modal-" + uniq; + + settings.target = $(id_modal_target); + } + + var width = 630; + if (settings.onshow.width) { + width = settings.onshow.width; + } + + if (settings.modal.overlay == undefined) { + settings.modal.overlay = { + opacity: 0.5, + background: "black" + }; + } + + if (settings.beforeClose == undefined) { + settings.beforeClose = function() {}; + } + + settings.target.html("Loading modal..."); + settings.target + .dialog({ + title: "Loading", + close: false, + width: 200, + buttons: [] + }) + .show(); + + $.ajax({ + method: "post", + url: settings.url, + processData: false, + contentType: false, + data: data, + success: function(data) { + if (settings.onshow.parser) { + data = settings.onshow.parser(data); + } else { + data = (function(d) { + try { + d = JSON.parse(d); + } catch (e) { + // Not JSON + return d; + } + if (d.error) return d.error; + + if (d.result) return d.result; + })(data); + } + settings.target.html(data); + if (settings.onload != undefined) { + settings.onload(data); + } + settings.target.dialog({ + resizable: true, + draggable: true, + modal: true, + header: false, + dialogClass: "dialog_tips", + title: settings.modal.title, + width: width, + minHeight: + settings.onshow.minHeight != undefined + ? settings.onshow.minHeight + : "auto", + maxHeight: + settings.onshow.maxHeight != undefined + ? settings.onshow.maxHeight + : "auto", + overlay: settings.modal.overlay, + position: { + my: "top+20%", + at: "top", + of: window, + collision: "fit" + }, + closeOnEscape: true, + close: function() { + $(this).dialog("destroy"); + + if (id_modal_target != undefined) { + $(id_modal_target).remove(); + } + + if (settings.cleanup != undefined) { + settings.cleanup(); + } + }, + beforeClose: settings.beforeClose() + }); + $(".dialog_tips .ui-dialog-titlebar").empty(); + $(".dialog_tips .ui-dialog-titlebar").append($(".tips_header").html()); + $(".tips_header").remove(); + $(".dialog_tips .ui-dialog-titlebar").addClass("tips_header"); + $(".dialog_tips .ui-dialog-titlebar").removeClass("ui-helper-clearfix"); + }, + error: function(data) { + console.error(data); + } }); -}); +} diff --git a/pandora_console/include/styles/jquery.bxslider.css b/pandora_console/include/styles/jquery.bxslider.css new file mode 100644 index 0000000000..0bc4ba522d --- /dev/null +++ b/pandora_console/include/styles/jquery.bxslider.css @@ -0,0 +1,172 @@ +/** VARIABLES +===================================*/ +/** RESET AND LAYOUT +===================================*/ +.bx-wrapper { + position: relative; + margin-bottom: 60px; + padding: 0; + *zoom: 1; + -ms-touch-action: pan-y; + touch-action: pan-y; +} +.bx-wrapper img { + max-width: 100%; + display: block; +} +.bxslider { + margin: 0; + padding: 0; +} +ul.bxslider { + list-style: none; +} +.bx-viewport { + /*fix other elements on the page moving (on Chrome)*/ + -webkit-transform: translatez(0); +} +/** THEME + ===================================*/ +.bx-wrapper { + -moz-box-shadow: 0 0 5px transparent; + -webkit-box-shadow: 0 0 5px transparent; + box-shadow: 0 0 5px transparent; + border: 5px solid transparent; + background: transparent; +} +.bx-wrapper .bx-pager, +.bx-wrapper .bx-controls-auto { + position: absolute; + bottom: -30px; + width: 100%; +} +/* LOADER */ +.bx-wrapper .bx-loading { + min-height: 50px; + height: 100%; + width: 100%; + position: absolute; + top: 0; + left: 0; + z-index: 2000; +} +/* PAGER */ +.bx-wrapper .bx-pager { + text-align: center; + font-size: 0.85em; + font-family: Arial; + font-weight: bold; + color: #666; + padding-top: 20px; +} +.bx-wrapper .bx-pager.bx-default-pager a { + background: #666; + text-indent: -9999px; + display: block; + width: 10px; + height: 10px; + margin: 0 5px; + outline: 0; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; +} +.bx-wrapper .bx-pager.bx-default-pager a:hover, +.bx-wrapper .bx-pager.bx-default-pager a.active, +.bx-wrapper .bx-pager.bx-default-pager a:focus { + background: #000; +} +.bx-wrapper .bx-pager-item, +.bx-wrapper .bx-controls-auto .bx-controls-auto-item { + display: inline-block; + vertical-align: bottom; + *zoom: 1; + *display: inline; +} +.bx-wrapper .bx-pager-item { + font-size: 0; + line-height: 0; +} +/* DIRECTION CONTROLS (NEXT / PREV) */ +.bx-wrapper .bx-prev { + left: 10px; +} +.bx-wrapper .bx-prev:hover, +.bx-wrapper .bx-prev:focus { + background-position: 0 0; +} +.bx-wrapper .bx-next { + right: 10px; +} +.bx-wrapper .bx-next:hover, +.bx-wrapper .bx-next:focus { + background-position: -43px 0; +} +.bx-wrapper .bx-controls-direction a { + position: absolute; + top: 50%; + margin-top: -16px; + outline: 0; + width: 32px; + height: 32px; + text-indent: -9999px; + z-index: 9999; +} +.bx-wrapper .bx-controls-direction a.disabled { + display: none; +} +/* AUTO CONTROLS (START / STOP) */ +.bx-wrapper .bx-controls-auto { + text-align: center; +} +.bx-wrapper .bx-controls-auto .bx-start { + display: block; + text-indent: -9999px; + width: 10px; + height: 11px; + outline: 0; + margin: 0 3px; +} +.bx-wrapper .bx-controls-auto .bx-start:hover, +.bx-wrapper .bx-controls-auto .bx-start.active, +.bx-wrapper .bx-controls-auto .bx-start:focus { + background-position: -86px 0; +} +.bx-wrapper .bx-controls-auto .bx-stop { + display: block; + text-indent: -9999px; + width: 9px; + height: 11px; + outline: 0; + margin: 0 3px; +} +.bx-wrapper .bx-controls-auto .bx-stop:hover, +.bx-wrapper .bx-controls-auto .bx-stop.active, +.bx-wrapper .bx-controls-auto .bx-stop:focus { + background-position: -86px -33px; +} +/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */ +.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager { + text-align: left; + width: 80%; +} +.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto { + right: 0; + width: 35px; +} +/* IMAGE CAPTIONS */ +.bx-wrapper .bx-caption { + position: absolute; + bottom: 0; + left: 0; + background: #666; + background: rgba(80, 80, 80, 0.75); + width: 100%; +} +.bx-wrapper .bx-caption span { + color: #fff; + font-family: Arial; + display: block; + font-size: 0.85em; + padding: 10px; +} diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index f9a1f7eec3..f416e18e09 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -7,15 +7,25 @@ left: 0; z-index: 2001; } +#tips_window_modal { + padding: 0px; +} .window { - background-color: white; + background-image: linear-gradient(180deg, #fffce8 0%, #ffffff 100%); + width: 640px; width: 100%; border-radius: 5px; } -.tips_header { +.ui-dialog .tips_header.ui-dialog-titlebar { display: flex; padding: 0px 20px; justify-content: space-between; + height: fit-content; + background-color: white; + color: #161628; +} +.tips_header .title { + font-size: 15px; } .description { padding: 20px; @@ -30,8 +40,11 @@ overflow: hidden; position: relative; width: 100%; - max-width: 900px; - height: 400px; + max-width: 464px; + max-height: 290px; + text-align: center; + margin: 0 auto; + padding-top: 20px; } .carousel .prev_step { position: absolute; @@ -65,7 +78,63 @@ .carousel .images img { width: 100%; } -.title { - margin: 0; - padding: 0; +.dialog_tips .ui-dialog-buttonset { + display: flex; + width: 100%; + justify-content: space-between; +} +#tips_window_modal .ui-dialog-buttonset button.submit-cancel-tips { + border-radius: 6px; + color: #14524f; + width: fit-content; + font-size: 15px; + border: 1px solid #14524f; + height: 35px; + margin: 0px; + background-color: #ffffff; + font-weight: 600; +} +#tips_window_modal .ui-dialog-buttonset button.submit-next-tips { + border-radius: 6px; + color: #ffffff; + width: fit-content; + font-size: 15px; + border: 1px solid #14524f; + background-color: #14524f; + height: 35px; + font-weight: 600; +} +.dialog_tips { + border-radius: 10px !important; +} +.dialog_tips .ui-widget-header { + margin: 0px !important; +} +.dialog_tips .tips_header { + border-top-right-radius: 10px !important; + border-top-left-radius: 10px !important; +} +#tips_window_modal .ui-dialog-buttonset button { + margin: 0px 20px !important; + margin-top: 10px !important; +} +.dialog_tips .ui-dialog-buttonset { + border-bottom-right-radius: 10px !important; + border-bottom-left-radius: 10px !important; + border-top: 1px solid #c1ccdc; +} +#title_tip { + font-size: 15px; + color: #161628; +} +#text_tip { + color: #161628; +} +#url_tip { + font-size: 13px; + color: #14524f; + font-weight: 600; +} +#url_tip .arrow_tips { + font-size: 20px; } diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 8cfdcb5d7f..ec5cc694fc 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -1,9 +1,37 @@ +
-

Ver típs al iniciar

+

+

Ver típs al iniciar

@@ -19,9 +46,13 @@

- + + +
-
- + +
+ +
\ No newline at end of file From 887d2f8f18a4c9f53d50b29cbaa1cb90c5eb9892 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 13 Feb 2023 16:21:37 +0100 Subject: [PATCH 03/31] #9073 added counter round un footer --- .../include/class/TipsWindow.class.php | 53 ++++++------ .../include/javascript/tipsWindow.js | 45 ++++++++++- .../include/styles/tips_window.css | 19 +++++ .../views/dashboard/tipsWindow.php | 81 +++++++++++-------- 4 files changed, 135 insertions(+), 63 deletions(-) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index ac1e4252de..4e8da71712 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -131,33 +131,36 @@ class TipsWindow ui_require_javascript_file('tipsWindow'); ui_require_javascript_file('jquery.bxslider.min'); echo '
'; - ?> + $this->totalTips = $this->getTotalTips(); + if ($this->totalTips > 0) { + ?> - - + + - { - $(".carousel .images").append(``); + $(".carousel .images").append( + `` + ); }); $(".carousel").removeClass("invisible"); } else { $(".carousel").addClass("invisible"); } + var limitRound = totalTips > 28 ? 28 : totalTips; + $(".count-round-tip").each(function(index) { + if ($(this).hasClass("active")) { + $(this).removeClass("active"); + if (index >= limitRound - 1) { + $($(".count-round-tip")[0]).addClass("active"); + } else { + $($(".count-round-tip")[index + 1]).addClass("active"); + } + return false; + } + }); +} + +function close_dialog() { + $("#tips_window_modal").dialog("close"); + $("#tips_window_modal").remove(); +} + +function render_counter() { + $(".counter-tips img:eq(0)").after( + "" + ); + if (totalTips > 1) { + for (let i = 1; i <= totalTips - 1; i++) { + $(".count-round-tip:eq(0)").after( + "" + ); + } + } } function next_tip() { @@ -134,7 +172,7 @@ function load_tips_modal(settings) { settings.onload(data); } settings.target.dialog({ - resizable: true, + resizable: false, draggable: true, modal: true, header: false, @@ -175,6 +213,7 @@ function load_tips_modal(settings) { $(".tips_header").remove(); $(".dialog_tips .ui-dialog-titlebar").addClass("tips_header"); $(".dialog_tips .ui-dialog-titlebar").removeClass("ui-helper-clearfix"); + render_counter(); }, error: function(data) { console.error(data); diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index f416e18e09..37e1003a0b 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -138,3 +138,22 @@ #url_tip .arrow_tips { font-size: 20px; } +span.count-round-tip { + width: 6px !important; + height: 6px !important; + background: #dbdfe6; + border-radius: 10px; + margin: 0px 2px; +} +span.count-round-tip.active { + background-color: #1d7874; +} +.counter-tips { + display: flex; + align-items: center; + margin-top: 10px; +} +.arrow-counter { + width: 7px; + margin: 0px 5px; +} diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index ec5cc694fc..1a8fa963c4 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -3,14 +3,14 @@ * Dashboards Modal for tips * * @category Console Class - * @package Pandora FMS + $output .= '* @packagePandora FMS'; * @subpackage Dashboards - * @version 1.0.0 - * @license See below + $output .= '* @version1.0.0'; + $output .= '* @licenseSee below'; * - * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + $output .= '*______ __________ _______ ________'; + $output .= '* | __ \.-----.--.--.--| |.-----.----.-----. |___| | | __|'; + $output .= '* |__/| _ | | _ || _ | _| _ | |___| |__ |'; * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ @@ -25,34 +25,45 @@ * GNU General Public License for more details. * ============================================================================ */ -?> -
-
-

-

Ver típs al iniciar

-
- +$output = ''; -
-

-

- -

- - - -
+$output .= '
'; +$output .= '
'; +$output .= '

'.__('¡Hola! estos son los tips del día.').'

'; +$output .= '

'.html_print_checkbox('tips_in_start', true, true, true).__('Ver típs al iniciar').'

'; +$output .= '
'; +$output .= '
'; +$output .= '
'; -
- - -
-
\ No newline at end of file +if ($files !== false) { + foreach ($files as $key => $file) { + $output .= html_print_image($file['path'].$file['filename'], true); + } +} + +$output .= '
'; +$output .= '
'; + +$output .= '
'; +$output .= '

'.$title.'

'; +$output .= '

'; +$output .= $text; +$output .= '

'; + +if (empty($url) === false && $url !== '') { + $output .= ''.__('Ver más info').''; +} + +$output .= '
'; + +$output .= '
'; +// TODO Delete this buttons and use html_print_button when merge new design +$output .= ''; +$output .= '
'; +$output .= html_print_image('images/arrow-left-grey.png', true, ['class' => 'arrow-counter']); +$output .= html_print_image('images/arrow-right-grey.png', true, ['class' => 'arrow-counter']); +$output .= '
'; +$output .= ''; +$output .= '
'; +$output .= '
'; +echo $output; From dfb93d2cf59a469a6287f41550bc1d5b1ab165a8 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 14 Feb 2023 10:34:08 +0100 Subject: [PATCH 04/31] #9073 added token for tips in user profile configuration --- .../include/class/TipsWindow.class.php | 41 ++++++++++++++++--- .../include/javascript/tipsWindow.js | 30 ++++++++++---- pandora_console/operation/users/user_edit.php | 7 +++- .../views/dashboard/tipsWindow.php | 20 ++++++--- 4 files changed, 77 insertions(+), 21 deletions(-) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 4e8da71712..d306ba01f1 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -44,6 +44,7 @@ class TipsWindow public $AJAXMethods = [ 'getRandomTip', 'renderView', + 'setShowTipsAtStartup', ]; /** @@ -126,6 +127,13 @@ class TipsWindow */ public function run() { + global $config; + $user_info = users_get_user_by_id($config['id_user']); + + if ((bool) $user_info['show_tips_startup'] === false) { + return; + } + ui_require_css_file('tips_window'); ui_require_css_file('jquery.bxslider'); ui_require_javascript_file('tipsWindow'); @@ -146,11 +154,6 @@ class TipsWindow load_tips_modal({ target: $('#tips_window_modal'), url: '', - modal: { - title: '', - next: '', - close: '' - }, onshow: { page: 'ajaxController; ?>', method: 'renderView', @@ -183,7 +186,7 @@ class TipsWindow { $exclude = get_parameter('exclude', ''); - $sql = 'SELECT id, title, text, url + $sql = 'SELECT id, title, text, url FROM twelcome_tip'; if (empty($exclude) === false && $exclude !== null) { @@ -233,4 +236,30 @@ class TipsWindow return db_get_all_rows_sql($sql); } + + + public function setShowTipsAtStartup() + { + global $config; + $show_tips_startup = get_parameter('show_tips_startup', ''); + if ($show_tips_startup !== '' && $show_tips_startup !== null) { + $result = db_process_sql_update( + 'tusuario', + ['show_tips_startup' => $show_tips_startup], + ['id_user' => $config['id_user']] + ); + + if ($result !== false) { + echo json_encode(['success' => true]); + return; + } else { + echo json_encode(['success' => false]); + return; + } + } else { + echo json_encode(['success' => false]); + return; + } + + } } \ No newline at end of file diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index 0b73e22043..c6693922ad 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -4,6 +4,26 @@ $(".carousel .images").ready(function() { $(".carousel .images").bxSlider({ controls: true }); } }); + +$("#checkbox_tips_startup").ready(function() { + $("#checkbox_tips_startup").on("click", function() { + $.ajax({ + method: "POST", + url: url, + dataType: "json", + data: { + page: page, + method: "setShowTipsAtStartup", + show_tips_startup: this.checked ? "1" : "0" + }, + success: function({ success }) { + if (!success) { + $("#checkbox_tips_startup").prop("checked", true); + } + } + }); + }); +}); function render({ title, text, url, files }) { $("#title_tip").html(title); $("#text_tip").html(text); @@ -124,13 +144,6 @@ function load_tips_modal(settings) { width = settings.onshow.width; } - if (settings.modal.overlay == undefined) { - settings.modal.overlay = { - opacity: 0.5, - background: "black" - }; - } - if (settings.beforeClose == undefined) { settings.beforeClose = function() {}; } @@ -177,7 +190,7 @@ function load_tips_modal(settings) { modal: true, header: false, dialogClass: "dialog_tips", - title: settings.modal.title, + title: "", width: width, minHeight: settings.onshow.minHeight != undefined @@ -187,7 +200,6 @@ function load_tips_modal(settings) { settings.onshow.maxHeight != undefined ? settings.onshow.maxHeight : "auto", - overlay: settings.modal.overlay, position: { my: "top+20%", at: "top", diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 78e2d3163a..c34c4172b4 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -83,6 +83,7 @@ if (isset($_GET['modified']) && !$view_mode) { $upd_info['timezone'] = get_parameter_post('timezone', ''); $upd_info['id_skin'] = get_parameter('skin', $user_info['id_skin']); $upd_info['default_event_filter'] = get_parameter('event_filter', null); + $upd_info['show_tips_startup'] = get_parameter_switch('show_tips_startup'); $upd_info['block_size'] = get_parameter('block_size', $config['block_size']); // API Token information. $apiTokenRenewed = (bool) get_parameter('renewAPIToken'); @@ -539,6 +540,10 @@ if (check_acl($config['id_user'], 0, 'ER')) { ).'
'; } +$show_tips = '

'.__('Show usage tips at startup').'

'; +$show_tips .= html_print_checkbox_switch('show_tips_startup', 1, $user_info['show_tips_startup'], true).'
'; + + $autorefresh_list_out = []; if (is_metaconsole() === false || is_centralized() === true) { @@ -752,7 +757,7 @@ if (is_metaconsole() === true) {
'.$autorefresh_show.$time_autorefresh.'
-
'.$language.$size_pagination.$skin.$home_screen.$event_filter.$double_authentication.'
+
'.$language.$size_pagination.$skin.$home_screen.$event_filter.$show_tips.$double_authentication.'
'.$timezone; diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 1a8fa963c4..0fc1ad1a92 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -29,8 +29,18 @@ $output = ''; $output .= '
'; $output .= '
'; -$output .= '

'.__('¡Hola! estos son los tips del día.').'

'; -$output .= '

'.html_print_checkbox('tips_in_start', true, true, true).__('Ver típs al iniciar').'

'; +$output .= '

'.__('Hello! These are the tips of the day.').'

'; +$output .= '

'.html_print_checkbox( + 'show_tips_startup', + true, + true, + true, + false, + '', + false, + '', + 'checkbox_tips_startup' +).__('Show usage tips at startup').'

'; $output .= '
'; $output .= '
'; $output .= '
'; @@ -51,19 +61,19 @@ $output .= $text; $output .= '

'; if (empty($url) === false && $url !== '') { - $output .= ''.__('Ver más info').''; + $output .= ''.__('See more info').''; } $output .= '
'; $output .= '
'; // TODO Delete this buttons and use html_print_button when merge new design -$output .= ''; +$output .= ''; $output .= '
'; $output .= html_print_image('images/arrow-left-grey.png', true, ['class' => 'arrow-counter']); $output .= html_print_image('images/arrow-right-grey.png', true, ['class' => 'arrow-counter']); $output .= '
'; -$output .= ''; +$output .= ''; $output .= '
'; $output .= '
'; echo $output; From ad4750c409935efb5dad7543f85352653d989490 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 14 Feb 2023 10:55:01 +0100 Subject: [PATCH 05/31] #9073 fixed bug in firts tips --- pandora_console/include/class/TipsWindow.class.php | 2 +- pandora_console/include/javascript/tipsWindow.js | 4 +++- pandora_console/views/dashboard/tipsWindow.php | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index d306ba01f1..ca6ec854ed 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -145,7 +145,6 @@ class TipsWindow @@ -177,6 +176,7 @@ class TipsWindow 'text' => $initialTip['text'], 'url' => $initialTip['url'], 'files' => $initialTip['files'], + 'id' => $initialTip['id'], ] ); } diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index c6693922ad..c76e0c2b84 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -1,4 +1,4 @@ -/* globals $, idTips, totalTips, idTips, url, page */ +/* globals $, idTips, totalTips, url, page */ $(".carousel .images").ready(function() { if ($(".carousel .images img").length > 1) { $(".carousel .images").bxSlider({ controls: true }); @@ -79,6 +79,8 @@ function render_counter() { } function next_tip() { + console.log(JSON.stringify(idTips)); + console.log(totalTips); if (idTips.length >= totalTips) { idTips = []; } diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 0fc1ad1a92..083ebbf0f5 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -26,7 +26,7 @@ * ============================================================================ */ $output = ''; - +$output .= ''; $output .= '
'; $output .= '
'; $output .= '

'.__('Hello! These are the tips of the day.').'

'; From 5d6ac202dfd423dc33b6958220c50deccab8edad Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 14 Feb 2023 10:55:48 +0100 Subject: [PATCH 06/31] #9073 clear logs --- pandora_console/include/javascript/tipsWindow.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index c76e0c2b84..09a03248b6 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -79,8 +79,6 @@ function render_counter() { } function next_tip() { - console.log(JSON.stringify(idTips)); - console.log(totalTips); if (idTips.length >= totalTips) { idTips = []; } From bdd6d2bb1524f0d99707a6390bea15f20dec005c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 14 Feb 2023 11:18:39 +0100 Subject: [PATCH 07/31] #9073 added control session --- pandora_console/general/register.php | 11 +++++++++++ pandora_console/include/class/TipsWindow.class.php | 1 + 2 files changed, 12 insertions(+) diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php index 1c8249ddf5..8714d1ec12 100644 --- a/pandora_console/general/register.php +++ b/pandora_console/general/register.php @@ -31,6 +31,7 @@ global $config; require_once $config['homedir'].'/include/functions_register.php'; require_once $config['homedir'].'/include/class/WelcomeWindow.class.php'; +require_once $config['homedir'].'/include/class/TipsWindow.class.php'; if ((bool) is_ajax() === true) { @@ -109,6 +110,16 @@ try { $welcome = false; } +try { + if (isset($_SESSION['showed_tips_window']) === false) { + $tips_window = new TipsWindow(); + if ($tips_window !== null) { + $tips_window->run(); + } + } +} catch (Exception $e) { +} + $double_auth_enabled = (bool) db_get_value('id', 'tuser_double_auth', 'id_user', $config['id_user']); if (isset($config['2FA_all_users']) === false) { diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index ca6ec854ed..73d84190ea 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -134,6 +134,7 @@ class TipsWindow return; } + $_SESSION['showed_tips_window'] = true; ui_require_css_file('tips_window'); ui_require_css_file('jquery.bxslider'); ui_require_javascript_file('tipsWindow'); From 9f01a302c5be06dc350007aaad89690c63c5d6d0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 14 Feb 2023 11:32:43 +0100 Subject: [PATCH 08/31] #9073 finished front --- pandora_console/views/dashboard/tipsWindow.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 083ebbf0f5..297c9cf890 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -61,7 +61,7 @@ $output .= $text; $output .= '

'; if (empty($url) === false && $url !== '') { - $output .= ''.__('See more info').''; + $output .= ''.__('See more info').''; } $output .= '
'; From 1ab8767c3402894b25e621cfb774c463ff60018e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 08:56:03 +0100 Subject: [PATCH 09/31] #9073 added section welcome tips in menu --- pandora_console/godmode/menu.php | 3 + pandora_console/godmode/setup/setup.php | 23 ++ .../godmode/setup/welcome_tips.php | 79 +++++++ .../include/class/TipsWindow.class.php | 214 ++++++++++++++++++ 4 files changed, 319 insertions(+) create mode 100644 pandora_console/godmode/setup/welcome_tips.php diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index d98eb9d3c6..4265e5d69f 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -380,6 +380,9 @@ if ($access_console_node === true) { $sub2['godmode/setup/setup§ion=external_tools']['text'] = __('External Tools'); $sub2['godmode/setup/setup§ion=external_tools']['refr'] = 0; + $sub2['godmode/setup/setup§ion=welcome_tips']['text'] = __('Welcome Tips'); + $sub2['godmode/setup/setup§ion=welcome_tips']['refr'] = 0; + if ((bool) $config['activate_gis'] === true) { $sub2['godmode/setup/setup§ion=gis']['text'] = __('Map conections GIS'); } diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php index 8c8587b1ef..a72dba24ac 100644 --- a/pandora_console/godmode/setup/setup.php +++ b/pandora_console/godmode/setup/setup.php @@ -224,6 +224,11 @@ $buttons['external_tools'] = [ 'text' => ''.html_print_image('images/nettool.png', true, ['title' => __('External Tools'), 'class' => 'invert_filter']).'', ]; +$buttons['welcome_tips'] = [ + 'active' => false, + 'text' => ''.html_print_image('images/', true, ['title' => __('Welcome tips'), 'class' => 'invert_filter']).'', +]; + if ($config['activate_gis']) { $buttons['gis'] = [ 'active' => false, @@ -312,6 +317,20 @@ switch ($section) { $help_header = ''; break; + case 'welcome_tips': + $view = get_parameter('view', ''); + $title = __('Welcome tips'); + if ($view === 'create') { + $title = __('Create tip'); + } else if ($view === 'edit') { + $title = __('Edit tip'); + } + + $buttons['welcome_tips']['active'] = true; + $subpage = ' » '.$title; + $help_header = ''; + break; + case 'enterprise': $buttons['enterprise']['active'] = true; $subpage = ' » '.__('Enterprise'); @@ -409,6 +428,10 @@ switch ($section) { include_once $config['homedir'].'/godmode/setup/setup_external_tools.php'; break; + case 'welcome_tips': + include_once $config['homedir'].'/godmode/setup/welcome_tips.php'; + break; + default: enterprise_hook('setup_enterprise_select_tab', [$section]); break; diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php new file mode 100644 index 0000000000..cb5f730299 --- /dev/null +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -0,0 +1,79 @@ +getMessage(); + return; +} + +if ($view === 'create') { + if ($action === 'create') { + $secure_input = get_parameter('secure_input', ''); + $id_lang = get_parameter('id_lang', ''); + $title = get_parameter('title', ''); + $text = get_parameter('text', ''); + $url = get_parameter('url', ''); + $enable = get_parameter_switch('enable', ''); + $errors = []; + + if (empty($id_lang) === true) { + $errors[] = __('Language is empty'); + } + + if (empty($title) === true) { + $errors[] = __('Title is empty'); + } + + if (empty($text) === true) { + $errors[] = __('Text is empty'); + } + + if (count($errors) === 0) { + $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable); + if ($response === false) { + $errors[] = __('Error in insert data'); + } + } + + $tipsWindow->viewCreate($errors); + } else { + $tipsWindow->viewCreate(); + } + + return; +} + +$tipsWindow->draw(); diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 73d84190ea..fa8e9ea46d 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -45,6 +45,7 @@ class TipsWindow 'getRandomTip', 'renderView', 'setShowTipsAtStartup', + 'getTips', ]; /** @@ -263,4 +264,217 @@ class TipsWindow } } + + + public function draw() + { + try { + $columns = [ + 'title', + 'text', + ]; + + $column_names = [ + __('Title'), + __('Text'), + ]; + + // Load datatables user interface. + ui_print_datatable( + [ + 'id' => 'list_tips_windows', + 'class' => 'info_table', + 'style' => 'width: 100%', + 'columns' => $columns, + 'column_names' => $column_names, + 'ajax_url' => $this->ajaxController, + 'ajax_data' => ['method' => 'getTips'], + 'no_sortable_columns' => [-1], + 'order' => [ + 'field' => 'title', + 'direction' => 'asc', + ], + 'search_button_class' => 'sub filter float-right', + 'form' => [ + 'inputs' => [ + [ + 'label' => __('Search by title'), + 'type' => 'text', + 'name' => 'filter_title', + 'size' => 12, + ], + ], + ], + ] + ); + echo ''; + } catch (Exception $e) { + echo $e->getMessage(); + } + } + + + public function getTips() + { + global $config; + + // Init data. + $data = []; + // Count of total records. + $count = 0; + // Catch post parameters. + $start = get_parameter('start', 0); + $length = get_parameter('length', $config['block_size']); + $order_datatable = get_datatable_order(true); + $filters = get_parameter('filter', []); + $pagination = ''; + $filter = ''; + $order = ''; + + try { + ob_start(); + + if (key_exists('filter_title', $filters) === true) { + if (empty($filters['filter_title']) === false) { + $filter = ' WHERE title like "%'.$filters['filter_title'].'%"'; + } + } + + if (isset($order_datatable)) { + $order = sprintf( + ' ORDER BY %s %s', + $order_datatable['field'], + $order_datatable['direction'] + ); + } + + if (isset($length) && $length > 0 + && isset($start) && $start >= 0 + ) { + $pagination = sprintf( + ' LIMIT %d OFFSET %d ', + $length, + $start + ); + } + + $sql = sprintf( + 'SELECT title, text, url + FROM twelcome_tip %s %s %s', + $filter, + $order, + $pagination + ); + + $data = db_get_all_rows_sql($sql); + + if (empty($data) === true) { + $total = 0; + $data = []; + } else { + $total = $this->getTotalTips(); + } + + echo json_encode( + [ + 'data' => $data, + 'recordsTotal' => $total, + 'recordsFiltered' => $total, + ] + ); + // Capture output. + $response = ob_get_clean(); + } catch (Exception $e) { + echo json_encode(['error' => $e->getMessage()]); + exit; + } + + json_decode($response); + if (json_last_error() === JSON_ERROR_NONE) { + echo $response; + } else { + echo json_encode( + [ + 'success' => false, + 'error' => $response, + ] + ); + } + + exit; + } + + + public function viewCreate($errors=null) + { + if ($errors !== null) { + if (count($errors) > 0) { + foreach ($errors as $key => $value) { + ui_print_error_message($value); + } + } else { + ui_print_success_message(__('Tip created')); + } + } + + $table = new stdClass(); + $table->width = '100%'; + $table->class = 'databox filters'; + + $table->style[0] = 'font-weight: bold'; + + $table->data = []; + $table->data[0][0] = __('Language'); + $table->data[0][1] = html_print_select_from_sql( + 'SELECT id_language, name FROM tlanguage', + 'id_lang', + '', + '', + '', + '0', + true + ); + $table->data[1][0] = __('Title'); + $table->data[1][1] = html_print_input_text('title', '', '', 35, 100, true); + $table->data[2][0] = __('Text'); + $table->data[2][1] = html_print_textarea('text', 5, 1, '', '', true); + $table->data[3][0] = __('Url'); + $table->data[3][1] = html_print_input_text('url', '', '', 35, 100, true); + $table->data[4][0] = __('Enable'); + $table->data[4][1] = html_print_checkbox_switch('enable', true, true, true); + + echo '
'; + html_print_table($table); + echo '
'; + html_print_submit_button(__('Send'), 'submit_button', false, ['class' => 'sub next']); + + echo '
'; + echo '
'; + } + + + public function createTip($id_lang, $title, $text, $url, $enable) + { + return db_process_sql_insert( + 'twelcome_tip', + [ + 'id_lang' => $id_lang, + 'title' => $title, + 'text' => $text, + 'url' => $url, + 'enable' => $enable, + ] + ); + } + + } \ No newline at end of file From 09d703f981f26036b7fdeb47160ec69770281fbc Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 11:58:34 +0100 Subject: [PATCH 10/31] #9073 added images input in create tips --- .../godmode/setup/welcome_tips.php | 15 +- .../include/class/TipsWindow.class.php | 129 ++++++++++++++---- .../include/javascript/tipsWindow.js | 35 ++++- .../include/styles/tips_window.css | 6 + 4 files changed, 155 insertions(+), 30 deletions(-) diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index cb5f730299..514beea60e 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -41,6 +41,7 @@ try { if ($view === 'create') { if ($action === 'create') { + $files = $_FILES; $secure_input = get_parameter('secure_input', ''); $id_lang = get_parameter('id_lang', ''); $title = get_parameter('title', ''); @@ -49,6 +50,13 @@ if ($view === 'create') { $enable = get_parameter_switch('enable', ''); $errors = []; + if (count($files) > 0) { + $e = $tipsWindow->validateImages($files); + if ($e !== false) { + $errors = $e; + } + } + if (empty($id_lang) === true) { $errors[] = __('Language is empty'); } @@ -62,7 +70,12 @@ if ($view === 'create') { } if (count($errors) === 0) { - $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable); + if (count($files) > 0) { + $uploadImages = $tipsWindow->uploadImages($files); + } + + $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable, $uploadImages); + if ($response === false) { $errors[] = __('Error in insert data'); } diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index fa8e9ea46d..4303ac02db 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -27,6 +27,7 @@ */ // Begin. +use LDAP\Result; use PandoraFMS\View; global $config; @@ -129,9 +130,9 @@ class TipsWindow public function run() { global $config; - $user_info = users_get_user_by_id($config['id_user']); + $userInfo = users_get_user_by_id($config['id_user']); - if ((bool) $user_info['show_tips_startup'] === false) { + if ((bool) $userInfo['show_tips_startup'] === false) { return; } @@ -243,11 +244,11 @@ class TipsWindow public function setShowTipsAtStartup() { global $config; - $show_tips_startup = get_parameter('show_tips_startup', ''); - if ($show_tips_startup !== '' && $show_tips_startup !== null) { + $showTipsStartup = get_parameter('show_tips_startup', ''); + if ($showTipsStartup !== '' && $showTipsStartup !== null) { $result = db_process_sql_update( 'tusuario', - ['show_tips_startup' => $show_tips_startup], + ['show_tips_startup' => $showTipsStartup], ['id_user' => $config['id_user']] ); @@ -274,7 +275,7 @@ class TipsWindow 'text', ]; - $column_names = [ + $columnNames = [ __('Title'), __('Text'), ]; @@ -286,7 +287,7 @@ class TipsWindow 'class' => 'info_table', 'style' => 'width: 100%', 'columns' => $columns, - 'column_names' => $column_names, + 'column_names' => $columnNames, 'ajax_url' => $this->ajaxController, 'ajax_data' => ['method' => 'getTips'], 'no_sortable_columns' => [-1], @@ -334,7 +335,7 @@ class TipsWindow // Catch post parameters. $start = get_parameter('start', 0); $length = get_parameter('length', $config['block_size']); - $order_datatable = get_datatable_order(true); + $orderDatatable = get_datatable_order(true); $filters = get_parameter('filter', []); $pagination = ''; $filter = ''; @@ -349,11 +350,11 @@ class TipsWindow } } - if (isset($order_datatable)) { + if (isset($orderDatatable)) { $order = sprintf( ' ORDER BY %s %s', - $order_datatable['field'], - $order_datatable['direction'] + $orderDatatable['field'], + $orderDatatable['direction'] ); } @@ -416,6 +417,9 @@ class TipsWindow public function viewCreate($errors=null) { + ui_require_javascript_file('tipsWindow'); + ui_require_css_file('tips_window'); + if ($errors !== null) { if (count($errors) > 0) { foreach ($errors as $key => $value) { @@ -433,8 +437,12 @@ class TipsWindow $table->style[0] = 'font-weight: bold'; $table->data = []; - $table->data[0][0] = __('Language'); - $table->data[0][1] = html_print_select_from_sql( + $table->data[0][0] = __('Images'); + $table->data[0][1] = html_print_input_hidden('number_images', 0, true); + $table->data[0][1] .= html_print_div(['id' => 'inputs_images'], true); + $table->data[0][1] .= html_print_button(__('Add image'), 'button_add_image', false, '', '', true); + $table->data[1][0] = __('Language'); + $table->data[1][1] = html_print_select_from_sql( 'SELECT id_language, name FROM tlanguage', 'id_lang', '', @@ -443,16 +451,16 @@ class TipsWindow '0', true ); - $table->data[1][0] = __('Title'); - $table->data[1][1] = html_print_input_text('title', '', '', 35, 100, true); - $table->data[2][0] = __('Text'); - $table->data[2][1] = html_print_textarea('text', 5, 1, '', '', true); - $table->data[3][0] = __('Url'); - $table->data[3][1] = html_print_input_text('url', '', '', 35, 100, true); - $table->data[4][0] = __('Enable'); - $table->data[4][1] = html_print_checkbox_switch('enable', true, true, true); + $table->data[2][0] = __('Title'); + $table->data[2][1] = html_print_input_text('title', '', '', 35, 100, true); + $table->data[3][0] = __('Text'); + $table->data[3][1] = html_print_textarea('text', 5, 1, '', '', true); + $table->data[4][0] = __('Url'); + $table->data[4][1] = html_print_input_text('url', '', '', 35, 100, true); + $table->data[5][0] = __('Enable'); + $table->data[5][1] = html_print_checkbox_switch('enable', true, true, true); - echo '
'; + echo ''; html_print_table($table); echo '
'; html_print_submit_button(__('Send'), 'submit_button', false, ['class' => 'sub next']); @@ -462,9 +470,10 @@ class TipsWindow } - public function createTip($id_lang, $title, $text, $url, $enable) + public function createTip($id_lang, $title, $text, $url, $enable, $images=null) { - return db_process_sql_insert( + db_process_sql_begin(); + $idTip = db_process_sql_insert( 'twelcome_tip', [ 'id_lang' => $id_lang, @@ -474,6 +483,78 @@ class TipsWindow 'enable' => $enable, ] ); + if ($idTip === false) { + db_process_sql_rollback(); + return false; + } + + if ($images !== null) { + foreach ($images as $key => $image) { + $res = db_process_sql_insert( + 'twelcome_tip_file', + [ + 'twelcome_tip_file' => $idTip, + 'filename' => $image, + 'path' => 'images/tips/', + ] + ); + if ($res === false) { + db_process_sql_rollback(); + return false; + } + } + } + + db_process_sql_commit(); + + return true; + } + + + public function validateImages($files) + { + $formats = [ + 'image/png', + 'image/jpg', + 'image/jpeg', + 'image/gif', + ]; + $errors = []; + $maxsize = 6097152; + + foreach ($files as $key => $file) { + if ($file['error'] !== 0) { + $errors[] = __('Incorrect file'); + } + + if (in_array($file['type'], $formats) === false) { + $errors[] = __('Format image invalid'); + } + + if ($file['size'] > $maxsize) { + $errors[] = __('Image size too large'); + } + } + + if (count($errors) > 0) { + return $errors; + } else { + return false; + } + } + + + public function uploadImages($files) + { + $dir = 'images/tips/'; + $imagesOk = []; + foreach ($files as $key => $file) { + $name = str_replace(' ', '_', $file['name']); + $r = move_uploaded_file($file['tmp_name'], $dir.'/'.$name); + $imagesOk[] = $name; + } + + return $imagesOk; } diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index 09a03248b6..05b569abca 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -1,8 +1,22 @@ /* globals $, idTips, totalTips, url, page */ +$(document).ready(function() { + $("#button-button_add_image").on("click", function() { + var numberImages = $("#inputs_images").children().length; + var div_image = document.createElement("div"); + $(div_image).attr("class", "action_image"); + $(div_image).append( + `` + ); + $(div_image).append( + `` + ); + $("#inputs_images").append(div_image); + }); +}); $(".carousel .images").ready(function() { - if ($(".carousel .images img").length > 1) { - $(".carousel .images").bxSlider({ controls: true }); - } + activeCarousel(); }); $("#checkbox_tips_startup").ready(function() { @@ -24,6 +38,16 @@ $("#checkbox_tips_startup").ready(function() { }); }); }); +function activeCarousel() { + if ($(".carousel .images img").length > 1) { + $(".carousel .images").bxSlider({ controls: true }); + } +} +function removeImage(name) { + $(`input[name=${name}]`) + .parent() + .remove(); +} function render({ title, text, url, files }) { $("#title_tip").html(title); $("#text_tip").html(text); @@ -34,8 +58,8 @@ function render({ title, text, url, files }) { $("#url_tip").addClass("invisible"); } - $(".carousel .images").empty(); - + $(".carousel").empty(); + $(".carousel").append("
"); if (files) { files.forEach(file => { $(".carousel .images").append( @@ -58,6 +82,7 @@ function render({ title, text, url, files }) { return false; } }); + activeCarousel(); } function close_dialog() { diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index 37e1003a0b..08bcbddc50 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -157,3 +157,9 @@ span.count-round-tip.active { width: 7px; margin: 0px 5px; } +.bx-viewport { + height: fit-content !important; +} +.action_image { + margin: 10px 0px; +} From 35e1e46a3197cc1888e5a26c9a6553fecce68a85 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 13:11:02 +0100 Subject: [PATCH 11/31] #9073 added delete tip --- .../godmode/setup/welcome_tips.php | 31 ++++-- .../include/class/TipsWindow.class.php | 96 ++++++++++++++++--- .../include/styles/tips_window.css | 16 ++++ 3 files changed, 121 insertions(+), 22 deletions(-) diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index 514beea60e..ec56b0ff2b 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -42,11 +42,10 @@ try { if ($view === 'create') { if ($action === 'create') { $files = $_FILES; - $secure_input = get_parameter('secure_input', ''); $id_lang = get_parameter('id_lang', ''); - $title = get_parameter('title', ''); - $text = get_parameter('text', ''); - $url = get_parameter('url', ''); + $title = io_safe_input(get_parameter('title', '')); + $text = io_safe_input(get_parameter('text', '')); + $url = io_safe_input(get_parameter('url', '')); $enable = get_parameter_switch('enable', ''); $errors = []; @@ -76,8 +75,8 @@ if ($view === 'create') { $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable, $uploadImages); - if ($response === false) { - $errors[] = __('Error in insert data'); + if ($response === 0) { + $errors[] = __('Error in insert tip'); } } @@ -89,4 +88,22 @@ if ($view === 'create') { return; } -$tipsWindow->draw(); +if ($action === 'delete') { + $idTip = get_parameter('idTip', ''); + $errors = []; + if (empty($idTip) === true) { + $errors[] = __('Tip required'); + } + + if (count($errors) === 0) { + $response = $tipsWindow->deleteTip($idTip); + hd($response, true); + if ($response === 0) { + $errors[] = __('Error in delete tip'); + } + } + + $tipsWindow->draw($errors); +} else { + $tipsWindow->draw(); +} diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 4303ac02db..79da5e84bc 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -56,13 +56,6 @@ class TipsWindow */ public $ajaxController; - /** - * Total tips - * - * @var integer - */ - public $totalTips; - /** * Array of tips * @@ -142,12 +135,12 @@ class TipsWindow ui_require_javascript_file('tipsWindow'); ui_require_javascript_file('jquery.bxslider.min'); echo '
'; - $this->totalTips = $this->getTotalTips(); - if ($this->totalTips > 0) { + $totalTips = $this->getTotalTipsEnabled(); + if ($totalTips > 0) { ?> @@ -190,12 +183,13 @@ class TipsWindow $exclude = get_parameter('exclude', ''); $sql = 'SELECT id, title, text, url - FROM twelcome_tip'; + FROM twelcome_tip + WHERE enable = "1" '; if (empty($exclude) === false && $exclude !== null) { $exclude = implode(',', json_decode($exclude, true)); if ($exclude !== '') { - $sql .= sprintf(' WHERE id NOT IN (%s)', $exclude); + $sql .= sprintf(' AND id NOT IN (%s)', $exclude); } } @@ -204,6 +198,10 @@ class TipsWindow $tip = db_get_row_sql($sql); $tip['files'] = $this->getFilesFromTip($tip['id']); + $tip['title'] = io_safe_output($tip['title']); + $tip['text'] = io_safe_output($tip['text']); + $tip['url'] = io_safe_output($tip['url']); + if ($return) { if (empty($tip) === false) { return $tip; @@ -228,6 +226,12 @@ class TipsWindow } + public function getTotalTipsEnabled() + { + return db_get_sql('SELECT count(*) FROM twelcome_tip WHERE enable = "1"'); + } + + public function getFilesFromTip($idTip) { if (empty($idTip) === true) { @@ -267,17 +271,35 @@ class TipsWindow } - public function draw() + public function draw($errors=null) { + ui_require_css_file('tips_window'); + + if ($errors !== null) { + if (count($errors) > 0) { + foreach ($errors as $key => $value) { + ui_print_error_message($value); + } + } else { + ui_print_success_message(__('Tip deleted')); + } + } + try { $columns = [ + 'language', 'title', 'text', + 'enable', + 'actions', ]; $columnNames = [ + __('Language'), __('Title'), __('Text'), + __('Enable'), + __('Actions'), ]; // Load datatables user interface. @@ -324,6 +346,24 @@ class TipsWindow } + public function deleteTip($idTip) + { + $files = $this->getFilesFromTip($idTip); + if ($files !== false) { + if (count($files) > 0) { + foreach ($files as $key => $file) { + unlink($file['path'].'/'.$file['filename']); + } + } + } + + return db_process_sql_delete( + 'twelcome_tip', + ['id' => $idTip] + ); + } + + public function getTips() { global $config; @@ -369,8 +409,10 @@ class TipsWindow } $sql = sprintf( - 'SELECT title, text, url - FROM twelcome_tip %s %s %s', + 'SELECT id, name AS language, title, text, url, enable + FROM twelcome_tip t + LEFT JOIN tlanguage l ON t.id_lang = l.id_language + %s %s %s', $filter, $order, $pagination @@ -378,6 +420,30 @@ class TipsWindow $data = db_get_all_rows_sql($sql); + foreach ($data as $key => $row) { + if ($row['enable'] === '1') { + $data[$key]['enable'] = ''; + } else { + $data[$key]['enable'] = ''; + } + + $data[$key]['title'] = io_safe_output($row['title']); + $data[$key]['text'] = io_safe_output($row['text']); + $data[$key]['url'] = io_safe_output($row['url']); + + $data[$key]['actions'] = ''; + $data[$key]['actions'] .= html_print_input_image( + 'button_delete_tip', + 'images/delete.png', + '', + '', + true, + ['onclick' => 'if (!confirm(\''.__('Are you sure?').'\')) return false;'] + ); + $data[$key]['actions'] .= html_print_input_hidden('idTip', $row['id'], true); + $data[$key]['actions'] .= ''; + } + if (empty($data) === true) { $total = 0; $data = []; diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index 08bcbddc50..aa9a4f050b 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -163,3 +163,19 @@ span.count-round-tip.active { .action_image { margin: 10px 0px; } +span.enable { + display: block; + width: 15px; + height: 15px; + border-radius: 15px; + background-color: #82b92e; + margin: 0 auto; +} +span.disable { + display: block; + width: 15px; + height: 15px; + border-radius: 15px; + background-color: #e63c52; + margin: 0 auto; +} From 1b82af24e8dd4dc03f4ad29a9a23c8ed3c77a467 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 15:14:17 +0100 Subject: [PATCH 12/31] #9073 added view edit tip --- .../godmode/setup/welcome_tips.php | 84 ++++++--- .../include/class/TipsWindow.class.php | 160 ++++++++++++++++-- .../include/styles/tips_window.css | 4 + 3 files changed, 213 insertions(+), 35 deletions(-) diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index ec56b0ff2b..531d47bf3a 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -39,13 +39,14 @@ try { return; } -if ($view === 'create') { - if ($action === 'create') { +if ($view === 'create' || $view === 'edit') { + // IF exists actions + if ($action === 'create' || $action === 'edit') { $files = $_FILES; $id_lang = get_parameter('id_lang', ''); - $title = io_safe_input(get_parameter('title', '')); - $text = io_safe_input(get_parameter('text', '')); - $url = io_safe_input(get_parameter('url', '')); + $title = get_parameter('title', ''); + $text = get_parameter('text', ''); + $url = get_parameter('url', ''); $enable = get_parameter_switch('enable', ''); $errors = []; @@ -68,24 +69,68 @@ if ($view === 'create') { $errors[] = __('Text is empty'); } - if (count($errors) === 0) { - if (count($files) > 0) { - $uploadImages = $tipsWindow->uploadImages($files); - } + switch ($action) { + case 'create': + if (count($errors) === 0) { + if (count($files) > 0) { + $uploadImages = $tipsWindow->uploadImages($files); + } - $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable, $uploadImages); + $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable, $uploadImages); - if ($response === 0) { - $errors[] = __('Error in insert tip'); - } + if ($response === 0) { + $errors[] = __('Error in insert tip'); + } + } + + $tipsWindow->viewCreate($errors); + return; + + case 'edit': + $idTip = get_parameter('idTip', ''); + if (empty($idTip) === false) { + if (count($errors) === 0) { + if (count($files) > 0) { + $uploadImages = $tipsWindow->uploadImages($files); + } + + $response = $tipsWindow->updateTip($idTip, $id_lang, $title, $text, $url, $enable, $uploadImages); + + if ($response === 0) { + $errors[] = __('Error in update tip'); + } + } + + $tipsWindow->viewEdit($idTip, $errors); + } + return; + + default: + $tipsWindow->draw(); + return; } - $tipsWindow->viewCreate($errors); - } else { - $tipsWindow->viewCreate(); + + return; } - return; + // If not exists actions + switch ($view) { + case 'create': + $tipsWindow->viewCreate(); + return; + + case 'edit': + $idTip = get_parameter('idTip', ''); + if (empty($idTip) === false) { + $tipsWindow->viewEdit($idTip); + } + return; + + default: + $tipsWindow->draw(); + return; + } } if ($action === 'delete') { @@ -104,6 +149,7 @@ if ($action === 'delete') { } $tipsWindow->draw($errors); -} else { - $tipsWindow->draw(); + return; } + +$tipsWindow->draw(); diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 79da5e84bc..b7a48e46d5 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -56,13 +56,6 @@ class TipsWindow */ public $ajaxController; - /** - * Array of tips - * - * @var array - */ - public $tips = []; - /** * Generates a JSON error. @@ -178,6 +171,23 @@ class TipsWindow } + public function getTipById($idTip) + { + $tip = db_get_row( + 'twelcome_tip', + 'id', + $idTip, + ); + if ($tip !== false) { + $tip['title'] = io_safe_output($tip['title']); + $tip['text'] = io_safe_output($tip['text']); + $tip['url'] = io_safe_output($tip['url']); + } + + return $tip; + } + + public function getRandomTip($return=false) { $exclude = get_parameter('exclude', ''); @@ -196,11 +206,14 @@ class TipsWindow $sql .= ' ORDER BY RAND()'; $tip = db_get_row_sql($sql); - $tip['files'] = $this->getFilesFromTip($tip['id']); - $tip['title'] = io_safe_output($tip['title']); - $tip['text'] = io_safe_output($tip['text']); - $tip['url'] = io_safe_output($tip['url']); + if (empty($tip) === false) { + $tip['files'] = $this->getFilesFromTip($tip['id']); + + $tip['title'] = io_safe_output($tip['title']); + $tip['text'] = io_safe_output($tip['text']); + $tip['url'] = io_safe_output($tip['url']); + } if ($return) { if (empty($tip) === false) { @@ -430,8 +443,17 @@ class TipsWindow $data[$key]['title'] = io_safe_output($row['title']); $data[$key]['text'] = io_safe_output($row['text']); $data[$key]['url'] = io_safe_output($row['url']); - - $data[$key]['actions'] = '
'; + $data[$key]['actions'] = '
'; + $data[$key]['actions'] .= ''; + $data[$key]['actions'] .= html_print_input_image( + 'button_edit_tip', + 'images/edit.png', + '', + '', + true + ); + $data[$key]['actions'] .= ''; + $data[$key]['actions'] .= ''; $data[$key]['actions'] .= html_print_input_image( 'button_delete_tip', 'images/delete.png', @@ -442,6 +464,7 @@ class TipsWindow ); $data[$key]['actions'] .= html_print_input_hidden('idTip', $row['id'], true); $data[$key]['actions'] .= ''; + $data[$key]['actions'] .= '
'; } if (empty($data) === true) { @@ -536,6 +559,111 @@ class TipsWindow } + public function viewEdit($idTip, $errors=null) + { + $tip = $this->getTipById($idTip); + if ($tip === false) { + return; + } + + $files = $this->getFilesFromTip($idTip); + + ui_require_javascript_file('tipsWindow'); + ui_require_css_file('tips_window'); + + if ($errors !== null) { + if (count($errors) > 0) { + foreach ($errors as $key => $value) { + ui_print_error_message($value); + } + } else { + ui_print_success_message(__('Tip edited')); + } + } + + $table = new stdClass(); + $table->width = '100%'; + $table->class = 'databox filters'; + + $table->style[0] = 'font-weight: bold'; + + $table->data = []; + $table->data[0][0] = __('Images'); + $table->data[0][1] = html_print_input_hidden('number_images', 0, true); + $table->data[0][1] .= html_print_div(['id' => 'inputs_images'], true); + $table->data[0][1] .= html_print_button(__('Add image'), 'button_add_image', false, '', '', true); + $table->data[1][0] = __('Language'); + $table->data[1][1] = html_print_select_from_sql( + 'SELECT id_language, name FROM tlanguage', + 'id_lang', + $tip['id_lang'], + '', + '', + '0', + true + ); + $table->data[2][0] = __('Title'); + $table->data[2][1] = html_print_input_text('title', $tip['title'], '', 35, 100, true); + $table->data[3][0] = __('Text'); + $table->data[3][1] = html_print_textarea('text', 5, 1, $tip['text'], '', true); + $table->data[4][0] = __('Url'); + $table->data[4][1] = html_print_input_text('url', $tip['url'], '', 35, 100, true); + $table->data[5][0] = __('Enable'); + $table->data[5][1] = html_print_checkbox_switch('enable', 1, ($tip['enable'] === '1') ? true : false, true); + + echo '
'; + html_print_table($table); + echo '
'; + html_print_submit_button(__('Send'), 'submit_button', false, ['class' => 'sub next']); + + echo '
'; + echo '
'; + } + + + public function updateTip($id, $id_lang, $title, $text, $url, $enable, $images=null) + { + db_process_sql_begin(); + hd($enable, true); + $idTip = db_process_sql_update( + 'twelcome_tip', + [ + 'id_lang' => $id_lang, + 'title' => io_safe_input($title), + 'text' => io_safe_input($text), + 'url' => io_safe_input($url), + 'enable' => $enable, + ], + ['id' => $id] + ); + if ($idTip === false) { + db_process_sql_rollback(); + return false; + } + + if ($images !== null) { + foreach ($images as $key => $image) { + $res = db_process_sql_insert( + 'twelcome_tip_file', + [ + 'twelcome_tip_file' => $idTip, + 'filename' => $image, + 'path' => 'images/tips/', + ] + ); + if ($res === false) { + db_process_sql_rollback(); + return false; + } + } + } + + db_process_sql_commit(); + + return true; + } + + public function createTip($id_lang, $title, $text, $url, $enable, $images=null) { db_process_sql_begin(); @@ -543,9 +671,9 @@ class TipsWindow 'twelcome_tip', [ 'id_lang' => $id_lang, - 'title' => $title, - 'text' => $text, - 'url' => $url, + 'title' => io_safe_input($title), + 'text' => io_safe_input($text), + 'url' => io_safe_input($url), 'enable' => $enable, ] ); diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index aa9a4f050b..db1c852bc0 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -179,3 +179,7 @@ span.disable { background-color: #e63c52; margin: 0 auto; } +.buttons_actions { + text-align: center; + display: flex; +} From c92c355a3eb16e50048af7635fb32b5cc45e78df Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 15:18:41 +0100 Subject: [PATCH 13/31] #9073 added uniqid in image --- pandora_console/include/class/TipsWindow.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index b7a48e46d5..4ff765e9b2 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -744,6 +744,7 @@ class TipsWindow $imagesOk = []; foreach ($files as $key => $file) { $name = str_replace(' ', '_', $file['name']); + $name = str_replace('.', uniqid().'.', $file['name']); $r = move_uploaded_file($file['tmp_name'], $dir.'/'.$name); $imagesOk[] = $name; } From 8ea9a0fc7eed0522e20da26d38b2db1e5c81fdf0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 16:41:14 +0100 Subject: [PATCH 14/31] #9073 added system system for edit images in edit tip --- .../godmode/setup/welcome_tips.php | 6 +++ .../include/class/TipsWindow.class.php | 48 +++++++++++++++++-- .../include/javascript/tipsWindow.js | 12 +++++ .../include/styles/tips_window.css | 7 +++ 4 files changed, 68 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index 531d47bf3a..c558404925 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -88,8 +88,14 @@ if ($view === 'create' || $view === 'edit') { case 'edit': $idTip = get_parameter('idTip', ''); + $imagesToDelete = get_parameter('images_to_delete', ''); if (empty($idTip) === false) { if (count($errors) === 0) { + if (empty($imagesToDelete) === false) { + $imagesToDelete = json_decode(io_safe_output($imagesToDelete), true); + $tipsWindow->deleteImagesFromTip($idTip, $imagesToDelete); + } + if (count($files) > 0) { $uploadImages = $tipsWindow->uploadImages($files); } diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 4ff765e9b2..93efe47a2a 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -251,13 +251,28 @@ class TipsWindow return false; } - $sql = sprintf('SELECT filename, path FROM twelcome_tip_file WHERE twelcome_tip_file = %s', $idTip); + $sql = sprintf('SELECT id, filename, path FROM twelcome_tip_file WHERE twelcome_tip_file = %s', $idTip); return db_get_all_rows_sql($sql); } + public function deleteImagesFromTip($idTip, $imagesToRemove) + { + foreach ($imagesToRemove as $id => $image) { + unlink($image); + db_process_sql_delete( + 'twelcome_tip_file', + [ + 'id' => $id, + 'twelcome_tip_file' => $idTip, + ] + ); + } + } + + public function setShowTipsAtStartup() { global $config; @@ -527,7 +542,6 @@ class TipsWindow $table->data = []; $table->data[0][0] = __('Images'); - $table->data[0][1] = html_print_input_hidden('number_images', 0, true); $table->data[0][1] .= html_print_div(['id' => 'inputs_images'], true); $table->data[0][1] .= html_print_button(__('Add image'), 'button_add_image', false, '', '', true); $table->data[1][0] = __('Language'); @@ -581,6 +595,29 @@ class TipsWindow } } + $outputImagesTip = ''; + if (empty($files) === false) { + foreach ($files as $key => $value) { + $namePath = $value['path'].$value['filename']; + $imageTip = html_print_image($namePath, true); + $imageTip .= html_print_input_image( + 'delete_image_tip', + 'images/delete.png', + '', + '', + true, + ['onclick' => 'deleteImage(this, \''.$value['id'].'\', \''.$namePath.'\')'] + ); + $outputImagesTip .= html_print_div( + [ + 'class' => 'image-tip', + 'content' => $imageTip, + ], + true + ); + } + } + $table = new stdClass(); $table->width = '100%'; $table->class = 'databox filters'; @@ -589,8 +626,9 @@ class TipsWindow $table->data = []; $table->data[0][0] = __('Images'); - $table->data[0][1] = html_print_input_hidden('number_images', 0, true); + $table->data[0][1] .= $outputImagesTip; $table->data[0][1] .= html_print_div(['id' => 'inputs_images'], true); + $table->data[0][1] .= html_print_input_hidden('images_to_delete', '{}', true); $table->data[0][1] .= html_print_button(__('Add image'), 'button_add_image', false, '', '', true); $table->data[1][0] = __('Language'); $table->data[1][1] = html_print_select_from_sql( @@ -744,8 +782,8 @@ class TipsWindow $imagesOk = []; foreach ($files as $key => $file) { $name = str_replace(' ', '_', $file['name']); - $name = str_replace('.', uniqid().'.', $file['name']); - $r = move_uploaded_file($file['tmp_name'], $dir.'/'.$name); + $name = str_replace('.', uniqid().'.', $name); + move_uploaded_file($file['tmp_name'], $dir.'/'.$name); $imagesOk[] = $name; } diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index 05b569abca..6794af3679 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -14,6 +14,9 @@ $(document).ready(function() { ); $("#inputs_images").append(div_image); }); + $("#image-delete_image_tip1").on("click", function(e) { + e.preventDefault(); + }); }); $(".carousel .images").ready(function() { activeCarousel(); @@ -38,6 +41,15 @@ $("#checkbox_tips_startup").ready(function() { }); }); }); + +function deleteImage(e, id, path) { + var imagesToDelete = JSON.parse($("#hidden-images_to_delete").val()); + imagesToDelete[id] = path; + $("#hidden-images_to_delete").val(JSON.stringify(imagesToDelete)); + $(e) + .parent() + .remove(); +} function activeCarousel() { if ($(".carousel .images img").length > 1) { $(".carousel .images").bxSlider({ controls: true }); diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index db1c852bc0..fec79aff69 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -183,3 +183,10 @@ span.disable { text-align: center; display: flex; } +.image-tip { + display: flex; + align-items: center; +} +.image-tip img { + max-width: 350px; +} From d8cfc68585fe903a2375ce0bd751eaa10b0a10f8 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 15 Feb 2023 17:51:30 +0100 Subject: [PATCH 15/31] #9073 order by language tips --- pandora_console/include/class/TipsWindow.class.php | 5 +++-- pandora_console/include/javascript/tipsWindow.js | 4 +--- pandora_console/include/styles/tips_window.css | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 93efe47a2a..b620745d62 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -190,6 +190,7 @@ class TipsWindow public function getRandomTip($return=false) { + global $config; $exclude = get_parameter('exclude', ''); $sql = 'SELECT id, title, text, url @@ -203,7 +204,7 @@ class TipsWindow } } - $sql .= ' ORDER BY RAND()'; + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; $tip = db_get_row_sql($sql); @@ -684,7 +685,7 @@ class TipsWindow $res = db_process_sql_insert( 'twelcome_tip_file', [ - 'twelcome_tip_file' => $idTip, + 'twelcome_tip_file' => $id, 'filename' => $image, 'path' => 'images/tips/', ] diff --git a/pandora_console/include/javascript/tipsWindow.js b/pandora_console/include/javascript/tipsWindow.js index 6794af3679..a3ddd03b95 100644 --- a/pandora_console/include/javascript/tipsWindow.js +++ b/pandora_console/include/javascript/tipsWindow.js @@ -18,9 +18,6 @@ $(document).ready(function() { e.preventDefault(); }); }); -$(".carousel .images").ready(function() { - activeCarousel(); -}); $("#checkbox_tips_startup").ready(function() { $("#checkbox_tips_startup").on("click", function() { @@ -263,6 +260,7 @@ function load_tips_modal(settings) { $(".dialog_tips .ui-dialog-titlebar").addClass("tips_header"); $(".dialog_tips .ui-dialog-titlebar").removeClass("ui-helper-clearfix"); render_counter(); + activeCarousel(); }, error: function(data) { console.error(data); diff --git a/pandora_console/include/styles/tips_window.css b/pandora_console/include/styles/tips_window.css index fec79aff69..36b21e9bb2 100644 --- a/pandora_console/include/styles/tips_window.css +++ b/pandora_console/include/styles/tips_window.css @@ -41,7 +41,6 @@ position: relative; width: 100%; max-width: 464px; - max-height: 290px; text-align: center; margin: 0 auto; padding-top: 20px; @@ -186,6 +185,7 @@ span.disable { .image-tip { display: flex; align-items: center; + margin: 10px 0px; } .image-tip img { max-width: 350px; From e0b75f98295f59c01c858a2d4990a23696a6bf75 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 16 Feb 2023 13:14:59 +0100 Subject: [PATCH 16/31] #9073 added system profiles in tips --- .../godmode/setup/welcome_tips.php | 5 +- .../include/class/TipsWindow.class.php | 96 ++++++++++++------- .../views/dashboard/tipsWindow.php | 2 +- 3 files changed, 68 insertions(+), 35 deletions(-) diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index c558404925..144a1a88cb 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -44,6 +44,7 @@ if ($view === 'create' || $view === 'edit') { if ($action === 'create' || $action === 'edit') { $files = $_FILES; $id_lang = get_parameter('id_lang', ''); + $id_profile = get_parameter('id_profile', ''); $title = get_parameter('title', ''); $text = get_parameter('text', ''); $url = get_parameter('url', ''); @@ -76,7 +77,7 @@ if ($view === 'create' || $view === 'edit') { $uploadImages = $tipsWindow->uploadImages($files); } - $response = $tipsWindow->createTip($id_lang, $title, $text, $url, $enable, $uploadImages); + $response = $tipsWindow->createTip($id_lang, $id_profile, $title, $text, $url, $enable, $uploadImages); if ($response === 0) { $errors[] = __('Error in insert tip'); @@ -100,7 +101,7 @@ if ($view === 'create' || $view === 'edit') { $uploadImages = $tipsWindow->uploadImages($files); } - $response = $tipsWindow->updateTip($idTip, $id_lang, $title, $text, $url, $enable, $uploadImages); + $response = $tipsWindow->updateTip($idTip, $id_profile, $id_lang, $title, $text, $url, $enable, $uploadImages); if ($response === 0) { $errors[] = __('Error in update tip'); diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index b620745d62..95a45c0a60 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -128,7 +128,7 @@ class TipsWindow ui_require_javascript_file('tipsWindow'); ui_require_javascript_file('jquery.bxslider.min'); echo '
'; - $totalTips = $this->getTotalTipsEnabled(); + $totalTips = $this->getTotalTipsShowUser(); if ($totalTips > 0) { ?> @@ -192,6 +192,11 @@ class TipsWindow { global $config; $exclude = get_parameter('exclude', ''); + $profilesUser = users_get_user_profile($config['id_user']); + $idProfilesFilter = '0'; + foreach ($profilesUser as $key => $profile) { + $idProfilesFilter .= ','.$profile['id_perfil']; + } $sql = 'SELECT id, title, text, url FROM twelcome_tip @@ -204,6 +209,8 @@ class TipsWindow } } + $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; $tip = db_get_row_sql($sql); @@ -240,9 +247,24 @@ class TipsWindow } - public function getTotalTipsEnabled() + public function getTotalTipsShowUser() { - return db_get_sql('SELECT count(*) FROM twelcome_tip WHERE enable = "1"'); + global $config; + $profilesUser = users_get_user_profile($config['id_user']); + $idProfilesFilter = '0'; + foreach ($profilesUser as $key => $profile) { + $idProfilesFilter .= ','.$profile['id_perfil']; + } + + $sql = 'SELECT count(*) + FROM twelcome_tip + WHERE enable = "1" '; + + $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); + + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; + + return db_get_sql($sql); } @@ -535,6 +557,8 @@ class TipsWindow } } + $profiles = profile_get_profiles(); + $table = new stdClass(); $table->width = '100%'; $table->class = 'databox filters'; @@ -555,14 +579,16 @@ class TipsWindow '0', true ); - $table->data[2][0] = __('Title'); - $table->data[2][1] = html_print_input_text('title', '', '', 35, 100, true); - $table->data[3][0] = __('Text'); - $table->data[3][1] = html_print_textarea('text', 5, 1, '', '', true); - $table->data[4][0] = __('Url'); - $table->data[4][1] = html_print_input_text('url', '', '', 35, 100, true); - $table->data[5][0] = __('Enable'); - $table->data[5][1] = html_print_checkbox_switch('enable', true, true, true); + $table->data[2][0] = __('Profile'); + $table->data[2][1] = html_print_select($profiles, 'id_profile', '0', '', __('All'), 0, true); + $table->data[3][0] = __('Title'); + $table->data[3][1] = html_print_input_text('title', '', '', 35, 100, true); + $table->data[4][0] = __('Text'); + $table->data[4][1] = html_print_textarea('text', 5, 1, '', '', true); + $table->data[5][0] = __('Url'); + $table->data[5][1] = html_print_input_text('url', '', '', 35, 100, true); + $table->data[6][0] = __('Enable'); + $table->data[6][1] = html_print_checkbox_switch('enable', true, true, true); echo '
'; html_print_table($table); @@ -619,6 +645,8 @@ class TipsWindow } } + $profiles = profile_get_profiles(); + $table = new stdClass(); $table->width = '100%'; $table->class = 'databox filters'; @@ -641,14 +669,16 @@ class TipsWindow '0', true ); - $table->data[2][0] = __('Title'); - $table->data[2][1] = html_print_input_text('title', $tip['title'], '', 35, 100, true); - $table->data[3][0] = __('Text'); - $table->data[3][1] = html_print_textarea('text', 5, 1, $tip['text'], '', true); - $table->data[4][0] = __('Url'); - $table->data[4][1] = html_print_input_text('url', $tip['url'], '', 35, 100, true); - $table->data[5][0] = __('Enable'); - $table->data[5][1] = html_print_checkbox_switch('enable', 1, ($tip['enable'] === '1') ? true : false, true); + $table->data[2][0] = __('Profile'); + $table->data[2][1] = html_print_select($profiles, 'id_profile', $tip['id_profile'], '', __('All'), 0, true); + $table->data[3][0] = __('Title'); + $table->data[3][1] = html_print_input_text('title', $tip['title'], '', 35, 100, true); + $table->data[4][0] = __('Text'); + $table->data[4][1] = html_print_textarea('text', 5, 1, $tip['text'], '', true); + $table->data[5][0] = __('Url'); + $table->data[5][1] = html_print_input_text('url', $tip['url'], '', 35, 100, true); + $table->data[6][0] = __('Enable'); + $table->data[6][1] = html_print_checkbox_switch('enable', 1, ($tip['enable'] === '1') ? true : false, true); echo ''; html_print_table($table); @@ -660,18 +690,19 @@ class TipsWindow } - public function updateTip($id, $id_lang, $title, $text, $url, $enable, $images=null) + public function updateTip($id, $id_profile, $id_lang, $title, $text, $url, $enable, $images=null) { db_process_sql_begin(); - hd($enable, true); + $idTip = db_process_sql_update( 'twelcome_tip', [ - 'id_lang' => $id_lang, - 'title' => io_safe_input($title), - 'text' => io_safe_input($text), - 'url' => io_safe_input($url), - 'enable' => $enable, + 'id_lang' => $id_lang, + 'id_profile' => (empty($id_profile) === false) ? $id_profile : 0, + 'title' => io_safe_input($title), + 'text' => io_safe_input($text), + 'url' => io_safe_input($url), + 'enable' => $enable, ], ['id' => $id] ); @@ -703,17 +734,18 @@ class TipsWindow } - public function createTip($id_lang, $title, $text, $url, $enable, $images=null) + public function createTip($id_lang, $id_profile, $title, $text, $url, $enable, $images=null) { db_process_sql_begin(); $idTip = db_process_sql_insert( 'twelcome_tip', [ - 'id_lang' => $id_lang, - 'title' => io_safe_input($title), - 'text' => io_safe_input($text), - 'url' => io_safe_input($url), - 'enable' => $enable, + 'id_lang' => $id_lang, + 'id_profile' => (empty($id_profile) === false) ? $id_profile : 0, + 'title' => io_safe_input($title), + 'text' => io_safe_input($text), + 'url' => io_safe_input($url), + 'enable' => $enable, ] ); if ($idTip === false) { diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 297c9cf890..3d6be39fd4 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -42,7 +42,7 @@ $output .= '

'.html_print_checkbox( 'checkbox_tips_startup' ).__('Show usage tips at startup').'

'; $output .= '
'; -$output .= '
'; +$output .= ''; -$output .= '