Skip to content
This repository was archived by the owner on May 3, 2022. It is now read-only.

Commit 8792449

Browse files
adamwojsandrerom
authored andcommitted
EZP-27914: As an Editor I want to remove permanently a language from a content item (#949)
* EZP-27914: As an Editor I want to remove permanently a language from a content item * fixup! EZP-27914: As an Editor I want to remove permanently a language from a content item
1 parent 9fd6ca9 commit 8792449

File tree

9 files changed

+168
-8
lines changed

9 files changed

+168
-8
lines changed

Resources/public/css/theme/views/actions/translate.css

+11
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,17 @@
5050
font-weight: bold;
5151
}
5252

53+
.ez-view-translateactionview .ez-contenttranslation-delete-link {
54+
color: #fff;
55+
background: #498FE1;
56+
border-radius: 0.5em;
57+
font-weight: bold;
58+
}
59+
60+
.ez-view-translateactionview .ez-contenttranslation-delete-link:before {
61+
content: "\E615"
62+
}
63+
5364
.ez-view-translateactionview .ez-newtranslation-button {
5465
background: #B8E986;
5566
color: #333333;

Resources/public/css/views/actions/translate.css

+7-2
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,21 @@
5959
padding: 1em 1.5em;
6060
}
6161

62-
.ez-view-translateactionview .ez-contenttranslation-edit-link {
62+
.ez-view-translateactionview .ez-contenttranslation-actions {
6363
display: none;
6464
position: absolute;
6565
z-index: 1;
6666
right: 1.5em;
6767
top: 0.9em;
6868
}
6969

70-
.ez-view-translateactionview .ez-contenttranslation:hover .ez-contenttranslation-edit-link {
70+
.ez-view-translateactionview .ez-contenttranslation:hover .ez-contenttranslation-actions {
7171
display: block;
72+
}
73+
74+
.ez-view-translateactionview .ez-contenttranslation-actions .ez-contenttranslation-edit-link,
75+
.ez-view-translateactionview .ez-contenttranslation-actions .ez-contenttranslation-delete-link {
76+
display: inline-block;
7277
padding: 0.1em 0.5em;
7378
}
7479

Resources/public/js/models/ez-contentmodel.js

+16
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,22 @@ YUI.add('ez-contentmodel', function (Y) {
464464
}
465465
contentService.deleteContent(this.get('id'), callback);
466466
},
467+
468+
/**
469+
* Removes translation
470+
*
471+
* @method removeTranslation
472+
* @param {Object} options
473+
* @param {Object} options.api (required) the JS REST client instance
474+
* @param {String} languageCode
475+
* @param {Function} callback
476+
*/
477+
removeTranslation: function (options, languageCode, callback) {
478+
var capi = options.api,
479+
contentService = capi.getContentService();
480+
481+
contentService.removeTranslation(this.get('id'), languageCode, callback);
482+
},
467483
}, {
468484
REST_STRUCT_ROOT: "Content",
469485
ATTRS_REST_MAP: [

Resources/public/js/views/actions/ez-translateactionview.js

+30-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ YUI.add('ez-translateactionview', function (Y) {
1414
var events = {
1515
'.ez-newtranslation-button': {
1616
'tap': '_newTranslationLanguageSelectionBox',
17-
}
17+
},
18+
'.ez-contenttranslation-delete-link': {
19+
'tap': '_deleteTranslation',
20+
},
1821
};
1922

2023
/**
@@ -60,6 +63,7 @@ YUI.add('ez-translateactionview', function (Y) {
6063
location: this.get('location').toJSON(),
6164
content: this.get('content').toJSON(),
6265
translations: translationsList,
66+
canDeleteTranslations: translationsList.length > 1,
6367
firstLanguagesCode: firstLanguageCodes,
6468
moreTranslationCount: moreTranslationCount
6569
}));
@@ -147,6 +151,31 @@ YUI.add('ez-translateactionview', function (Y) {
147151
this._hideView();
148152
},
149153

154+
/**
155+
* Tap event handler on Delete Translation button.
156+
*
157+
* @method _deleteTranslation
158+
* @protected
159+
* @param {EventFacade} e
160+
*/
161+
_deleteTranslation: function (e) {
162+
var data = {
163+
translation: e.target.getAttribute('data-translation'),
164+
contentId: this.get('content').get('contentId')
165+
};
166+
167+
e.preventDefault();
168+
169+
/**
170+
* Fired when the translation is deleted
171+
*
172+
* @event deleteTranslation
173+
* @param {data.translation} Language code of translation
174+
* @param {data.contentId} The content Id
175+
*/
176+
this.fire('deleteTranslation', data);
177+
},
178+
150179
/**
151180
* Fires `translate` event after making a selection on LanguageSelectionBox
152181
*

Resources/public/js/views/services/ez-locationviewviewservice.js

+69
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ YUI.add('ez-locationviewviewservice', function (Y) {
3030
this.on('*:translateContent', this._translateContent);
3131
this.on('*:sortUpdate', this._updateSorting);
3232
this.on('*:updatePriority', this._updatePriority);
33+
this.on('*:deleteTranslation', this._confirmDeleteTranslation);
3334
this.after('*:requestChange', this._setLanguageCode);
3435

3536
this._setLanguageCode();
@@ -568,6 +569,74 @@ YUI.add('ez-locationviewviewservice', function (Y) {
568569
this.set('languageCode', this.get('request').params.languageCode);
569570
},
570571

572+
/**
573+
* Removes translation from content.
574+
*
575+
* @method _deleteTranslation
576+
* @protected
577+
* @param {String} languageCode
578+
*/
579+
_deleteTranslation: function (languageCode) {
580+
var content = this.get('content'),
581+
options = {
582+
api: this.get('capi')
583+
};
584+
585+
content.removeTranslation(options, languageCode, Y.bind(function(error) {
586+
if (error) {
587+
this._notify(
588+
Y.eZ.trans('failed.delete.content.translation', { language: languageCode }, 'bar'),
589+
'content-delete-translation-' + content.get('id'), 'error', 0
590+
);
591+
return;
592+
}
593+
594+
this._notify(
595+
Y.eZ.trans('success.delete.content.translation', { language: languageCode }, 'bar'),
596+
'content-delete-translation-' + content.get('id'), 'done', 5
597+
);
598+
599+
this.get('app').navigateTo('viewLocation', {
600+
id: this.get('location').get('id'),
601+
languageCode: content.get('mainLanguageCode')
602+
});
603+
}, this));
604+
},
605+
606+
/**
607+
* `deleteTranslation` event handler,
608+
* it asks confirmation to the user before delete the translation item.
609+
*
610+
* @method _confirmDeleteTranslation
611+
* @protected
612+
* @param {Object} e event facade of the deleteAction event
613+
*/
614+
_confirmDeleteTranslation: function (e) {
615+
var content = this.get('content'),
616+
languageCode = e.translation;
617+
618+
e.preventDefault();
619+
if (languageCode === content.get('mainLanguageCode')) {
620+
this._notify(
621+
Y.eZ.trans('failed.delete.content.main.translation', {}, 'bar'),
622+
'content-delete-translation-' + content.get('id'), 'error', 0
623+
);
624+
} else {
625+
/**
626+
* Opens confirmation modal of deleting translation
627+
*
628+
* @event confirmBoxOpen
629+
* @param {e.config} Modal configuration
630+
*/
631+
this.fire('confirmBoxOpen', {
632+
config: {
633+
title: Y.eZ.trans('confirm.delete.translation', { language: languageCode }, 'bar'),
634+
confirmHandler: Y.bind(this._deleteTranslation, this, languageCode),
635+
}
636+
});
637+
}
638+
},
639+
571640
_getViewParameters: function () {
572641
return {
573642
content: this.get('content'),

Resources/public/templates/translateaction.hbt

+9-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,15 @@
2121
<a class="ez-contenttranslation-view-link" href="{{ path "viewLocation" id=../location.id languageCode=this }}">
2222
{{ language_name this }}
2323
</a>
24-
<a class="ez-contenttranslation-edit-link" href="{{ path "editContent" id=../content.id languageCode=this }}">
25-
{{translate 'translateaction.edit' 'bar'}}
26-
</a>
24+
25+
<span class="ez-contenttranslation-actions">
26+
<a class="ez-contenttranslation-edit-link" href="{{ path "editContent" id=../content.id languageCode=this }}">
27+
{{translate 'translateaction.edit' 'bar'}}
28+
</a>
29+
{{#if ../canDeleteTranslations}}
30+
<a class="ez-contenttranslation-delete-link ez-font-icon" data-translation="{{.}}" href="{{ path "editContent" id=../content.id languageCode=this }}"></a>
31+
{{/if}}
32+
</span>
2733
</li>
2834
{{/each}}
2935
</ul>

Resources/translations/bar.en.xlf

+24
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,30 @@
227227
<note>key: translateaction.edit</note>
228228
<jms:reference-file>Resources/public/templates/translateaction.hbt</jms:reference-file>
229229
</trans-unit>
230+
<trans-unit id="f066151955a2dd9163a84081f8f2ef175966bbd4" resname="confirm.delete.translation">
231+
<source>Are you sure you want to delete "%language%" translation?</source>
232+
<target>Are you sure you want to delete "%language%" translation?</target>
233+
<note>key: confirm.delete.translation</note>
234+
<jms:reference-file>Resources/public/js/views/services/ez-locationviewviewservice.js</jms:reference-file>
235+
</trans-unit>
236+
<trans-unit id="e5e147f6fd07facc4a3318e223553c790faa0641" resname="success.delete.content.translation">
237+
<source>Translation "%language%" has been deleted.</source>
238+
<target>Translation "%language%" has been deleted.</target>
239+
<note>key: success.delete.content.translation</note>
240+
<jms:reference-file>Resources/public/js/views/services/ez-locationviewviewservice.js</jms:reference-file>
241+
</trans-unit>
242+
<trans-unit id="011d57b24d3097d18e29e303e9b6c0c54ba82a8c" resname="failed.delete.content.translation">
243+
<source>Cannot delete translation "%language%" from content.</source>
244+
<target>Cannot delete translation "%language%" from content.</target>
245+
<note>key: failed.delete.content.translation</note>
246+
<jms:reference-file>Resources/public/js/views/services/ez-locationviewviewservice.js</jms:reference-file>
247+
</trans-unit>
248+
<trans-unit id="011d57b24d3097d18e29e303e9b6c0c54ba82a8c" resname="failed.delete.content.main.translation">
249+
<source>Cannot delete main translation from content.</source>
250+
<target>Cannot delete main translation from content.</target>
251+
<note>key: failed.delete.content.main.translation</note>
252+
<jms:reference-file>Resources/public/js/views/services/ez-locationviewviewservice.js</jms:reference-file>
253+
</trans-unit>
230254
<trans-unit id="0da142a7f050a139b79a5865547744a56a5f4281" resname="translateaction.existing.translations">
231255
<source>Existing Translations</source>
232256
<target>Existing Translations</target>

Tests/js/views/actions/assets/ez-translateactionview-tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ YUI.add('ez-translateactionview-tests', function (Y) {
1414
this.label = 'Translate test label';
1515
this.translationsList = ['eng-GB', 'pol-PL'];
1616
this.disabled = false;
17-
this.templateVariablesCount = 8;
17+
this.templateVariablesCount = 9;
1818
this.contentMock = new Mock();
1919
this.locationMock = new Mock();
2020
this.versionMock = new Mock();

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"require": {
12-
"ezsystems/platform-ui-assets-bundle": "^4.0.0",
12+
"ezsystems/platform-ui-assets-bundle": "^4.1.0",
1313
"ezsystems/repository-forms": "^1.11",
1414
"ezsystems/ezpublish-kernel": "^6.13",
1515
"ezsystems/ez-support-tools": "^0.2",

0 commit comments

Comments
 (0)