File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/siteorigin-panels-layout-block.js.tar
httpdocs/wp-content/plugins/sayfa-olusturucu/compat/js/siteorigin-panels-layout-block.js 0000644 00000035651 15154254617 0034266 0 ustar 00 var/www/vhosts/uyarreklam.com.tr "use strict";
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) {
function isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
if (Reflect.construct.sham) return false;
if (typeof Proxy === "function") return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function () {}));
return true;
} catch (e) {
return false;
}
}
return function () {
var Super = _getPrototypeOf(Derived),
result;
if (isNativeReflectConstruct()) {
var NewTarget = _getPrototypeOf(this).constructor;
result = Reflect.construct(Super, arguments, NewTarget);
} else {
result = Super.apply(this, arguments);
}
return _possibleConstructorReturn(this, result);
};
}
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
var SiteOriginPanelsLayoutBlock =
/*#__PURE__*/
function (_wp$element$Component) {
_inherits(SiteOriginPanelsLayoutBlock, _wp$element$Component);
var _super = _createSuper(SiteOriginPanelsLayoutBlock);
function SiteOriginPanelsLayoutBlock(props) {
var _this;
_classCallCheck(this, SiteOriginPanelsLayoutBlock);
_this = _super.call(this, props);
var editMode = window.soPanelsBlockEditorAdmin.defaultMode === 'edit' || lodash.isEmpty(props.panelsData);
_this.state = {
editing: editMode,
loadingPreview: !editMode,
previewHtml: '',
previewInitialized: !editMode
};
_this.panelsContainer = wp.element.createRef();
_this.previewContainer = wp.element.createRef();
_this.panelsInitialized = false;
return _this;
}
_createClass(SiteOriginPanelsLayoutBlock, [{
key: "componentDidMount",
value: function componentDidMount() {
this.isStillMounted = true;
if (this.state.editing) {
this.setupPanels();
} else if (!this.state.editing && !this.previewInitialized) {
this.fetchPreview(this.props);
this.fetchPreview = lodash.debounce(this.fetchPreview, 500);
}
}
}, {
key: "componentWillUnmount",
value: function componentWillUnmount() {
this.isStillMounted = false;
if (this.builderView) {
this.builderView.off('content_change');
}
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate(prevProps) {
if (this.state.editing && !this.panelsInitialized) {
this.setupPanels();
} else if (this.state.loadingPreview) {
this.fetchPreview(this.props);
this.fetchPreview = lodash.debounce(this.fetchPreview, 500);
} else if (!this.state.previewInitialized) {
jQuery(document).trigger('panels_setup_preview');
this.setState({
previewInitialized: true
});
}
}
}, {
key: "setupPanels",
value: function setupPanels() {
var _this2 = this;
var $panelsContainer = jQuery(this.panelsContainer.current);
var config = {
editorType: 'standalone',
loadLiveEditor: false,
postId: window.soPanelsBlockEditorAdmin.postId,
liveEditorPreview: window.soPanelsBlockEditorAdmin.liveEditor
};
var builderModel = new panels.model.builder();
this.builderView = new panels.view.builder({
model: builderModel,
config: config
}); // Make sure panelsData is defined and clone so that we don't alter the underlying attribute.
var panelsData = JSON.parse(JSON.stringify(jQuery.extend({}, this.props.panelsData))); // Disable block selection while dragging rows or widgets.
var rowOrWidgetMouseDown = function rowOrWidgetMouseDown() {
if (lodash.isFunction(_this2.props.onRowOrWidgetMouseDown)) {
_this2.props.onRowOrWidgetMouseDown();
}
var rowOrWidgetMouseUp = function rowOrWidgetMouseUp() {
jQuery(document).off('mouseup', rowOrWidgetMouseUp);
if (lodash.isFunction(_this2.props.onRowOrWidgetMouseUp)) {
_this2.props.onRowOrWidgetMouseUp();
}
};
jQuery(document).on('mouseup', rowOrWidgetMouseUp);
};
this.builderView.on('row_added', function () {
_this2.builderView.$('.so-row-move').off('mousedown', rowOrWidgetMouseDown);
_this2.builderView.$('.so-row-move').on('mousedown', rowOrWidgetMouseDown);
_this2.builderView.$('.so-widget').off('mousedown', rowOrWidgetMouseDown);
_this2.builderView.$('.so-widget').on('mousedown', rowOrWidgetMouseDown);
});
this.builderView.on('widget_added', function () {
_this2.builderView.$('.so-widget').off('mousedown', rowOrWidgetMouseDown);
_this2.builderView.$('.so-widget').on('mousedown', rowOrWidgetMouseDown);
});
this.builderView.render().attach({
container: $panelsContainer
}).setData(panelsData);
this.builderView.trigger('builder_resize');
this.builderView.on('content_change', function () {
var newPanelsData = _this2.builderView.getData();
_this2.panelsDataChanged = !lodash.isEqual(panelsData, newPanelsData);
if (_this2.panelsDataChanged) {
if (_this2.props.onContentChange && lodash.isFunction(_this2.props.onContentChange)) {
_this2.props.onContentChange(newPanelsData);
}
_this2.setState({
loadingPreview: true,
previewHtml: ''
});
}
});
jQuery(document).trigger('panels_setup', this.builderView);
if (typeof window.soPanelsBuilderView == 'undefined') {
window.soPanelsBuilderView = [];
}
window.soPanelsBuilderView.push(this.builderView);
this.panelsInitialized = true;
}
}, {
key: "fetchPreview",
value: function fetchPreview(props) {
var _this3 = this;
if (!this.isStillMounted) {
return;
}
this.setState({
previewInitialized: false
});
var fetchRequest = this.currentFetchRequest = jQuery.post({
url: window.soPanelsBlockEditorAdmin.previewUrl,
data: {
action: 'so_panels_layout_block_preview',
panelsData: JSON.stringify(props.panelsData)
}
}).then(function (preview) {
if (_this3.isStillMounted && fetchRequest === _this3.currentFetchRequest && preview) {
_this3.setState({
previewHtml: preview,
loadingPreview: false,
previewInitialized: false
});
}
});
return fetchRequest;
}
}, {
key: "render",
value: function render() {
var _this4 = this;
var panelsData = this.props.panelsData;
var switchToEditing = function switchToEditing() {
_this4.panelsInitialized = false;
_this4.setState({
editing: true
});
};
var switchToPreview = function switchToPreview() {
if (panelsData) {
_this4.setState({
editing: false,
loadingPreview: !_this4.state.previewHtml,
previewInitialized: false
});
}
};
if (this.state.editing) {
return React.createElement(wp.element.Fragment, null, React.createElement(wp.blockEditor.BlockControls, null, React.createElement(wp.components.Toolbar, {
label: wp.i18n.__('Page Builder Mode.', 'siteorigin-panels')
}, React.createElement(wp.components.ToolbarButton, {
icon: "visibility",
className: "components-icon-button components-toolbar__control",
label: wp.i18n.__('Preview layout.', 'siteorigin-panels'),
onClick: switchToPreview
}))), React.createElement("div", {
key: "layout-block",
className: "siteorigin-panels-layout-block-container",
ref: this.panelsContainer
}));
} else {
var loadingPreview = this.state.loadingPreview;
return React.createElement(wp.element.Fragment, null, React.createElement(wp.blockEditor.BlockControls, null, React.createElement(wp.components.Toolbar, {
label: wp.i18n.__('Page Builder Mode.', 'siteorigin-panels')
}, React.createElement(wp.components.ToolbarButton, {
icon: "edit",
className: "components-icon-button components-toolbar__control",
label: wp.i18n.__('Edit layout.', 'siteorigin-panels'),
onClick: switchToEditing
}))), React.createElement("div", {
key: "preview",
className: "so-panels-block-layout-preview-container"
}, loadingPreview ? React.createElement("div", {
className: "so-panels-spinner-container"
}, React.createElement("span", null, React.createElement(wp.components.Spinner, null))) : React.createElement("div", {
className: "so-panels-raw-html-container",
ref: this.previewContainer
}, React.createElement(wp.element.RawHTML, null, this.state.previewHtml))));
}
}
}]);
return SiteOriginPanelsLayoutBlock;
}(wp.element.Component);
var hasLayoutCategory = wp.blocks.getCategories().some(function (category) {
return category.slug === 'layout';
});
wp.blocks.registerBlockType('siteorigin-panels/layout-block', {
title: wp.i18n.__('SiteOrigin Layout', 'siteorigin-panels'),
description: wp.i18n.__("Build a layout using SiteOrigin's Page Builder.", 'siteorigin-panels'),
icon: function icon() {
return React.createElement("span", {
className: "siteorigin-panels-block-icon"
});
},
category: hasLayoutCategory ? 'layout' : 'design',
keywords: ['page builder', 'column,grid', 'panel'],
supports: {
html: false
},
attributes: {
panelsData: {
type: 'object'
},
contentPreview: {
type: 'string'
}
},
edit: function edit(_ref) {
var attributes = _ref.attributes,
setAttributes = _ref.setAttributes,
toggleSelection = _ref.toggleSelection;
var onLayoutBlockContentChange = function onLayoutBlockContentChange(newPanelsData) {
if (!lodash.isEmpty(newPanelsData.widgets)) {
// Send panelsData to server for sanitization.
wp.data.dispatch('core/editor').lockPostSaving();
jQuery.post(panelsOptions.ajaxurl, {
action: 'so_panels_builder_content_json',
panels_data: JSON.stringify(newPanelsData),
post_id: wp.data.select("core/editor").getCurrentPostId()
}, function (content) {
var panelsAttributes = {};
if (content.sanitized_panels_data !== '') {
panelsAttributes.panelsData = content.sanitized_panels_data;
}
if (content.preview !== '') {
panelsAttributes.contentPreview = content.preview;
}
setAttributes(panelsAttributes);
wp.data.dispatch('core/editor').unlockPostSaving();
});
}
};
var disableSelection = function disableSelection() {
toggleSelection(false);
};
var enableSelection = function enableSelection() {
toggleSelection(true);
};
return React.createElement(SiteOriginPanelsLayoutBlock, {
panelsData: attributes.panelsData,
onContentChange: onLayoutBlockContentChange,
onRowOrWidgetMouseDown: disableSelection,
onRowOrWidgetMouseUp: enableSelection
});
},
save: function save(_ref2) {
var attributes = _ref2.attributes;
return attributes.hasOwnProperty('contentPreview') ? React.createElement(wp.element.RawHTML, null, attributes.contentPreview) : null;
}
});
(function (jQuery) {
if (window.soPanelsBlockEditorAdmin.showAddButton) {
jQuery(function () {
setTimeout(function () {
var editorDispatch = wp.data.dispatch('core/editor');
var editorSelect = wp.data.select('core/editor');
var tmpl = jQuery('#siteorigin-panels-add-layout-block-button').html();
var $addButton = jQuery(tmpl).insertAfter('.editor-writing-flow > div:first, .block-editor-writing-flow > div:not([tabindex])');
$addButton.on('click', function () {
var layoutBlock = wp.blocks.createBlock('siteorigin-panels/layout-block', {});
var isEmpty = editorSelect.isEditedPostEmpty();
if (isEmpty) {
var blocks = editorSelect.getBlocks();
if (blocks.length) {
editorDispatch.replaceBlock(blocks[0].clientId, layoutBlock);
} else {
editorDispatch.insertBlock(layoutBlock);
}
} else {
editorDispatch.insertBlock(layoutBlock);
}
});
var hideButtonIfBlocks = function hideButtonIfBlocks() {
var isEmpty = wp.data.select('core/editor').isEditedPostEmpty();
if (isEmpty) {
$addButton.show();
} else {
$addButton.hide();
}
};
wp.data.subscribe(hideButtonIfBlocks);
hideButtonIfBlocks();
}, 100);
});
}
})(jQuery); // Detect preview mode changes, and trigger resize.
jQuery(document).on('click', '.block-editor-post-preview__button-resize', function (e) {
if (!jQuery(this).hasClass('has-icon')) {
jQuery(window).trigger('resize');
}
});