The Crowdin Apps JS is a library built for easier interaction with Crowdin. Since the integration uses the iframes, there are certain limitations on the interaction between windows: environments are encapsulated and do not have access to the page content, code, styles, and any other information related to the page.
The Crowdin Apps JS library is based on cross-window messaging technology and uses postMessage() to interact between multiple windows.
To use this library, connect it on the module page by inserting the following code into the page header:
<script src="https://cdn.crowdin.com/apps/dist/iframe.js"></script>
After adding the code mentioned above, you’ll be able to use the global AP variable.
iframe.js
file and serve it up from your app server directly. The iframe.js
file must be served up by Crowdin for establishing of the cross-domain messaging bridge. The iframe.js
file is only intended for use in an iframe inside Crowdin and does not work for standalone web pages.Global actions are the actions that are available on all module pages.
The method retrieves the context information about the current page and puts it into the callback. For example, the project ID where the module is opened or the locale used on the page.
Example:
AP.getContext(function(contextData) {
console.log("Object: context", contextData);
});
Properties:
callback | Type: Description: The callback that handles the response object. |
The method retrieves a JWT token string. Used to get a current token. If the previous token has a validity period of less than one minute, the method will generate and return a new token.
Example:
AP.getJwtToken(function(jwtToken) {
console.log("String: JWT token", jwtToken);
});
Properties:
callback | Type: Description: The callback that handles the response string. |
Editor module actions provide a possibility to get information from the Editor UI. These actions are available only on pages that are loaded in an iframe in the Editor-panels module.
The method retrieves information about the currently selected string in the Editor.
Example:
AP.editor.getString(function(stringData) {
console.log("Object: source string", stringData);
});
Properties:
callback | Type: Description: The callback that handles the response object. |
The method retrieves a list of translations suggested to the currently selected string in the Editor. Additionally, the response contains information about the translation author, the number of votes, and approval on the current workflow step.
Example:
AP.editor.getTranslations(function(translationsData) {
console.log("Array: translation objects", translationsData);
});
Properties:
callback | Type: Description: The callback that handles the response array. |
The method retrieves a top translation (the translation with the highest priority) for the currently selected source string in the Editor.
Example:
AP.editor.getTopTranslation(function(topTranslationData) {
console.log("Object: top translation", topTranslationData);
});
Properties:
callback | Type: Description: The callback that handles the response object. |
The method sets the translation text for the currently selected source string in the Editor.
Example:
AP.editor.setTranslation("Hello,");
Properties:
text | Type: Description: The translation text that is being set for the currently selected source string. |
The method appends the translation text next to the cursor for the currently selected source string in the Editor.
Example:
AP.editor.appendTranslation(" {user},");
Properties:
text | Type: Description: The translation text that is being appended next to the cursor for the currently selected source string. |
The method clears the translation text for the currently selected source string in the Editor.
Example:
AP.editor.clearTranslation();
The method sets focus on the translation field in the Editor.
Example:
AP.editor.setFocus();
Event module actions provide a possibility to work with events, enable the Crowdin app to respond to events that happen in Crowdin UI, and trigger its own events. Read more about supported events.
The method subscribes a one-time listener to detect events with a specified name. The listener is unsubscribed as soon as the first event is processed.
Example:
AP.events.once("event", function(eventData) {
console.log("Event data", eventData);
});
Properties:
event | Type: Description: The name of the event the callback of the function should react to. |
callback | Type: Description: The callback that handles the event. Depending on the event's type, there could be either one or a few arguments in the callback. |
The method subscribes a listener to all events with a specified name.
Example:
AP.events.on("event", function(eventData) {
console.log("Event data", eventData);
});
Properties:
event | Type: Description: The name of the event the callback of the function should react to. |
callback | Type: Description: The callback that handles the event. Depending on the event's type, there could be either one or a few arguments in the callback. |
The method unsubscribes a listener for an event with a specified name.
Example:
function callback(eventData) {
console.log("Event data", eventData);
};
AP.events.on("event", callback);
AP.events.off("event", callback);
Properties:
event | Type: Description: The name of the event the callback of the function should be unsubscribed from. |
callback | Type: Description: The callback that was previously subscribed to the event. |
The method unsubscribes all previously subscribed listeners from the specified event.
Example:
AP.events.offAll("event");
event | Type: Description: The name of the event all listeners should be unsubscribed from. |
The method subscribes to all events from Crowdin UI.
Example:
AP.events.onAny(function(event, data) {
console.log("Event name string", event);
console.log("Event data", data);
});
Properties:
callback | Type: Description: The callback that receives the name of the event and all the data transferred to the event. |
The method unsubscribes a listener from all events.
Example:
function callback(event, data) {
console.log("Event name string", event);
console.log("Event data", data);
};
AP.events.onAny(callback);
AP.events.offAny(callback);
Properties:
callback | Type: Description: The callback that was subscribed to all events. |
Check out the list of supported events that could be passed to the Crowdin Apps JS library in the following table:
Event | Example | Description |
---|---|---|
string.change |
| The event emitted when a user switches from one string to another. |
textarea.edited |
| The event emitted when a user performs any changes in the translation field. |
translation.added |
| The event emitted when a user saves a translation for the current string. |
translation.deleted |
| The event emitted when a user deletes a translation. |
translation.restored |
| The event emitted when a user restores a deleted translation. |
translation.vote |
| The event emitted when a user votes for a translation. |
translation.approve |
| The event emitted when a user approves a translation. |
translation.disapprove |
| The event emitted when a user removes a translation approval. |
language.change |
| The event emitted when a user changes a target language in the Editor. |
file.change |
| The event emitted when a user changes a file in the Editor. |