Search in sources :

Example 1 with AjaxCheckBoxPanel

use of org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel in project syncope by apache.

the class BeanPanel method buildSinglePanel.

@SuppressWarnings({ "unchecked", "rawtypes" })
private FieldPanel buildSinglePanel(final Serializable bean, final Class<?> type, final String fieldName, final String id) {
    FieldPanel result = null;
    PropertyModel model = new PropertyModel(bean, fieldName);
    if (ClassUtils.isAssignable(Boolean.class, type)) {
        result = new AjaxCheckBoxPanel(id, fieldName, model);
    } else if (ClassUtils.isAssignable(Number.class, type)) {
        result = new AjaxSpinnerFieldPanel.Builder<>().build(id, fieldName, (Class<Number>) ClassUtils.resolvePrimitiveIfNecessary(type), model);
    } else if (Date.class.equals(type)) {
        result = new AjaxDateTimeFieldPanel(id, fieldName, model, SyncopeConstants.DEFAULT_DATE_PATTERN);
    } else if (type.isEnum()) {
        result = new AjaxDropDownChoicePanel(id, fieldName, model).setChoices(Arrays.asList(type.getEnumConstants()));
    }
    // treat as String if nothing matched above
    if (result == null) {
        result = new AjaxTextFieldPanel(id, fieldName, model);
    }
    result.hideLabel();
    return result;
}
Also used : AjaxTextFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel) PropertyModel(org.apache.wicket.model.PropertyModel) AjaxSpinnerFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxSpinnerFieldPanel) AjaxDropDownChoicePanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDropDownChoicePanel) FieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.FieldPanel) AjaxSpinnerFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxSpinnerFieldPanel) AjaxTextFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel) AjaxDateTimeFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateTimeFieldPanel) MultiFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.MultiFieldPanel) AjaxCheckBoxPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel) AjaxDateTimeFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateTimeFieldPanel)

Example 2 with AjaxCheckBoxPanel

use of org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel in project syncope by apache.

the class ConnConfPropertyListView method populateItem.

@Override
@SuppressWarnings({ "unchecked", "rawtypes" })
protected void populateItem(final ListItem<ConnConfProperty> item) {
    final ConnConfProperty property = item.getModelObject();
    final String label = StringUtils.isBlank(property.getSchema().getDisplayName()) ? property.getSchema().getName() : property.getSchema().getDisplayName();
    final FieldPanel<? extends Serializable> field;
    boolean required = false;
    boolean isArray = false;
    if (property.getSchema().isConfidential() || Constants.GUARDED_STRING.equalsIgnoreCase(property.getSchema().getType()) || Constants.GUARDED_BYTE_ARRAY.equalsIgnoreCase(property.getSchema().getType())) {
        field = new AjaxPasswordFieldPanel("panel", label, new Model<>(), false);
        ((PasswordTextField) field.getField()).setResetPassword(false);
        required = property.getSchema().isRequired();
    } else {
        Class<?> propertySchemaClass;
        try {
            propertySchemaClass = ClassUtils.getClass(property.getSchema().getType());
            if (ClassUtils.isPrimitiveOrWrapper(propertySchemaClass)) {
                propertySchemaClass = org.apache.commons.lang3.ClassUtils.primitiveToWrapper(propertySchemaClass);
            }
        } catch (ClassNotFoundException e) {
            LOG.error("Error parsing attribute type", e);
            propertySchemaClass = String.class;
        }
        if (ClassUtils.isAssignable(Number.class, propertySchemaClass)) {
            @SuppressWarnings("unchecked") Class<Number> numberClass = (Class<Number>) propertySchemaClass;
            field = new AjaxSpinnerFieldPanel.Builder<>().build("panel", label, numberClass, new Model<>());
            required = property.getSchema().isRequired();
        } else if (ClassUtils.isAssignable(Boolean.class, propertySchemaClass)) {
            field = new AjaxCheckBoxPanel("panel", label, new Model<>());
        } else {
            field = new AjaxTextFieldPanel("panel", label, new Model<>());
            required = property.getSchema().isRequired();
        }
        if (propertySchemaClass.isArray()) {
            isArray = true;
        }
    }
    field.setIndex(item.getIndex());
    field.setTitle(property.getSchema().getHelpMessage(), true);
    final AbstractFieldPanel<? extends Serializable> fieldPanel;
    if (isArray) {
        final MultiFieldPanel multiFieldPanel = new MultiFieldPanel.Builder(new PropertyModel<>(property, "values")).setEventTemplate(true).build("panel", label, field);
        item.add(multiFieldPanel);
        fieldPanel = multiFieldPanel;
    } else {
        setNewFieldModel(field, property.getValues());
        item.add(field);
        fieldPanel = field;
    }
    if (required) {
        fieldPanel.addRequiredLabel();
    }
    if (withOverridable) {
        fieldPanel.showExternAction(addCheckboxToggle(property));
    }
}
Also used : AjaxTextFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel) MultiFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.MultiFieldPanel) ConnConfProperty(org.apache.syncope.common.lib.types.ConnConfProperty) PasswordTextField(org.apache.wicket.markup.html.form.PasswordTextField) AjaxCheckBoxPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel) AjaxPasswordFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxPasswordFieldPanel) IModel(org.apache.wicket.model.IModel) Model(org.apache.wicket.model.Model) PropertyModel(org.apache.wicket.model.PropertyModel)

Example 3 with AjaxCheckBoxPanel

use of org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel in project syncope by apache.

the class PlainAttrs method getFieldPanel.

@SuppressWarnings({ "rawtypes", "unchecked" })
protected FieldPanel getFieldPanel(final PlainSchemaTO schemaTO) {
    final boolean required;
    final boolean readOnly;
    final AttrSchemaType type;
    final boolean jexlHelp;
    if (mode == AjaxWizard.Mode.TEMPLATE) {
        required = false;
        readOnly = false;
        type = AttrSchemaType.String;
        jexlHelp = true;
    } else {
        required = schemaTO.getMandatoryCondition().equalsIgnoreCase("true");
        readOnly = schemaTO.isReadonly();
        type = schemaTO.getType();
        jexlHelp = false;
    }
    FieldPanel panel;
    switch(type) {
        case Boolean:
            panel = new AjaxCheckBoxPanel("panel", schemaTO.getKey(), new Model<>(), true);
            panel.setRequired(required);
            break;
        case Date:
            String dataPattern = schemaTO.getConversionPattern() == null ? SyncopeConstants.DEFAULT_DATE_PATTERN : schemaTO.getConversionPattern();
            if (dataPattern.contains("H")) {
                panel = new AjaxDateTimeFieldPanel("panel", schemaTO.getKey(), new Model<>(), dataPattern);
            } else {
                panel = new AjaxDateFieldPanel("panel", schemaTO.getKey(), new Model<>(), dataPattern);
            }
            if (required) {
                panel.addRequiredLabel();
            }
            break;
        case Enum:
            panel = new AjaxDropDownChoicePanel<>("panel", schemaTO.getKey(), new Model<>(), true);
            ((AjaxDropDownChoicePanel<String>) panel).setChoices(SchemaUtils.getEnumeratedValues(schemaTO));
            if (StringUtils.isNotBlank(schemaTO.getEnumerationKeys())) {
                ((AjaxDropDownChoicePanel) panel).setChoiceRenderer(new IChoiceRenderer<String>() {

                    private static final long serialVersionUID = -3724971416312135885L;

                    private final Map<String, String> valueMap = SchemaUtils.getEnumeratedKeyValues(schemaTO);

                    @Override
                    public String getDisplayValue(final String value) {
                        return valueMap.get(value) == null ? value : valueMap.get(value);
                    }

                    @Override
                    public String getIdValue(final String value, final int i) {
                        return value;
                    }

                    @Override
                    public String getObject(final String id, final IModel<? extends List<? extends String>> choices) {
                        return id;
                    }
                });
            }
            if (required) {
                panel.addRequiredLabel();
            }
            break;
        case Long:
            panel = new AjaxSpinnerFieldPanel.Builder<Long>().enableOnChange().build("panel", schemaTO.getKey(), Long.class, new Model<Long>());
            if (required) {
                panel.addRequiredLabel();
            }
            break;
        case Double:
            panel = new AjaxSpinnerFieldPanel.Builder<Double>().enableOnChange().step(0.1).build("panel", schemaTO.getKey(), Double.class, new Model<Double>());
            if (required) {
                panel.addRequiredLabel();
            }
            break;
        case Binary:
            final PageReference pageReference = getPageReference();
            panel = new BinaryFieldPanel("panel", schemaTO.getKey(), new Model<>(), schemaTO.getMimeType(), fileKey) {

                private static final long serialVersionUID = -3268213909514986831L;

                @Override
                protected PageReference getPageReference() {
                    return pageReference;
                }
            };
            if (required) {
                panel.addRequiredLabel();
            }
            break;
        case Encrypted:
            panel = new EncryptedFieldPanel("panel", schemaTO.getKey(), new Model<>(), true);
            if (required) {
                panel.addRequiredLabel();
            }
            break;
        default:
            panel = new AjaxTextFieldPanel("panel", schemaTO.getKey(), new Model<>(), true);
            if (jexlHelp) {
                AjaxTextFieldPanel.class.cast(panel).enableJexlHelp();
            }
            if (required) {
                panel.addRequiredLabel();
            }
    }
    panel.setReadOnly(readOnly);
    return panel;
}
Also used : AjaxDateFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateFieldPanel) AjaxSpinnerFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxSpinnerFieldPanel) AjaxDropDownChoicePanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDropDownChoicePanel) AjaxCheckBoxPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel) EncryptedFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.EncryptedFieldPanel) PageReference(org.apache.wicket.PageReference) FieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.FieldPanel) AjaxSpinnerFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxSpinnerFieldPanel) EncryptedFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.EncryptedFieldPanel) AjaxTextFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel) AjaxDateTimeFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateTimeFieldPanel) AjaxDateFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateFieldPanel) MultiFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.MultiFieldPanel) BinaryFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.BinaryFieldPanel) AbstractFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AbstractFieldPanel) AjaxTextFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel) AttrSchemaType(org.apache.syncope.common.lib.types.AttrSchemaType) StringResourceModel(org.apache.wicket.model.StringResourceModel) IModel(org.apache.wicket.model.IModel) ListModel(org.apache.wicket.model.util.ListModel) Model(org.apache.wicket.model.Model) PropertyModel(org.apache.wicket.model.PropertyModel) ResourceModel(org.apache.wicket.model.ResourceModel) BinaryFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.BinaryFieldPanel) AjaxDateTimeFieldPanel(org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateTimeFieldPanel)

Aggregations

AjaxCheckBoxPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel)3 AjaxTextFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel)3 MultiFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.MultiFieldPanel)3 PropertyModel (org.apache.wicket.model.PropertyModel)3 AjaxDateTimeFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateTimeFieldPanel)2 AjaxDropDownChoicePanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxDropDownChoicePanel)2 AjaxSpinnerFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxSpinnerFieldPanel)2 FieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.FieldPanel)2 IModel (org.apache.wicket.model.IModel)2 Model (org.apache.wicket.model.Model)2 AbstractFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AbstractFieldPanel)1 AjaxDateFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateFieldPanel)1 AjaxPasswordFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxPasswordFieldPanel)1 BinaryFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.BinaryFieldPanel)1 EncryptedFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.EncryptedFieldPanel)1 AttrSchemaType (org.apache.syncope.common.lib.types.AttrSchemaType)1 ConnConfProperty (org.apache.syncope.common.lib.types.ConnConfProperty)1 PageReference (org.apache.wicket.PageReference)1 PasswordTextField (org.apache.wicket.markup.html.form.PasswordTextField)1 ResourceModel (org.apache.wicket.model.ResourceModel)1