2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* File: CMSMain.EditForm.js
|
|
|
|
*/
|
2017-05-29 07:24:48 +02:00
|
|
|
import $ from 'jquery';
|
2016-01-31 21:39:10 +01:00
|
|
|
import i18n from 'i18n';
|
2019-08-16 05:25:21 +02:00
|
|
|
import reactConfirm from "@silverstripe/reactstrap-confirm";
|
2016-01-26 05:28:36 +01:00
|
|
|
|
|
|
|
$.entwine('ss', function($){
|
|
|
|
/**
|
|
|
|
* Class: .cms-edit-form :input[name=ClassName]
|
|
|
|
* Alert the user on change of page-type. This might have implications
|
|
|
|
* on the available form fields etc.
|
|
|
|
*/
|
2020-01-22 01:15:16 +01:00
|
|
|
$('.cms-edit-form :input#Form_EditForm_ClassName').entwine({
|
2016-01-26 05:28:36 +01:00
|
|
|
// Function: onchange
|
|
|
|
onchange: function() {
|
2017-04-24 04:47:00 +02:00
|
|
|
alert(i18n._t('CMS.ALERTCLASSNAME'));
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class: .cms-edit-form input[name=Title]
|
|
|
|
*
|
|
|
|
* Input validation on the Title field
|
|
|
|
*/
|
|
|
|
$('.cms-edit-form input[name=Title]').entwine({
|
|
|
|
// Constructor: onmatch
|
|
|
|
onmatch : function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
self.data('OrigVal', self.val());
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
var form = self.closest('form');
|
|
|
|
var urlSegmentInput = $('input:text[name=URLSegment]', form);
|
|
|
|
var liveLinkInput = $('input[name=LiveLink]', form);
|
|
|
|
|
|
|
|
if (urlSegmentInput.length > 0) {
|
|
|
|
self._addActions();
|
2022-11-21 05:11:42 +01:00
|
|
|
this.bind('change', function(e) {
|
2016-01-26 05:28:36 +01:00
|
|
|
var origTitle = self.data('OrigVal');
|
|
|
|
var title = self.val();
|
|
|
|
self.data('OrigVal', title);
|
|
|
|
|
|
|
|
// Criteria for defining a "new" page
|
|
|
|
if (
|
|
|
|
urlSegmentInput.val().indexOf(urlSegmentInput.data('defaultUrl')) === 0
|
|
|
|
&& liveLinkInput.val() == ''
|
|
|
|
) {
|
|
|
|
self.updateURLSegment(title);
|
|
|
|
} else {
|
2018-09-13 17:09:39 +02:00
|
|
|
$('.update', self.parent())
|
|
|
|
.show()
|
|
|
|
.parent('.form__field-holder')
|
|
|
|
.addClass('input-group');
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
self.updateRelatedFields(title, origTitle);
|
|
|
|
self.updateBreadcrumbLabel(title);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
|
|
|
},
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: updateRelatedFields
|
|
|
|
*
|
|
|
|
* Update the related fields if appropriate
|
|
|
|
* (String) title The new title
|
|
|
|
* (Stirng) origTitle The original title
|
|
|
|
*/
|
|
|
|
updateRelatedFields: function(title, origTitle) {
|
|
|
|
// Update these fields only if their value was originally the same as the title
|
|
|
|
this.parents('form').find('input[name=MetaTitle], input[name=MenuTitle]').each(function() {
|
|
|
|
var $this = $(this);
|
|
|
|
if($this.val() == origTitle) {
|
|
|
|
$this.val(title);
|
|
|
|
// Onchange bubbling didn't work in IE8, so .trigger('change') couldn't be used
|
|
|
|
if($this.updatedRelatedFields) $this.updatedRelatedFields();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: updateURLSegment
|
|
|
|
*
|
|
|
|
* Update the URLSegment
|
|
|
|
* (String) title
|
|
|
|
*/
|
|
|
|
updateURLSegment: function(title) {
|
|
|
|
var urlSegmentInput = $('input:text[name=URLSegment]', this.closest('form'));
|
|
|
|
var urlSegmentField = urlSegmentInput.closest('.field.urlsegment');
|
|
|
|
var updateURLFromTitle = $('.update', this.parent());
|
|
|
|
urlSegmentField.update(title);
|
|
|
|
if (updateURLFromTitle.is(':visible')) {
|
2018-09-13 17:09:39 +02:00
|
|
|
updateURLFromTitle
|
|
|
|
.hide()
|
|
|
|
.parent('.form__field-holder')
|
|
|
|
.removeClass('input-group');
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
},
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: updateBreadcrumbLabel
|
|
|
|
*
|
|
|
|
* Update the breadcrumb
|
|
|
|
* (String) title
|
|
|
|
*/
|
|
|
|
updateBreadcrumbLabel: function(title) {
|
|
|
|
var pageID = $('.cms-edit-form input[name=ID]').val();
|
|
|
|
var panelCrumb = $('span.cms-panel-link.crumb');
|
|
|
|
if (title && title != "") {
|
|
|
|
panelCrumb.text(title);
|
|
|
|
}
|
|
|
|
},
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: _addActions
|
|
|
|
*
|
|
|
|
* Utility to add update from title action
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
_addActions: function() {
|
|
|
|
var self = this;
|
|
|
|
var updateURLFromTitle;
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
// update button
|
|
|
|
updateURLFromTitle = $('<button />', {
|
2018-01-17 05:00:10 +01:00
|
|
|
'class': 'update btn btn-outline-secondary form__field-update-url',
|
2017-04-24 04:47:00 +02:00
|
|
|
'text': i18n._t('CMS.UpdateURL'),
|
2016-01-26 05:28:36 +01:00
|
|
|
'type': 'button',
|
|
|
|
'click': function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
self.updateURLSegment(self.val());
|
|
|
|
}
|
|
|
|
});
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
// insert elements
|
|
|
|
updateURLFromTitle.insertAfter(self);
|
|
|
|
updateURLFromTitle.hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class: .cms-edit-form .parentTypeSelector
|
|
|
|
*
|
|
|
|
* ParentID field combination - mostly toggling between
|
|
|
|
* the two radiobuttons and setting the hidden "ParentID" field
|
|
|
|
*/
|
|
|
|
$('.cms-edit-form .parentTypeSelector').entwine({
|
|
|
|
// Constructor: onmatch
|
|
|
|
onmatch : function() {
|
|
|
|
var self = this;
|
2022-11-21 05:11:42 +01:00
|
|
|
this.find(':input[name=ParentType]').bind('click', function(e) {self._toggleSelection(e);});
|
|
|
|
this.find('.TreeDropdownField').bind('change', function(e) {self._changeParentId(e);});
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
this._changeParentId();
|
|
|
|
this._toggleSelection();
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: _toggleSelection
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
_toggleSelection: function(e) {
|
2016-04-14 01:19:10 +02:00
|
|
|
var selected = this.find(':input[name=ParentType]:checked').val(),
|
|
|
|
holder = this.find('#Form_EditForm_ParentID_Holder');
|
2016-01-26 05:28:36 +01:00
|
|
|
// reset parent id if 'root' radiobutton is selected
|
|
|
|
if(selected == 'root') this.find(':input[name=ParentID]').val(0);
|
|
|
|
// otherwise use the old value
|
|
|
|
else this.find(':input[name=ParentID]').val(this.find('#Form_EditForm_ParentType_subpage').data('parentIdValue'));
|
|
|
|
// toggle tree dropdown based on selection
|
2016-04-14 01:19:10 +02:00
|
|
|
if(selected != 'root') {
|
|
|
|
holder.slideDown(400, function() {
|
|
|
|
$(this).css('overflow', 'visible');
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
holder.slideUp();
|
|
|
|
}
|
2016-01-26 05:28:36 +01:00
|
|
|
},
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: _changeParentId
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
_changeParentId: function(e) {
|
|
|
|
var value = this.find(':input[name=ParentID]').val();
|
|
|
|
// set a data attribute so we know what to use in _toggleSelection
|
|
|
|
this.find('#Form_EditForm_ParentType_subpage').data('parentIdValue', value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-04-16 07:33:08 +02:00
|
|
|
/**
|
|
|
|
* Class: .cms-edit-form .btn-toolbar #Form_EditForm_action_rollback
|
|
|
|
*
|
|
|
|
* A "rollback" to a specific version needs user confirmation.
|
|
|
|
*/
|
|
|
|
$('.cms-edit-form .btn-toolbar #Form_EditForm_action_doRollback, .cms-edit-form .btn-toolbar #Form_EditForm_action_rollback').entwine({
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function: onclick
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
onclick: function(e) {
|
|
|
|
// Skip if disabled
|
|
|
|
if (this.is(':disabled')) {
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
2016-01-26 05:28:36 +01:00
|
|
|
|
2018-04-16 07:33:08 +02:00
|
|
|
// Check if a version is selected
|
|
|
|
const version = this
|
|
|
|
.parents('form:first')
|
|
|
|
.find(':input[name=Version]')
|
|
|
|
.val();
|
|
|
|
|
|
|
|
// Assign message based on version
|
|
|
|
const message = version
|
|
|
|
? i18n.sprintf(
|
|
|
|
i18n._t(
|
|
|
|
'CMS.RollbackToVersion',
|
|
|
|
'Do you really want to roll back to version #%s of this page?'
|
|
|
|
),
|
|
|
|
version
|
|
|
|
)
|
|
|
|
: i18n._t(
|
|
|
|
'CMS.ConfirmRestoreFromLive',
|
|
|
|
'Are you sure you want to revert draft to when the page was last published?'
|
|
|
|
);
|
|
|
|
|
|
|
|
// Skip if cancelled
|
|
|
|
if(!confirm(message)) {
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
2018-02-07 03:52:24 +01:00
|
|
|
}
|
2018-04-16 07:33:08 +02:00
|
|
|
|
2018-12-07 17:44:02 +01:00
|
|
|
// Add a loading indicator and continue
|
|
|
|
this.parents('form:first').addClass('loading');
|
2018-04-16 07:33:08 +02:00
|
|
|
return this._super(e);
|
|
|
|
}
|
|
|
|
});
|
2016-01-26 05:28:36 +01:00
|
|
|
|
|
|
|
/**
|
2016-05-23 03:50:12 +02:00
|
|
|
* Class: .cms-edit-form .btn-toolbar #Form_EditForm_action_archive
|
2016-01-26 05:28:36 +01:00
|
|
|
*
|
|
|
|
* Informing the user about the archive action while requiring confirmation
|
|
|
|
*/
|
2019-08-16 05:25:21 +02:00
|
|
|
$('.cms-edit-form .btn-toolbar #Form_EditForm_action_archive:not(.homepage-warning)').entwine({
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: onclick
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
onclick: function(e) {
|
2017-03-31 05:34:42 +02:00
|
|
|
var form = this.parents('form:first'), message = '';
|
2017-04-05 05:14:12 +02:00
|
|
|
message = form.find('input[name=ArchiveWarningMessage]')
|
2017-03-31 05:34:42 +02:00
|
|
|
.val()
|
|
|
|
.replace(/\\n/g, '\n');
|
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
if(confirm(message)) {
|
2018-12-07 17:44:02 +01:00
|
|
|
// Add a loading indicator and continue
|
|
|
|
this.parents('form:first').addClass('loading');
|
2016-01-26 05:28:36 +01:00
|
|
|
return this._super(e);
|
|
|
|
}
|
2018-12-07 17:44:02 +01:00
|
|
|
return false;
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2016-05-23 03:50:12 +02:00
|
|
|
* Class: .cms-edit-form .btn-toolbar #Form_EditForm_action_restore
|
2016-01-26 05:28:36 +01:00
|
|
|
*
|
|
|
|
* Informing the user about the archive action while requiring confirmation
|
|
|
|
*/
|
2016-05-23 03:50:12 +02:00
|
|
|
$('.cms-edit-form .btn-toolbar #Form_EditForm_action_restore').entwine({
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: onclick
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
onclick: function(e) {
|
|
|
|
var form = this.parents('form:first'),
|
|
|
|
version = form.find(':input[name=Version]').val(),
|
|
|
|
message = '',
|
|
|
|
toRoot = this.data('toRoot');
|
|
|
|
message = i18n.sprintf(
|
2017-04-24 04:47:00 +02:00
|
|
|
i18n._t(toRoot ? 'CMS.RestoreToRoot' : 'CMS.Restore'),
|
2016-01-26 05:28:36 +01:00
|
|
|
version
|
|
|
|
);
|
|
|
|
if(confirm(message)) {
|
2018-12-07 17:44:02 +01:00
|
|
|
// Add a loading indicator and continue
|
|
|
|
this.parents('form:first').addClass('loading');
|
2016-01-26 05:28:36 +01:00
|
|
|
return this._super(e);
|
|
|
|
}
|
2018-12-07 17:44:02 +01:00
|
|
|
return false;
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
2016-05-23 03:50:12 +02:00
|
|
|
* Class: .cms-edit-form .btn-toolbar #Form_EditForm_action_unpublish
|
2016-01-26 05:28:36 +01:00
|
|
|
* Informing the user about the unpublish action while requiring confirmation
|
|
|
|
*/
|
2019-08-16 05:25:21 +02:00
|
|
|
$('.cms-edit-form .btn-toolbar #Form_EditForm_action_unpublish:not(.homepage-warning)').entwine({
|
2016-04-14 01:19:10 +02:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Function: onclick
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* (Event) e
|
|
|
|
*/
|
|
|
|
onclick: function(e) {
|
|
|
|
var form = this.parents('form:first'), version = form.find(':input[name=Version]').val(), message = '';
|
|
|
|
message = i18n.sprintf(
|
2017-04-24 04:47:00 +02:00
|
|
|
i18n._t('CMS.Unpublish'),
|
2016-01-26 05:28:36 +01:00
|
|
|
version
|
|
|
|
);
|
|
|
|
if(confirm(message)) {
|
2018-12-07 17:44:02 +01:00
|
|
|
// Add a loading indicator and continue
|
|
|
|
this.parents('form:first').addClass('loading');
|
2016-01-26 05:28:36 +01:00
|
|
|
return this._super(e);
|
|
|
|
}
|
2018-12-07 17:44:02 +01:00
|
|
|
return false;
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable save buttons upon detecting changes to content.
|
|
|
|
* "changed" class is added by jQuery.changetracker.
|
|
|
|
*/
|
2016-12-19 22:03:50 +01:00
|
|
|
$('.cms-edit-form.changed').entwine({
|
|
|
|
onmatch: function(e) {
|
2017-09-05 06:36:20 +02:00
|
|
|
// Update all buttons with alternate text
|
|
|
|
this.find('button[data-text-alternate]').each(function() {
|
|
|
|
const button = $(this);
|
|
|
|
const buttonTitle = button.find('.btn__title');
|
|
|
|
|
|
|
|
// Set alternate-text
|
|
|
|
const alternateText = button.data('textAlternate');
|
|
|
|
if (alternateText) {
|
|
|
|
button.data('textStandard', buttonTitle.text());
|
|
|
|
buttonTitle.text(alternateText);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extra classes can be declared explicitly (legacy)
|
|
|
|
const alternateClasses = button.data('btnAlternate');
|
|
|
|
if (alternateClasses) {
|
|
|
|
button.data('btnStandard', button.attr('class'));
|
|
|
|
button.attr('class', alternateClasses);
|
|
|
|
button
|
|
|
|
.removeClass('btn-outline-secondary')
|
|
|
|
.addClass('btn-primary');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extra classes can also be specified as add / remove
|
|
|
|
const alternateClassesAdd = button.data('btnAlternateAdd');
|
|
|
|
if (alternateClassesAdd) {
|
|
|
|
button.addClass(alternateClassesAdd);
|
|
|
|
}
|
|
|
|
const alternateClassesRemove = button.data('btnAlternateRemove');
|
|
|
|
if (alternateClassesRemove) {
|
|
|
|
button.removeClass(alternateClassesRemove);
|
|
|
|
}
|
|
|
|
});
|
2016-12-19 22:03:50 +01:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
this._super(e);
|
|
|
|
},
|
|
|
|
onunmatch: function(e) {
|
2017-09-05 06:36:20 +02:00
|
|
|
this.find('button[data-text-alternate]').each(function() {
|
|
|
|
const button = $(this);
|
|
|
|
const buttonTitle = button.find('.btn__title');
|
|
|
|
|
|
|
|
// Revert extra classes
|
|
|
|
const standardText = button.data('textStandard');
|
|
|
|
if (standardText) {
|
|
|
|
buttonTitle.text(standardText);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extra classes can be declared explicitly (legacy)
|
|
|
|
const standardClasses = button.data('btnStandard');
|
|
|
|
if (standardClasses) {
|
|
|
|
button.attr('class', standardClasses);
|
|
|
|
button
|
|
|
|
.addClass('btn-outline-secondary')
|
|
|
|
.removeClass('btn-primary');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extra classes can also be specified as add / remove
|
|
|
|
// Note: Reverse of onMatch
|
|
|
|
const alternateClassesAdd = button.data('btnAlternateAdd');
|
|
|
|
if (alternateClassesAdd) {
|
|
|
|
button.removeClass(alternateClassesAdd);
|
|
|
|
}
|
|
|
|
const alternateClassesRemove = button.data('btnAlternateRemove');
|
|
|
|
if (alternateClassesRemove) {
|
|
|
|
button.addClass(alternateClassesRemove);
|
|
|
|
}
|
|
|
|
});
|
2016-12-19 22:03:50 +01:00
|
|
|
|
2016-01-26 05:28:36 +01:00
|
|
|
this._super(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-05-23 03:50:12 +02:00
|
|
|
$('.cms-edit-form .btn-toolbar button[name=action_publish]').entwine({
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Bind to ssui.button event to trigger stylistic changes.
|
|
|
|
*/
|
|
|
|
onbuttonafterrefreshalternate: function() {
|
2016-11-30 21:31:15 +01:00
|
|
|
if (this.data('showingAlternate')) {
|
|
|
|
this.addClass('btn-primary');
|
|
|
|
this.removeClass('btn-secondary');
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
else {
|
2016-11-30 21:31:15 +01:00
|
|
|
this.removeClass('btn-primary');
|
|
|
|
this.addClass('btn-secondary');
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-05-23 03:50:12 +02:00
|
|
|
$('.cms-edit-form .btn-toolbar button[name=action_save]').entwine({
|
2016-01-26 05:28:36 +01:00
|
|
|
/**
|
|
|
|
* Bind to ssui.button event to trigger stylistic changes.
|
|
|
|
*/
|
|
|
|
onbuttonafterrefreshalternate: function() {
|
2016-11-30 21:31:15 +01:00
|
|
|
if (this.data('showingAlternate')) {
|
|
|
|
this.addClass('btn-primary');
|
|
|
|
this.removeClass('btn-secondary');
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
else {
|
2016-11-30 21:31:15 +01:00
|
|
|
this.removeClass('btn-primary');
|
|
|
|
this.addClass('btn-secondary');
|
2016-01-26 05:28:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class: .cms-edit-form.CMSPageSettingsController input[name="ParentType"]:checked
|
|
|
|
*
|
|
|
|
* Showing the "Page location" "Parent page" chooser only when the "Sub-page underneath a parent page"
|
|
|
|
* radio button is selected
|
|
|
|
*/
|
|
|
|
$('.cms-edit-form.CMSPageSettingsController input[name="ParentType"]:checked').entwine({
|
|
|
|
onmatch: function() {
|
|
|
|
this.redraw();
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
onunmatch: function() {
|
|
|
|
this._super();
|
|
|
|
},
|
|
|
|
redraw: function() {
|
|
|
|
var treeField = $('.cms-edit-form.CMSPageSettingsController #Form_EditForm_ParentID_Holder');
|
|
|
|
if ($(this).attr('id') == 'Form_EditForm_ParentType_root') treeField.slideUp();
|
|
|
|
else treeField.slideDown();
|
|
|
|
},
|
|
|
|
onclick: function() {
|
|
|
|
this.redraw();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//trigger an initial change event to do the initial hiding of the element, if necessary
|
|
|
|
if ($('.cms-edit-form.CMSPageSettingsController input[name="ParentType"]:checked').attr('id') == 'Form_EditForm_ParentType_root') {
|
|
|
|
$('.cms-edit-form.CMSPageSettingsController #Form_EditForm_ParentID_Holder').hide(); //quick hide on first run
|
|
|
|
}
|
2019-08-16 05:25:21 +02:00
|
|
|
|
|
|
|
var confirmed = false;
|
|
|
|
/**
|
|
|
|
* Warn the user not to remove the homepage
|
|
|
|
*/
|
|
|
|
$('.cms-edit-form .btn-toolbar #Form_EditForm_action_unpublish.homepage-warning,' +
|
|
|
|
'.cms-edit-form .btn-toolbar #Form_EditForm_action_archive.homepage-warning,' +
|
|
|
|
'#Form_EditForm_URLSegment_Holder.homepage-warning .btn.update').entwine({
|
|
|
|
onclick: async function (e) {
|
|
|
|
if (confirmed) {
|
|
|
|
return this._super(e);
|
|
|
|
}
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
var message = i18n._t(
|
|
|
|
'CMS.RemoveHomePageWarningMessage',
|
|
|
|
'Warning: This page is the home page. ' +
|
|
|
|
'By changing the URL segment visitors will not be able to view it.'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (await reactConfirm(message, {
|
|
|
|
title: i18n._t(
|
|
|
|
'CMS.RemoveHomePageWarningTitle',
|
|
|
|
'Remove your home page?'
|
|
|
|
),
|
|
|
|
confirmLabel: i18n._t(
|
|
|
|
'CMS.RemoveHomePageWarningLabel',
|
|
|
|
'Remove'
|
|
|
|
),
|
|
|
|
confirmColor: 'danger'
|
|
|
|
})) {
|
|
|
|
// Add a loading indicator and continue
|
|
|
|
confirmed = true;
|
|
|
|
this.trigger('click');
|
|
|
|
confirmed = false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2016-01-26 05:28:36 +01:00
|
|
|
});
|