Search in sources :

Example 6 with AjaxDropDownChoicePanel

use of org.apache.syncope.client.console.wicket.markup.html.form.AjaxDropDownChoicePanel 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

AjaxDropDownChoicePanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxDropDownChoicePanel)6 AjaxTextFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxTextFieldPanel)5 IModel (org.apache.wicket.model.IModel)5 PropertyModel (org.apache.wicket.model.PropertyModel)5 AjaxDateTimeFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateTimeFieldPanel)4 AjaxSpinnerFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxSpinnerFieldPanel)4 FieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.FieldPanel)4 MultiFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.MultiFieldPanel)4 AjaxDateFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxDateFieldPanel)3 BinaryFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.BinaryFieldPanel)3 EncryptedFieldPanel (org.apache.syncope.client.console.wicket.markup.html.form.EncryptedFieldPanel)3 Model (org.apache.wicket.model.Model)3 ArrayList (java.util.ArrayList)2 List (java.util.List)2 AjaxCheckBoxPanel (org.apache.syncope.client.console.wicket.markup.html.form.AjaxCheckBoxPanel)2 PageReference (org.apache.wicket.PageReference)2 AjaxRequestTarget (org.apache.wicket.ajax.AjaxRequestTarget)2 CompoundPropertyModel (org.apache.wicket.model.CompoundPropertyModel)2 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)1 BootstrapToggle (de.agilecoders.wicket.extensions.markup.html.bootstrap.form.checkbox.bootstraptoggle.BootstrapToggle)1