primo commit
This commit is contained in:
96
media/plg_media-action_rotate/js/rotate.js
Normal file
96
media/plg_media-action_rotate/js/rotate.js
Normal file
@ -0,0 +1,96 @@
|
||||
/**
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
let activated = false;
|
||||
|
||||
// Update image
|
||||
const rotate = (angle, image) => {
|
||||
// The canvas where we will rotate the image
|
||||
let canvas = document.createElement('canvas');
|
||||
|
||||
// Pseudo rectangle calculation
|
||||
if (angle >= 0 && angle < 45 || angle >= 135 && angle < 225 || angle >= 315 && angle <= 360) {
|
||||
canvas.width = image.naturalWidth;
|
||||
canvas.height = image.naturalHeight;
|
||||
} else {
|
||||
// swap
|
||||
canvas.width = image.naturalHeight;
|
||||
canvas.height = image.naturalWidth;
|
||||
}
|
||||
const ctx = canvas.getContext('2d');
|
||||
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
||||
ctx.translate(canvas.width / 2, canvas.height / 2);
|
||||
ctx.rotate(angle * Math.PI / 180);
|
||||
ctx.drawImage(image, -image.naturalWidth / 2, -image.naturalHeight / 2);
|
||||
|
||||
// The format
|
||||
const format = Joomla.MediaManager.Edit.original.extension.toLowerCase() === 'jpg' ? 'jpeg' : Joomla.MediaManager.Edit.original.extension.toLowerCase();
|
||||
|
||||
// The quality
|
||||
const quality = document.getElementById('jform_rotate_quality').value;
|
||||
|
||||
// Creating the data from the canvas
|
||||
Joomla.MediaManager.Edit.current.contents = canvas.toDataURL(`image/${format}`, quality);
|
||||
|
||||
// Updating the preview element
|
||||
image.width = canvas.width;
|
||||
image.height = canvas.height;
|
||||
image.src = '';
|
||||
requestAnimationFrame(() => requestAnimationFrame(() => {
|
||||
image.src = Joomla.MediaManager.Edit.current.contents;
|
||||
}));
|
||||
|
||||
// Update the angle input box
|
||||
document.getElementById('jform_rotate_a').value = angle;
|
||||
|
||||
// Notify the app that a change has been made
|
||||
window.dispatchEvent(new Event('mediaManager.history.point'));
|
||||
canvas = null;
|
||||
};
|
||||
const initRotate = image => {
|
||||
if (!activated) {
|
||||
// The number input listener
|
||||
document.getElementById('jform_rotate_a').addEventListener('change', ({
|
||||
target
|
||||
}) => {
|
||||
rotate(parseInt(target.value, 10), image);
|
||||
target.value = 0;
|
||||
// Deselect all buttons
|
||||
document.querySelectorAll('#jform_rotate_distinct label').forEach(element => element.classList.remove('active', 'focus'));
|
||||
});
|
||||
|
||||
// The 90 degree rotate buttons listeners
|
||||
document.querySelectorAll('#jform_rotate_distinct [type=radio]').forEach(element => {
|
||||
element.addEventListener('click', ({
|
||||
target
|
||||
}) => {
|
||||
rotate(parseInt(target.value, 10), image);
|
||||
|
||||
// Deselect all buttons
|
||||
document.querySelectorAll('#jform_rotate_distinct label').forEach(el => el.classList.remove('active', 'focus'));
|
||||
});
|
||||
});
|
||||
activated = true;
|
||||
}
|
||||
};
|
||||
window.addEventListener('media-manager-edit-init', () => {
|
||||
// Register the Events
|
||||
Joomla.MediaManager.Edit.plugins.rotate = {
|
||||
Activate(image) {
|
||||
return new Promise(resolve => {
|
||||
// Initialize
|
||||
initRotate(image);
|
||||
resolve();
|
||||
});
|
||||
},
|
||||
Deactivate(/* image */
|
||||
) {
|
||||
return new Promise(resolve => {
|
||||
resolve();
|
||||
});
|
||||
}
|
||||
};
|
||||
}, {
|
||||
once: true
|
||||
});
|
||||
4
media/plg_media-action_rotate/js/rotate.min.js
vendored
Normal file
4
media/plg_media-action_rotate/js/rotate.min.js
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/let activated=!1;const rotate=(a,t)=>{let e=document.createElement("canvas");a>=0&&a<45||a>=135&&a<225||a>=315&&a<=360?(e.width=t.naturalWidth,e.height=t.naturalHeight):(e.width=t.naturalHeight,e.height=t.naturalWidth);const r=e.getContext("2d");r.clearRect(0,0,e.width,e.height),r.translate(e.width/2,e.height/2),r.rotate(a*Math.PI/180),r.drawImage(t,-t.naturalWidth/2,-t.naturalHeight/2);const o=Joomla.MediaManager.Edit.original.extension.toLowerCase()==="jpg"?"jpeg":Joomla.MediaManager.Edit.original.extension.toLowerCase(),n=document.getElementById("jform_rotate_quality").value;Joomla.MediaManager.Edit.current.contents=e.toDataURL(`image/${o}`,n),t.width=e.width,t.height=e.height,t.src="",requestAnimationFrame(()=>requestAnimationFrame(()=>{t.src=Joomla.MediaManager.Edit.current.contents})),document.getElementById("jform_rotate_a").value=a,window.dispatchEvent(new Event("mediaManager.history.point")),e=null},initRotate=a=>{activated||(document.getElementById("jform_rotate_a").addEventListener("change",({target:t})=>{rotate(parseInt(t.value,10),a),t.value=0,document.querySelectorAll("#jform_rotate_distinct label").forEach(e=>e.classList.remove("active","focus"))}),document.querySelectorAll("#jform_rotate_distinct [type=radio]").forEach(t=>{t.addEventListener("click",({target:e})=>{rotate(parseInt(e.value,10),a),document.querySelectorAll("#jform_rotate_distinct label").forEach(r=>r.classList.remove("active","focus"))})}),activated=!0)};window.addEventListener("media-manager-edit-init",()=>{Joomla.MediaManager.Edit.plugins.rotate={Activate(a){return new Promise(t=>{initRotate(a),t()})},Deactivate(){return new Promise(a=>{a()})}}},{once:!0});
|
||||
BIN
media/plg_media-action_rotate/js/rotate.min.js.gz
Normal file
BIN
media/plg_media-action_rotate/js/rotate.min.js.gz
Normal file
Binary file not shown.
Reference in New Issue
Block a user