blob: 57a28c08b95b3584f22a489c11dd55c7d6ec9ff8 [file] [log] [blame]
/*
* Copyright 2000-2013 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.tasks.trello;
import com.intellij.tasks.Comment;
import com.intellij.tasks.Task;
import com.intellij.tasks.TaskRepository;
import com.intellij.tasks.TaskType;
import com.intellij.tasks.trello.model.TrelloCard;
import com.intellij.tasks.trello.model.TrelloCommentAction;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
import java.util.Date;
import java.util.List;
/**
* @author Mikhail Golubev
*/
public class TrelloTask extends Task {
private static final TrelloIconBuilder ourIconBuilder = new TrelloIconBuilder(16);
private TrelloCard myCard;
private TaskRepository myRepository;
public TrelloTask(TrelloCard card, TaskRepository repository) {
myCard = card;
myRepository = repository;
}
@NotNull
@Override
public String getId() {
return myCard.getId();
}
@NotNull
@Override
public String getSummary() {
return myCard.getName();
}
@Nullable
@Override
public String getDescription() {
return myCard.getDescription();
}
@NotNull
@Override
public Comment[] getComments() {
List<TrelloCommentAction> comments = myCard.getComments();
return comments.toArray(new Comment[comments.size()]);
}
@NotNull
@Override
public Icon getIcon() {
return ourIconBuilder.buildIcon(myCard.getColors());
}
@NotNull
@Override
public TaskType getType() {
return TaskType.OTHER;
}
@Nullable
@Override
public Date getUpdated() {
return myCard.getDateLastActivity();
}
@Nullable
@Override
public Date getCreated() {
return null;
}
@Override
public boolean isClosed() {
// IDEA-111470, IDEA-111475
return myCard.isClosed() || !myCard.isVisible();
}
@Override
public boolean isIssue() {
return true;
}
@Nullable
@Override
public String getIssueUrl() {
return myCard.getUrl();
}
@Override
public String getPresentableName() {
return myCard.getName();
}
@Nullable
@Override
public TaskRepository getRepository() {
return myRepository;
}
}