Skip to content

Commit

Permalink
missing copies
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Sep 7, 2022
1 parent 7e4a618 commit ec88fb9
Show file tree
Hide file tree
Showing 8 changed files with 200 additions and 29 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
## [0.2.0] - 2022-09-07
### Added
- New command _Reset layer names_.
- New command _Get missing copies_.
- New button to select the text layer while editing the variables.
- New option to filter the empty variables.

Expand Down
4 changes: 4 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
{
"name": "Reset layer names",
"command": "src/reset-names.ts--default"
},
{
"name": "Get missing copies",
"command": "src/missing-copies.ts--default"
}
]
}
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
{
"name": "Reset layer names",
"main": "src/reset-names.ts"
},
{
"name": "Get missing copies",
"main": "src/missing-copies.ts",
"ui": "src/ui.tsx"
}
]
}
Expand Down
58 changes: 29 additions & 29 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ import { emit, on, showUI } from "@create-figma-plugin/utilities";
import { NodeInfo, ResizeWindowHandler, SourceCopies } from "./types";
import { getTextNodes, updateNodeCopy } from "./utils";

export default function () {
on<ResizeWindowHandler>(
"RESIZE_WINDOW",
(windowSize: { width: number; height: number }) => {
const { width, height } = windowSize;
figma.ui.resize(width, height);
},
);
showUI({
height: 400,
width: 500,
});

// Get the nodes from the selection or the whole document
const selection = figma.currentPage.selection.slice();
const textNodes = selection.length
? getTextNodes(selection)
: figma.currentPage.findAll((node) => node.type === "TEXT") as TextNode[];
on<ResizeWindowHandler>(
"RESIZE_WINDOW",
(windowSize: { width: number; height: number }) => {
const { width, height } = windowSize;
figma.ui.resize(width, height);
},
);
showUI({
height: 400,
width: 500,
});

// Get the nodes from the selection or the whole document
const selection = figma.currentPage.selection.slice();
const textNodes = selection.length
? getTextNodes(selection)
: figma.currentPage.findAll((node) => node.type === "TEXT") as TextNode[];

export default function () {
// List of Nodes with copies
let nodes: NodeInfo[] = [];

Expand Down Expand Up @@ -65,17 +65,6 @@ export default function () {
}
});

// Select a text node
on("SELECT_NODE", (data: NodeInfo) => {
const node = figma.currentPage.findOne((node) =>
node.id === data.node.id
) as TextNode;
if (node) {
figma.currentPage.selection = [node];
figma.viewport.scrollAndZoomIntoView([node]);
}
});

// Update the variables
on("UPDATE_VARS", (data: NodeInfo[]) => {
data.forEach((info) => {
Expand All @@ -93,6 +82,17 @@ export default function () {
});
}

// Select a text node
on("SELECT_NODE", (data: NodeInfo) => {
const node = figma.currentPage.findOne((node) =>
node.id === data.node.id
) as TextNode;
if (node) {
figma.currentPage.selection = [node];
figma.viewport.scrollAndZoomIntoView([node]);
}
});

// Close the plugin when the UI is closed
on("CLOSE", () => figma.closePlugin());

Expand Down
76 changes: 76 additions & 0 deletions src/missing-copies.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
import { emit, on, showUI } from "@create-figma-plugin/utilities";
import { SourceCopies } from "./types";
import { getTextNodes } from "./utils";

export default function () {
showUI({
height: 400,
width: 500,
});

// Get the nodes from the selection or the whole document
const selection = figma.currentPage.selection.slice();
const textNodes = selection.length
? getTextNodes(selection)
: figma.currentPage.findAll((node) => node.type === "TEXT") as TextNode[];

if (!textNodes.length) {
emit("COMPLETED", {
title: selection.length
? "No text nodes found in the selection"
: "No text nodes found in the document",
});
} else {
// Send document defaults
emit("DEFAULTS", {
url: figma.root.getPluginData("url"),
url_2: figma.root.getPluginData("url_2"),
url_3: figma.root.getPluginData("url_3"),
});
}

// The copies have been loaded
on("FETCHED_COPIES", (data: SourceCopies) => {
// Save document urls defaults
figma.root.setPluginData("url", data.url);
figma.root.setPluginData("url_2", data.url_2);
figma.root.setPluginData("url_3", data.url_3);

// Search and replace the text nodes with the copies
const nodes = getUntranslatedNodes(textNodes, data.copies);

if (nodes.length) {
// Update the copies
emit("UNTRANSLATED", { nodes });
} else {
const title = selection.length
? "No missing copies found in the selection"
: "No missing copies found in the document";
emit("COMPLETED", { title });
}
});
}

// Select a text node
on("SELECT_NODE", (data: { node: { id: string } }) => {
const node = figma.currentPage.findOne((node) =>
node.id === data.node.id
) as TextNode;
if (node) {
figma.currentPage.selection = [node];
figma.viewport.scrollAndZoomIntoView([node]);
}
});

// Close the plugin when the UI is closed
on("CLOSE", () => figma.closePlugin());

/** Filter all TextNodes without translations */
function getUntranslatedNodes(
nodes: TextNode[],
copies: Record<string, string>,
): [string, string, string][] {
return nodes.filter((node) => !(node.name in copies)).map((
node,
) => [node.name, node.characters, node.id]);
}
15 changes: 15 additions & 0 deletions src/ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { fetchCopies } from "./ui/utils";
import SourceForm from "./ui/source-form";
import VariablesForm from "./ui/variables-form";
import Completed from "./ui/completed";
import MissingCopies from "./ui/missing-copies";
import "!./ui/styles.css";

import type { NodeInfo, ResizeWindowHandler, SourceUrls } from "./types";
Expand Down Expand Up @@ -60,6 +61,13 @@ function Main() {
});
});

on("UNTRANSLATED", (data) => {
setState({
type: "untranslated",
data: { nodes: data.nodes },
});
});

async function handleSubmitUrls(data: SourceUrls) {
setState({ type: "loading", data: { title: "Loading copies..." } });
const copies = await fetchCopies(...Object.values(data));
Expand Down Expand Up @@ -104,6 +112,13 @@ function Main() {
{state.type === "completed" && (
<Completed title={state.data.title} onSubmit={handleCompleted} />
)}
{state.type === "untranslated" && (
<MissingCopies
nodes={state.data.nodes}
onClose={handleCompleted}
onSelectNode={handleSelectNode}
/>
)}
</Container>
);
}
62 changes: 62 additions & 0 deletions src/ui/missing-copies.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
import {
Button,
IconButton,
IconPlus32,
Inline,
Text,
VerticalSpace,
} from "@create-figma-plugin/ui";
import { h } from "preact";

interface Props {
onClose: () => void;
onSelectNode: (data: any) => void;
nodes: [string, string, string][];
}

export default function VariablesForm(
{ nodes, onSelectNode, onClose }: Props,
) {
nodes.sort((a, b) => a[0].localeCompare(b[0]));

return (
<div>
<VerticalSpace space="large" />
<Text>
The following nodes are missing in the Google Spreadsheet document:
</Text>
<VerticalSpace space="extraLarge" />

<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Text</th>
<th></th>
</tr>
</thead>
<tbody>
{nodes.map((node, index) => (
<tr>
<td>{node[0]}</td>
<td>{node[1]}</td>
<IconButton
type="button"
onClick={() => onSelectNode({ node: { id: node[2] } })}
>
<IconPlus32 />
</IconButton>
</tr>
))}
</tbody>
</table>

<VerticalSpace space="large" />

<Inline space="extraSmall">
<Button onClick={onClose}>Close</Button>
</Inline>
<VerticalSpace space="small" />
</div>
);
}
8 changes: 8 additions & 0 deletions src/ui/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,12 @@
}
.center {
text-align: center;
}
.table {
user-select: initial;
cursor: text;
font-size: var(--font-size-11);
}
.table th {
text-align: left;
}

0 comments on commit ec88fb9

Please sign in to comment.