Package com.intellij.openapi.vcs.actions

Source Code of com.intellij.openapi.vcs.actions.ShowMessageHistoryAction

/*
* Copyright 2000-2007 JetBrains s.r.o.
*
* 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 com.intellij.openapi.vcs.actions;

import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.editor.actions.ContentChooser;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vcs.CheckinProjectPanel;
import com.intellij.openapi.vcs.VcsBundle;
import com.intellij.openapi.vcs.VcsConfiguration;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
* Action showing the history of recently used commit messages. Source code of this class is provided
* as a sample of using the {@link CheckinProjectPanel} API. Actions to be shown in the commit dialog
* should be added to the <code>Vcs.MessageActionGroup</code> action group.
*
* @author lesya
* @since 5.1
*/
public class ShowMessageHistoryAction extends AnAction {
  public ShowMessageHistoryAction() {
    setEnabledInModalContext(true);
  }

  public void update(AnActionEvent e) {
    super.update(e);
    CheckinProjectPanel panel = (CheckinProjectPanel)e.getDataContext().getData(CheckinProjectPanel.PANEL);
    if (panel == null) {
      e.getPresentation().setVisible(false);
      e.getPresentation().setEnabled(false);
    } else {
      e.getPresentation().setVisible(true);
      final ArrayList<String> recentMessages = VcsConfiguration.getInstance(panel.getProject()).getRecentMessages();
      e.getPresentation().setEnabled(!recentMessages.isEmpty());
    }
  }

  public void actionPerformed(AnActionEvent e) {
    CheckinProjectPanel panel = (CheckinProjectPanel)e.getDataContext().getData(CheckinProjectPanel.PANEL);
    if (panel != null) {
      final Project project = panel.getProject();
      final VcsConfiguration configuration = VcsConfiguration.getInstance(project);

      final ArrayList<String> recentMessages = configuration.getRecentMessages();
      Collections.reverse(recentMessages);

      if (!recentMessages.isEmpty()) {

        final ContentChooser<String> contentChooser = new ContentChooser<String>(project, VcsBundle.message("dialog.title.choose.commit.message.from.history"), false){
          protected void removeContentAt(final String content) {
          }

          protected String getStringRepresentationFor(final String content) {
            return content;
          }

          protected List<String> getContents() {
            return recentMessages;
          }
        };
        contentChooser.show();
        if (contentChooser.isOK()) {
          final int selectedIndex = contentChooser.getSelectedIndex();
          if (selectedIndex >= 0) {
            panel.setCommitMessage(contentChooser.getAllContents().get(selectedIndex));
          }
        }
      }

    }
  }
}
TOP

Related Classes of com.intellij.openapi.vcs.actions.ShowMessageHistoryAction

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.