2020-02-09 09:07:34 -05:00
|
|
|
import React from "react";
|
2020-01-12 02:22:03 +04:00
|
|
|
import { Action } from "./types";
|
|
|
|
import {
|
|
|
|
moveOneLeft,
|
|
|
|
moveOneRight,
|
|
|
|
moveAllLeft,
|
2020-01-24 12:04:54 +02:00
|
|
|
moveAllRight,
|
2020-01-12 02:22:03 +04:00
|
|
|
} from "../zindex";
|
|
|
|
import { getSelectedIndices } from "../scene";
|
2020-01-19 13:21:33 -08:00
|
|
|
import { KEYS } from "../keys";
|
2020-02-09 09:07:34 -05:00
|
|
|
import { t } from "../i18n";
|
|
|
|
|
2020-02-09 17:09:21 +01:00
|
|
|
const ACTIVE_ELEM_COLOR = "#ffa94d"; // OC ORANGE 4
|
|
|
|
|
2020-02-09 09:07:34 -05:00
|
|
|
const ICONS = {
|
|
|
|
bringForward: (
|
2020-02-09 17:09:21 +01:00
|
|
|
<svg viewBox="0 0 24 24">
|
2020-02-09 09:07:34 -05:00
|
|
|
<path
|
2020-02-09 17:09:21 +01:00
|
|
|
d="M22 9.556C22 8.696 21.303 8 20.444 8H16v8H8v4.444C8 21.304 8.697 22 9.556 22h10.888c.86 0 1.556-.697 1.556-1.556V9.556z"
|
2020-02-09 09:07:34 -05:00
|
|
|
stroke="#000"
|
2020-02-09 17:09:21 +01:00
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
<path
|
2020-02-09 17:09:21 +01:00
|
|
|
d="M16 3.556C16 2.696 15.303 2 14.444 2H3.556C2.696 2 2 2.697 2 3.556v10.888C2 15.304 2.697 16 3.556 16h10.888c.86 0 1.556-.697 1.556-1.556V3.556z"
|
|
|
|
fill={ACTIVE_ELEM_COLOR}
|
|
|
|
stroke={ACTIVE_ELEM_COLOR}
|
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
),
|
|
|
|
sendBackward: (
|
2020-02-09 17:09:21 +01:00
|
|
|
<svg viewBox="0 0 24 24">
|
2020-02-09 09:07:34 -05:00
|
|
|
<path
|
|
|
|
d="M16 3.556C16 2.696 15.303 2 14.444 2H3.556C2.696 2 2 2.697 2 3.556v10.888C2 15.304 2.697 16 3.556 16h10.888c.86 0 1.556-.697 1.556-1.556V3.556z"
|
2020-02-09 17:09:21 +01:00
|
|
|
fill={ACTIVE_ELEM_COLOR}
|
|
|
|
stroke={ACTIVE_ELEM_COLOR}
|
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
<path
|
|
|
|
d="M22 9.556C22 8.696 21.303 8 20.444 8H9.556C8.696 8 8 8.697 8 9.556v10.888C8 21.304 8.697 22 9.556 22h10.888c.86 0 1.556-.697 1.556-1.556V9.556z"
|
|
|
|
stroke="#000"
|
2020-02-09 17:09:21 +01:00
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
),
|
|
|
|
bringToFront: (
|
2020-02-09 17:09:21 +01:00
|
|
|
<svg viewBox="0 0 24 24">
|
2020-02-09 09:07:34 -05:00
|
|
|
<path
|
|
|
|
d="M13 21a1 1 0 001 1h7a1 1 0 001-1v-7a1 1 0 00-1-1h-3v5h-5v3zM11 3a1 1 0 00-1-1H3a1 1 0 00-1 1v7a1 1 0 001 1h3V6h5V3z"
|
|
|
|
stroke="#000"
|
2020-02-09 17:09:21 +01:00
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
<path
|
|
|
|
d="M18 7.333C18 6.597 17.403 6 16.667 6H7.333C6.597 6 6 6.597 6 7.333v9.334C6 17.403 6.597 18 7.333 18h9.334c.736 0 1.333-.597 1.333-1.333V7.333z"
|
2020-02-09 17:09:21 +01:00
|
|
|
fill={ACTIVE_ELEM_COLOR}
|
|
|
|
stroke={ACTIVE_ELEM_COLOR}
|
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
),
|
|
|
|
sendToBack: (
|
2020-02-09 17:09:21 +01:00
|
|
|
<svg viewBox="0 0 24 24" strokeLinecap="round" strokeLinejoin="round">
|
2020-02-09 09:07:34 -05:00
|
|
|
<path
|
|
|
|
d="M18 7.333C18 6.597 17.403 6 16.667 6H7.333C6.597 6 6 6.597 6 7.333v9.334C6 17.403 6.597 18 7.333 18h9.334c.736 0 1.333-.597 1.333-1.333V7.333z"
|
2020-02-09 17:09:21 +01:00
|
|
|
fill={ACTIVE_ELEM_COLOR}
|
|
|
|
stroke={ACTIVE_ELEM_COLOR}
|
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
<path
|
|
|
|
d="M11 3a1 1 0 00-1-1H3a1 1 0 00-1 1v7a1 1 0 001 1h8V3zM22 14a1 1 0 00-1-1h-7a1 1 0 00-1 1v7a1 1 0 001 1h8v-8z"
|
|
|
|
stroke="#000"
|
2020-02-09 17:09:21 +01:00
|
|
|
strokeWidth="2"
|
2020-02-09 09:07:34 -05:00
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
),
|
|
|
|
};
|
2020-01-12 02:22:03 +04:00
|
|
|
|
|
|
|
export const actionSendBackward: Action = {
|
|
|
|
name: "sendBackward",
|
|
|
|
perform: (elements, appState) => {
|
|
|
|
return {
|
|
|
|
elements: moveOneLeft([...elements], getSelectedIndices(elements)),
|
2020-01-24 12:04:54 +02:00
|
|
|
appState,
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
},
|
2020-01-21 01:14:10 +02:00
|
|
|
contextItemLabel: "labels.sendBackward",
|
2020-01-12 02:22:03 +04:00
|
|
|
keyPriority: 40,
|
2020-02-05 22:47:10 +04:00
|
|
|
commitToHistory: () => true,
|
2020-02-01 17:37:22 +01:00
|
|
|
keyTest: event => event[KEYS.META] && event.altKey && event.key === "B",
|
2020-02-09 09:07:34 -05:00
|
|
|
PanelComponent: ({ updateData }) => (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className="zIndexButton"
|
|
|
|
onClick={e => updateData(null)}
|
|
|
|
title={t("labels.sendBackward")}
|
|
|
|
>
|
|
|
|
{ICONS.sendBackward}
|
|
|
|
</button>
|
|
|
|
),
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
export const actionBringForward: Action = {
|
|
|
|
name: "bringForward",
|
|
|
|
perform: (elements, appState) => {
|
|
|
|
return {
|
|
|
|
elements: moveOneRight([...elements], getSelectedIndices(elements)),
|
2020-01-24 12:04:54 +02:00
|
|
|
appState,
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
},
|
2020-01-21 01:14:10 +02:00
|
|
|
contextItemLabel: "labels.bringForward",
|
2020-01-12 02:22:03 +04:00
|
|
|
keyPriority: 40,
|
2020-02-05 22:47:10 +04:00
|
|
|
commitToHistory: () => true,
|
2020-02-01 17:37:22 +01:00
|
|
|
keyTest: event => event[KEYS.META] && event.altKey && event.key === "F",
|
2020-02-09 09:07:34 -05:00
|
|
|
PanelComponent: ({ updateData }) => (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className="zIndexButton"
|
|
|
|
onClick={e => updateData(null)}
|
|
|
|
title={t("labels.bringForward")}
|
|
|
|
>
|
|
|
|
{ICONS.bringForward}
|
|
|
|
</button>
|
|
|
|
),
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
export const actionSendToBack: Action = {
|
|
|
|
name: "sendToBack",
|
|
|
|
perform: (elements, appState) => {
|
|
|
|
return {
|
|
|
|
elements: moveAllLeft([...elements], getSelectedIndices(elements)),
|
2020-01-24 12:04:54 +02:00
|
|
|
appState,
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
},
|
2020-01-21 01:14:10 +02:00
|
|
|
contextItemLabel: "labels.sendToBack",
|
2020-02-05 22:47:10 +04:00
|
|
|
commitToHistory: () => true,
|
2020-02-01 17:37:22 +01:00
|
|
|
keyTest: event => event[KEYS.META] && event.shiftKey && event.key === "B",
|
2020-02-09 09:07:34 -05:00
|
|
|
PanelComponent: ({ updateData }) => (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className="zIndexButton"
|
|
|
|
onClick={e => updateData(null)}
|
|
|
|
title={t("labels.sendToBack")}
|
|
|
|
>
|
|
|
|
{ICONS.sendToBack}
|
|
|
|
</button>
|
|
|
|
),
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
export const actionBringToFront: Action = {
|
|
|
|
name: "bringToFront",
|
|
|
|
perform: (elements, appState) => {
|
|
|
|
return {
|
|
|
|
elements: moveAllRight([...elements], getSelectedIndices(elements)),
|
2020-01-24 12:04:54 +02:00
|
|
|
appState,
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|
|
|
|
},
|
2020-02-05 22:47:10 +04:00
|
|
|
commitToHistory: () => true,
|
2020-01-21 01:14:10 +02:00
|
|
|
contextItemLabel: "labels.bringToFront",
|
2020-02-01 17:37:22 +01:00
|
|
|
keyTest: event => event[KEYS.META] && event.shiftKey && event.key === "F",
|
2020-02-09 09:07:34 -05:00
|
|
|
PanelComponent: ({ updateData }) => (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
className="zIndexButton"
|
|
|
|
onClick={e => updateData(null)}
|
|
|
|
title={t("labels.bringToFront")}
|
|
|
|
>
|
|
|
|
{ICONS.bringToFront}
|
|
|
|
</button>
|
|
|
|
),
|
2020-01-12 02:22:03 +04:00
|
|
|
};
|