Submit
Path:
~
/
home
/
getwphos
/
public_html
/
milceticarch
/
wp-content
/
plugins
/
image-map-pro
/
submodules
/
squares
/
js
/
File Content:
squares-elements-wp.js
// Squares // Description: Interactive and embeddable HTML content builder. // Author: Nikolay Dyankov // License: MIT ;(function ($, window, document, undefined) { // Register built-in elements using the public API var paragraphElementOptions = { name: "Paragraph", iconClass: "fa fa-paragraph", controls: { text: { text: { name: 'Text', type: 'textarea', default: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit.' } } }, controlGroupIcons: { text: 'fa fa-ellipsis-h' }, // Obsolete with the "render" function. // To be removed after squares.js is reworked to use the "render" function. content: function() { var text = this.controls.text.text.getVal(); // Strip slashes text = text.replace(/\\(.)/mg, "$1"); // Replace line breaks with <br> text = text.replace(/\n/mg, "<br>"); return '<p id="'+ this.controls.general.id.getVal() +'" style="'+ this.controls.general.css.getVal() + this.fontStyles +' margin: 0; padding: 0;" class="'+ this.controls.general.classes.getVal() +'">'+ text +'</p>'; }, render: function(options) { var text = options.text.text; // Strip slashes text = text.replace(/\\(.)/mg, "$1"); // Replace line breaks with <br> text = text.replace(/\n/mg, "<br>"); return '<p id="'+ options.general.id +'" style="'+ options.general.css + options.fontStyles +' margin: 0; padding: 0;" class="'+ options.general.classes +'">'+ text +'</p>'; } }; if ($.squaresRegisterElement) { $.squaresRegisterElement(paragraphElementOptions); } $.squaresRendererRegisterElement(paragraphElementOptions); var headingElementOptions = { name: "Heading", iconClass: "fa fa-header", controls: { heading: { text: { name: 'Text', type: 'text', default: 'Lorem Ipsum' }, heading: { name: 'Heading', type: 'select', options: ['h1', 'h2', 'h3'], default: 'h3' } } }, controlGroupIcons: { heading: 'fa fa-header' }, // Obsolete with the "render" function. // To be removed after squares.js is reworked to use the "render" function. content: function() { return '<'+ this.controls['heading']['heading'].getVal() +' id="'+ this.controls['general']['id'].getVal() +'" style="'+ this.controls['general']['css'].getVal() + this.fontStyles +' margin: 0; padding: 0;" class="'+ this.controls['general']['classes'].getVal() +'">'+ this.controls.heading.text.getVal() +'</'+ this.controls['heading']['heading'].getVal() +'>'; }, render: function(options) { return '<'+ options['heading']['heading'] +' id="'+ options['general']['id'] +'" style="'+ options['general']['css'] + options.fontStyles +' margin: 0; padding: 0;" class="'+ options['general']['classes'] +'">'+ options.heading.text +'</'+ options['heading']['heading'] +'>'; } }; if ($.squaresRegisterElement) { $.squaresRegisterElement(headingElementOptions); } $.squaresRendererRegisterElement(headingElementOptions); var imageElementSettings = { name: "Image", iconClass: "fa fa-camera", controls: { image: { url: { name: 'Image URL', type: 'wp media upload', default: 'https://webcraftplugins.com/uploads/placeholder_image.png' }, image_is_a_link: { name: 'Image is a Link', type: 'switch', default: 0 }, link_to: { name: 'Link to', type: 'text', default: '#' } } }, controlGroupIcons: { image: 'fa fa-camera' }, useFontControls: false, // Obsolete with the "render" function. // To be removed after squares.js is reworked to use the "render" function. content: function() { var html = ''; if (parseInt(this.controls.image.image_is_a_link.getVal(), 10) == 1) { html += '<a href="'+ this.controls.image.link_to.getVal() +'">'; } html += '<img src="'+ this.controls.image.url.getVal() +'" id="'+ this.controls.general.id.getVal() +'" style="'+ this.controls.general.css.getVal() +'" class="'+ this.controls.general.classes.getVal() +'">'; if (parseInt(this.controls.image.image_is_a_link.getVal(), 10) == 1) { html += '</a>'; } return html; }, render: function(options) { var html = ''; if (parseInt(options.image.image_is_a_link, 10) == 1) { html += '<a href="'+ options.image.link_to +'">'; } html += '<img src="'+ options.image.url +'" id="'+ options.general.id +'" style="'+ options.general.css +'" class="'+ options.general.classes +'">'; if (parseInt(options.image.image_is_a_link, 10) == 1) { html += '</a>'; } return html; } }; if ($.squaresRegisterElement) { $.squaresRegisterElement(imageElementSettings); } $.squaresRendererRegisterElement(imageElementSettings); var videoElementSettings = { name: "Video", iconClass: "fa fa-video-camera", controls: { video: { mp4_url: { name: 'MP4 URL', type: 'text', default: 'http://webcraftplugins.com/uploads/example_video.mp4' }, webm_url: { name: 'WEBM URL', type: 'text', default: 'http://webcraftplugins.com/uploads/example_video.webm' }, ogv_url: { name: 'OGV URL', type: 'text', default: 'http://webcraftplugins.com/uploads/example_video.ogv' }, video_is_a_link: { name: 'Video is a Link', type: 'switch', default: 0 }, link_to: { name: 'Link to', type: 'text', default: '#' }, autoplay: { name: 'Autoplay', type: 'switch', default: 0 }, loop: { name: 'Loop', type: 'switch', default: 0 }, controls: { name: 'Controls', type: 'switch', default: 0 } } }, useFontControls: false, controlGroupIcons: { video: 'fa fa-video-camera' }, // Obsolete with the "render" function. // To be removed after squares.js is reworked to use the "render" function. content: function() { var html = ''; if (parseInt(this.controls.video.video_is_a_link.getVal(), 10) == 1) { html += '<a href="'+ this.controls.video.link_to.getVal() +'">'; } var videoTagAtts = ''; if (parseInt(this.controls.video.autoplay.getVal(), 10) == 1) { videoTagAtts += ' autoplay '; } if (parseInt(this.controls.video.loop.getVal(), 10) == 1) { videoTagAtts += ' loop '; } if (parseInt(this.controls.video.controls.getVal(), 10) == 1) { videoTagAtts += ' controls '; } html += '<video '+ videoTagAtts +' id="'+ this.controls.general.id.getVal() +'" style="'+ this.controls.general.css.getVal() +'" class="'+ this.controls.general.classes.getVal() +'"><source src="'+ this.controls.video.mp4_url.getVal() +'" type="video/mp4"><source src="'+ this.controls.video.webm_url.getVal() +'" type="video/webm"><source src="'+ this.controls.video.ogv_url.getVal() +'" type="video/ogv"></video>'; if (parseInt(this.controls.video.video_is_a_link.getVal(), 10) == 1) { html += '</a>'; } return html; }, render: function(options) { var html = ''; if (parseInt(options.video.video_is_a_link, 10) == 1) { html += '<a href="'+ options.video.link_to +'">'; } var videoTagAtts = ''; if (parseInt(options.video.autoplay, 10) == 1) { videoTagAtts += ' autoplay '; } if (parseInt(options.video.loop, 10) == 1) { videoTagAtts += ' loop '; } if (parseInt(options.video.controls, 10) == 1) { videoTagAtts += ' controls '; } html += '<video '+ videoTagAtts +' id="'+ options.general.id +'" style="'+ options.general.css +'" class="'+ options.general.classes +'"><source src="'+ options.video.mp4_url +'" type="video/mp4"><source src="'+ options.video.webm_url +'" type="video/webm"><source src="'+ options.video.ogv_url +'" type="video/ogv"></video>'; if (parseInt(options.video.video_is_a_link, 10) == 1) { html += '</a>'; } return html; } }; if ($.squaresRegisterElement) { $.squaresRegisterElement(videoElementSettings); } $.squaresRendererRegisterElement(videoElementSettings); var youtubeElementSettings = { name: "YouTube", iconClass: "fa fa-youtube", useStyleControls: false, useFontControls: false, controls: { youtube: { embed_code: { name: 'Embed Code', type: 'textarea', default: '<iframe width="560" height="315" src="https://www.youtube.com/embed/6NC_ODHu5jg" frameborder="0" allowfullscreen></iframe>' }, allow_fullscreen: { name: 'Allow Fullscreen', type: 'switch', default: 1 }, iframe_width: { name: 'iframe Width', type: 'int', default: 320 }, iframe_auto_width: { name: 'iframe Auto Width', type: 'switch', default: 1 }, iframe_height: { name: 'iframe Height', type: 'int', default: 320 } } }, controlGroupIcons: { youtube: 'fa fa-youtube' }, // Obsolete with the "render" function. // To be removed after squares.js is reworked to use the "render" function. content: function() { // to do: // get the embed code from the controls, wrap it in a div, apply ID, CSS and classes to the DIV and set the iframe to 100% width and height // also implement the "allow fullscreen" option var embedCode = this.controls.youtube.embed_code.getVal(); var html = ''; html += '<div id="'+ this.controls.general.id.getVal() +'" style="'+ this.controls.general.css.getVal() +'" class="'+ this.controls.general.classes.getVal() +'">'; // Allow fullscreen embedCode = embedCode.replace('allowfullscreen', ''); if (parseInt(this.controls.youtube.allow_fullscreen.getVal(), 10) == 1 && embedCode.indexOf('allowfullscreen') == -1) { embedCode = embedCode.replace('></iframe>', ' allowfullscreen></iframe>'); } // Set width if (parseInt(this.controls.youtube.iframe_auto_width.getVal(), 10) == 1) { embedCode = embedCode.replace(/width="\d+"/g, 'width="100%"'); } else { embedCode = embedCode.replace(/width="\d+"/g, 'width="'+ this.controls.youtube.iframe_width.getVal() +'px"'); } // Set height embedCode = embedCode.replace(/height="\d+"/g, 'height="'+ this.controls.youtube.iframe_height.getVal() +'px"'); html += embedCode; html += '</div>'; return html; }, render: function(options) { // to do: // get the embed code from the controls, wrap it in a div, apply ID, CSS and classes to the DIV and set the iframe to 100% width and height // also implement the "allow fullscreen" option var embedCode = options.youtube.embed_code; var html = ''; html += '<div id="'+ options.general.id +'" style="'+ options.general.css +'" class="'+ options.general.classes +'">'; // Allow fullscreen embedCode = embedCode.replace('allowfullscreen', ''); if (parseInt(options.youtube.allow_fullscreen, 10) == 1 && embedCode.indexOf('allowfullscreen') == -1) { embedCode = embedCode.replace('></iframe>', ' allowfullscreen></iframe>'); } // Set width if (parseInt(options.youtube.iframe_auto_width, 10) == 1) { embedCode = embedCode.replace(/width="\d+"/g, 'width="100%"'); } else { embedCode = embedCode.replace(/width="\d+"/g, 'width="'+ options.youtube.iframe_width +'px"'); } // Set height embedCode = embedCode.replace(/height="\d+"/g, 'height="'+ options.youtube.iframe_height +'px"'); html += embedCode; html += '</div>'; return html; } }; if ($.squaresRegisterElement) { $.squaresRegisterElement(youtubeElementSettings); } $.squaresRendererRegisterElement(youtubeElementSettings); var buttonElementSettings = { name: "Button", iconClass: "fa fa-link", controls: { button: { text: { name: 'Text', type: 'text', default: 'Button' }, link_to: { name: 'Link to', type: 'text', default: '#' }, new_tab: { name: 'Open in New Tab', type: 'switch', default: 0 }, display: { name: 'Display', type: 'button group', options: ['inline-block', 'block'], default: 'inline-block' }, height: { name: 'Height', type: 'int', default: 44 }, bg_color: { name: 'Background Color', type: 'color', default: '#2196f3' }, text_color: { name: 'Text Color', type: 'color', default: '#ffffff' }, border_radius: { name: 'Border Radius', type: 'int', default: 10 }, padding: { name: 'Padding Left/Right', type: 'int', default: 20 }, } }, controlGroupIcons: { button: 'fa fa-link' }, // Obsolete with the "render" function. // To be removed after squares.js is reworked to use the "render" function. content: function() { var buttonStyle = ''; buttonStyle += 'display: ' + this.controls.button.display.getVal() + '; '; buttonStyle += 'height: ' + this.controls.button.height.getVal() + 'px; '; buttonStyle += 'line-height: ' + this.controls.button.height.getVal() + 'px; '; buttonStyle += 'background-color: ' + this.controls.button.bg_color.getVal() + '; '; buttonStyle += 'color: ' + this.controls.button.text_color.getVal() + '; '; buttonStyle += 'border-radius: ' + this.controls.button.border_radius.getVal() + 'px; '; buttonStyle += 'padding-left: ' + this.controls.button.padding.getVal() + 'px; '; buttonStyle += 'padding-right: ' + this.controls.button.padding.getVal() + 'px; '; var newTab = ''; if (parseInt(this.controls.button.new_tab.getVal(), 10) == 1) { newTab = 'target="_blank"'; } return '<div id="'+ this.controls.general.id.getVal() +'" style="'+ this.controls.general.css.getVal() +'" class="'+ this.controls.general.classes.getVal() +'"><a href="'+ this.controls.button.link_to.getVal() +'" style="'+ buttonStyle +'" '+ newTab +' class="squares-button">'+ this.controls.button.text.getVal() +'</a></div>'; }, render: function(options) { var buttonStyle = ''; buttonStyle += 'display: ' + options.button.display + '; '; buttonStyle += 'height: ' + options.button.height + 'px; '; buttonStyle += 'line-height: ' + options.button.height + 'px; '; buttonStyle += 'background-color: ' + options.button.bg_color + '; '; buttonStyle += 'color: ' + options.button.text_color + '; '; buttonStyle += 'border-radius: ' + options.button.border_radius + 'px; '; buttonStyle += 'padding-left: ' + options.button.padding + 'px; '; buttonStyle += 'padding-right: ' + options.button.padding + 'px; '; var newTab = ''; if (parseInt(options.button.new_tab, 10) == 1) { newTab = 'target="_blank"'; } return '<div id="'+ options.general.id +'" style="'+ options.general.css +'" class="'+ options.general.classes +'"><a href="'+ options.button.link_to +'" style="'+ buttonStyle +'" '+ newTab +' class="squares-button">'+ options.button.text +'</a></div>'; } }; if ($.squaresRegisterElement) { $.squaresRegisterElement(buttonElementSettings); } $.squaresRendererRegisterElement(buttonElementSettings); })(jQuery, window, document);
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
squares-controls.js
34346 bytes
0644
squares-elements-jquery.js
19501 bytes
0644
squares-elements-wp.js
18628 bytes
0644
squares-renderer.js
9413 bytes
0644
squares.js
81858 bytes
0644
N4ST4R_ID | Naxtarrr