Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Савенко Дмитрий #25

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

Asrom11
Copy link

@Asrom11 Asrom11 commented Dec 19, 2024

private readonly ITagCloudLayouter _layouter;
private readonly ITagCloudRenderer _renderer;

public TagCloudGenerator(IWordProcessor wordProcessor, ITagCloudLayouter layouter, ITagCloudRenderer renderer)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Да давай воспользуемся PrimaryCocstructor'ом, чтобы этот код каждый раз не править: я сейчас накину идей на подключение допзависимостей - сейчас это придется править в 3 местах, а так будет всего в одном.


public void GenerateCloud(string inputFilePath, string outputFilePath, Size imageSize)
{
var words = File.ReadAllLines(inputFilePath);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Давай эту штуку в отдельный интерфейс, типа ITextReadear: таким образом мы уже закладываем точку расширения на Исходный текст: поддерживать разные форматы файлов.

var tags = wordFrequencies
.OrderByDescending(pair => pair.Value)
.Select(pair => new Tag(pair.Key, pair.Value))
.ToList();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Вот этот подсчёт статистики, как мне кажется, тоже не обязанность этого класса - т.е. может эту обязанность переложить на какой-то отдельный интерфейс?


foreach (var tag in tags)
{
var size = new Size(tag.Frequency * 10, tag.Frequency * 10);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Почему на 10 умножаем?)
Как-то это надо пояснить - либо в отдельный метод, либо 10 в константу с понятным именем.


public interface ITagCloudGenerator
{
void GenerateCloud(string inputFilePath, string outputFilePath, Size imageSize);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Должна быть возможность задать цвета, шрифт и размер изображения.

Это по заданию обязательный пункт - пока я вижу поддержку размера изображения. Хотелось бы хотя бы простенькую поддержку цветов (задний фон, фон шрифта, массив наименований шрифтов - если не задано, то какие-то дефолтные значения).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants