/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.isis.viewer.wicket.ui.errors; import org.apache.wicket.util.string.Strings; import org.apache.isis.core.commons.authentication.MessageBroker; public class JGrowlUtil { private JGrowlUtil(){} public static String asJGrowlCalls(final MessageBroker messageBroker) { final StringBuilder buf = new StringBuilder(); for (String info : messageBroker.getMessages()) { addJGrowlCall(info, "info", false, buf); } for (String warning : messageBroker.getWarnings()) { addJGrowlCall(warning, "warning", true, buf); } final String error = messageBroker.getApplicationError(); if(error!=null) { addJGrowlCall(error, "danger", true, buf); } return buf.toString(); } private static void addJGrowlCall(final String origMsg, final String cssClassSuffix, boolean sticky, final StringBuilder buf) { final CharSequence escapedMsg = escape(origMsg); buf.append("$.growl(\"") .append(escapedMsg) .append("   ") // add some space so that the dismiss icon (x) doesn't overlap with the text .append('"'); buf.append(", {"); buf.append("type: \"").append(cssClassSuffix).append('"'); buf.append(", delay: " + (sticky ? "0" : "2000")); buf.append(", placement: { from: 'top', align: 'right' }"); buf.append(", offset: 50"); buf.append('}'); buf.append(");\n"); } static String escape(String origMsg) { final String escaped = Strings.escapeMarkup(origMsg).toString(); // convert (what would originally have been either) ' or " to ' return escaped .replace(""", "'") .replace("'", "'"); } }