Compare commits

...

4 commits

Author SHA1 Message Date
98d368a05e Merge branch 'main' into develop
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
2024-10-11 14:38:42 +02:00
68c6d16232 adding javascript module to connect the frontend to the translation endpoint
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
2024-07-02 17:05:54 +02:00
10819b864f adding license
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests/1 Pipeline was successful
ci/woodpecker/push/functional-tests/2 Pipeline was successful
ci/woodpecker/push/functional-tests/3 Pipeline was successful
ci/woodpecker/push/functional-tests/4 Pipeline was successful
2024-05-30 15:34:09 +02:00
7a09493c5d Merge tag '1.0.1' into develop
All checks were successful
ci/woodpecker/push/code-style Pipeline was successful
ci/woodpecker/push/functional-tests Pipeline was successful
Tagging 1.0.1
2023-09-29 17:34:21 +02:00
3 changed files with 73 additions and 0 deletions

19
License.txt Normal file
View file

@ -0,0 +1,19 @@
Copyright (c) 2023 Ferdinand Kuhl <f.kuhl@digital-competence.de>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View file

@ -0,0 +1,13 @@
{
"name": "@digicomp/flow-translation-endpoint",
"description": "Connect to Flow's merged and parsed xliff contents",
"main": "translate.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"i18n"
],
"author": "Ferdinand Kuhl",
"license": "MIT"
}

View file

@ -0,0 +1,41 @@
// storage for promises with the same ids so the same request is not issued twice
const translations = {};
export function translateIdPatterns(idPatterns)
{
if (!translations[idPatterns.join(',')]) {
translations[idPatterns.join(',')] = getJSON(idPatterns);
}
return translations[idPatterns.join(',')];
}
export function arrayFromPaths(units)
{
const result = {};
for (const [key, value] of Object.entries(units)) {
let cur = result;
const parts = key.split('.'),
lastPart = parts.pop();
parts.forEach(function(elem){
cur[elem] = cur[elem] || {};
cur = cur[elem];
});
cur[lastPart] = value;
}
return result;
}
async function getJSON(idPatterns)
{
const uri = new URL(document.documentElement.dataset.xliffUri, document.location);
uri.searchParams.set(document.documentElement.dataset.xliffParameter, idPatterns);
const response = await fetch(uri, {headers: {
'Accept': 'application/json',
'Accept-Language': document.documentElement.lang,
}});
if (!response.ok) {
return Promise.reject('Unexpected server response');
}
return await response.json();
}