feat: update keycloak theme

This commit is contained in:
Jonas Juselius
2024-02-22 09:47:34 +01:00
parent d6fde78f8d
commit f9e012da95
9813 changed files with 611335 additions and 162181 deletions
@@ -13,57 +13,53 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as React from "../../../common/keycloak/web_modules/react.js";
import * as React from "../../keycloak.v2/web_modules/react.js";
export class Msg extends React.Component {
constructor(props) {
super(props);
}
render() {
if (this.props.children) {
return Msg.localizeWithChildren(this.props.msgKey, this.props.children);
}
return /*#__PURE__*/React.createElement(React.Fragment, null, Msg.localize(this.props.msgKey, this.props.params));
}
static localizeWithChildren(msgKey, children) {
const message = l18nMsg[this.processKey(msgKey)];
const parts = message.split(/\{\{param_\d*}}/);
const count = React.Children.count(children);
return React.Children.map(children, (child, i) => [parts[i], child, count === i + 1 ? parts[count] : '']);
}
static localize(msgKey, params) {
let message = l18nMsg[this.processKey(msgKey)];
if (message === undefined) message = msgKey;
if (params !== undefined && params.length > 0) {
params.forEach((value, index) => {
value = this.processParam(value);
message = message.replace('{{param_' + index + '}}', value);
});
}
return message;
} // if the message key has Freemarker syntax, remove it
}
// if the message key has Freemarker syntax, remove it
static processKey(msgKey) {
if (!(msgKey.startsWith('${') && msgKey.endsWith('}'))) return msgKey; // remove Freemarker syntax
if (!(msgKey.startsWith('${') && msgKey.endsWith('}'))) return msgKey;
// remove Freemarker syntax
return msgKey.substring(2, msgKey.length - 1);
} // if the param has Freemarker syntax, try to look up its value
}
// if the param has Freemarker syntax, try to look up its value
static processParam(param) {
if (!(param.startsWith('${') && param.endsWith('}'))) return param; // remove Freemarker syntax
if (!(param.startsWith('${') && param.endsWith('}'))) return param;
// remove Freemarker syntax
const key = param.substring(2, param.length - 1);
let value = l18nMsg[key];
if (value === undefined) return param;
return value;
}
}
//# sourceMappingURL=Msg.js.map