Package org.brixcms.plugin.prototype

Source Code of org.brixcms.plugin.prototype.ManagePrototypesPanel$UniquePrototypeNameValidator

/**
* Licensed 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.brixcms.plugin.prototype;

import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.AjaxLink;
import org.apache.wicket.ajax.markup.html.form.AjaxButton;
import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow.WindowClosedCallback;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextField;
import org.apache.wicket.markup.html.link.Link;
import org.apache.wicket.markup.html.list.ListItem;
import org.apache.wicket.markup.html.list.ListView;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import org.apache.wicket.markup.html.panel.Panel;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.LoadableDetachableModel;
import org.apache.wicket.model.PropertyModel;
import org.apache.wicket.model.ResourceModel;
import org.apache.wicket.validation.IValidatable;
import org.apache.wicket.validation.IValidator;
import org.apache.wicket.validation.ValidationError;
import org.brixcms.Brix;
import org.brixcms.auth.Action;
import org.brixcms.auth.Action.Context;
import org.brixcms.plugin.prototype.auth.CreatePrototypeAction;
import org.brixcms.plugin.prototype.auth.DeletePrototypeAction;
import org.brixcms.plugin.prototype.auth.RestorePrototypeAction;
import org.brixcms.web.generic.BrixGenericPanel;
import org.brixcms.workspace.Workspace;
import org.brixcms.workspace.WorkspaceModel;

import java.util.List;

public class ManagePrototypesPanel extends BrixGenericPanel<Workspace> {
    private String prototypeName;

    public ManagePrototypesPanel(String id, final IModel<Workspace> model) {
        super(id, model);
        setOutputMarkupId(true);

        IModel<List<Workspace>> prototypesModel = new LoadableDetachableModel<List<Workspace>>() {
            @Override
            protected List<Workspace> load() {
                List<Workspace> list = PrototypePlugin.get().getPrototypes();
                return getBrix().filterVisibleWorkspaces(list, Context.ADMINISTRATION);
            }
        };

        Form<Void> modalWindowForm = new Form<Void>("modalWindowForm");
        add(modalWindowForm);

        final ModalWindow modalWindow = new ModalWindow("modalWindow");
        modalWindow.setInitialWidth(64);
        modalWindow.setWidthUnit("em");
        modalWindow.setUseInitialHeight(false);
        modalWindow.setResizable(false);
        modalWindow.setTitle(new ResourceModel("selectItems"));
        modalWindowForm.add(modalWindow);

        add(new ListView<Workspace>("prototypes", prototypesModel) {
            @Override
            protected IModel<Workspace> getListItemModel(IModel<? extends List<Workspace>> listViewModel, int index) {
                return new WorkspaceModel(listViewModel.getObject().get(index));
            }

            @Override
            protected void populateItem(final ListItem<Workspace> item) {
                PrototypePlugin plugin = PrototypePlugin.get();
                final String name = plugin.getUserVisibleName(item.getModelObject(), false);

                item.add(new Label("label", name));
                item.add(new Link<Void>("browse") {
                    @Override
                    public void onClick() {
                        model.setObject(item.getModelObject());
                    }
                });

                item.add(new AjaxLink<Void>("restoreItems") {
                    @Override
                    public void onClick(AjaxRequestTarget target) {
                        String prototypeId = item.getModelObject().getId();
                        String targetId = ManagePrototypesPanel.this.getModelObject().getId();
                        Panel panel = new RestoreItemsPanel(modalWindow.getContentId(), prototypeId, targetId);
                        modalWindow.setTitle(new ResourceModel("selectItems"));
                        modalWindow.setContent(panel);
                        modalWindow.show(target);
                    }

                    @Override
                    public boolean isVisible() {
                        Workspace target = ManagePrototypesPanel.this.getModelObject();
                        Action action = new RestorePrototypeAction(Context.ADMINISTRATION, item.getModelObject(), target);
                        return getBrix().getAuthorizationStrategy().isActionAuthorized(action);
                    }
                });

                item.add(new Link<Void>("delete") {
                    @Override
                    public void onClick() {
                        Workspace prototype = item.getModelObject();
                        prototype.delete();
                    }

                    @Override
                    public boolean isVisible() {
                        Action action = new DeletePrototypeAction(Context.ADMINISTRATION, item.getModelObject());
                        return getBrix().getAuthorizationStrategy().isActionAuthorized(action);
                    }
                });
            }
        });

        Form<Object> form = new Form<Object>("form") {
            @Override
            public boolean isVisible() {
                Workspace current = ManagePrototypesPanel.this.getModelObject();
                Action action = new CreatePrototypeAction(Context.ADMINISTRATION, current);
                return getBrix().getAuthorizationStrategy().isActionAuthorized(action);
            }
        };

        TextField<String> prototypeName = new TextField<String>("prototypeName", new PropertyModel<String>(this,
                "prototypeName"));
        form.add(prototypeName);

        prototypeName.setRequired(true);
        prototypeName.add(new UniquePrototypeNameValidator());

        final FeedbackPanel feedback;

        add(feedback = new FeedbackPanel("feedback"));
        feedback.setOutputMarkupId(true);

        form.add(new AjaxButton("submit") {
            @Override
            public void onSubmit(AjaxRequestTarget target, Form<?> form) {
                String workspaceId = ManagePrototypesPanel.this.getModelObject().getId();
                CreatePrototypePanel panel = new CreatePrototypePanel(modalWindow.getContentId(), workspaceId,
                        ManagePrototypesPanel.this.prototypeName);
                modalWindow.setContent(panel);
                modalWindow.setTitle(new ResourceModel("selectItemsToCreate"));
                modalWindow.setWindowClosedCallback(new WindowClosedCallback() {
                    public void onClose(AjaxRequestTarget target) {
                        target.addComponent(ManagePrototypesPanel.this);
                    }
                });
                modalWindow.show(target);
            }

            @Override
            protected void onError(AjaxRequestTarget target, Form<?> form) {
                target.addComponent(feedback);
            }
        });

        add(form);
    }

    private Brix getBrix() {
        // TODO: We don't really have a node here
        return Brix.get();
    }

    private class UniquePrototypeNameValidator implements IValidator {
        public void validate(IValidatable validatable) {
            String name = (String) validatable.getValue();
            if (PrototypePlugin.get().prototypeExists(name)) {
                validatable.error(new ValidationError().addMessageKey("UniquePrototypeNameValidator"));
            }
        }
    }
}
TOP

Related Classes of org.brixcms.plugin.prototype.ManagePrototypesPanel$UniquePrototypeNameValidator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.