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

Notifications center #134

Merged
merged 45 commits into from
Oct 19, 2017
Merged

Notifications center #134

merged 45 commits into from
Oct 19, 2017

Conversation

kvld
Copy link
Contributor

@kvld kvld commented Oct 12, 2017

Задача: #APPS-1481

Коротко для Release Notes, в формате «Сделали/Добавили/Исправили N»:
Добавили раздел с уведомлениями

Описание:
Новый раздел с уведомлениями.

notifications

TODO

  • Loading и empty состояния
  • Роутинг
  • Починить тесты
  • Фикс отступов внутри Tabman
  • Персистентность
  • Пуши
  • PromiseKit
  • Отметить все прочитанными
  • Кликабельные области для кнопок справа

@kvld kvld added the main label Oct 12, 2017
@kvld kvld added this to the 1.45 milestone Oct 12, 2017
@kvld kvld self-assigned this Oct 12, 2017
@kvld kvld requested a review from Ostrenkiy October 12, 2017 11:40
@Ostrenkiy
Copy link
Contributor

Надо бы dev в ветку подмерджить и посмотреть, что там с тестами.
Будь осторожен с CoreData при мердже, пожалуйста. Поставь версию CoreData с нотификациями после той, что сейчас в dev, ок?

Copy link
Contributor

@Ostrenkiy Ostrenkiy left a comment

Choose a reason for hiding this comment

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

В целом хорошо. Давай пока отправим это в бету, а завтра выпустим итоговый вариант.

@@ -213,4 +225,40 @@ class DeepLinkRouter {
)

}

static func routeToDiscussionWithId(_ lessonId: Int, stepId: Int, discussionId: Int, completion: @escaping ([UIViewController]) -> Void) {
Copy link
Contributor

Choose a reason for hiding this comment

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

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

@@ -157,6 +157,11 @@ class NewProfileViewController: MenuViewController, ProfileView {
navigationController?.pushViewController(vc, animated: true)
}

func navigateToNotifications() {
Copy link
Contributor

Choose a reason for hiding this comment

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

Это нигде не используется. Не знаю, стоит ли здесь и в ProfilePresenter оставлять.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Не стоит, это осталось случайно.

import CoreData

extension Notification {
// FIXME: CREATE GENERIC CLASS
Copy link
Contributor

Choose a reason for hiding this comment

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

хорошая идея


enum NotificationType: String {
var localizedName: String {
let localizedNames: [NotificationType: String] = [
Copy link
Contributor

Choose a reason for hiding this comment

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

А чем это лучше switch self-а ?
switch self без default statement-а позволит тебе не забыть добавить локализованное имя при добавлении нового типа нотификаций, или как-то сгруппировать старые, например.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Справедливо, осталось от какого-то другого кейса просто.

//

import Foundation

/*
Extracts information from the given notification
*/
class NotificationDataExtractor {
Copy link
Contributor

Choose a reason for hiding this comment

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

Хорошо отрефакторил класс, круто!

import Alamofire
import SwiftyJSON

class NotificationsAPI {
Copy link
Contributor

Choose a reason for hiding this comment

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

Хорошо было бы заюзать PromiseKit для запросов в этом классе. (можно потом, в feature/new-home добавил PromiseKit обертку над APIEndpoint)

}

fileprivate func loadData(page: Int, in section: NotificationsSection) -> Promise<(Bool, NotificationViewDataStruct)> {
// FIXME: temporary wrapper
Copy link
Contributor

Choose a reason for hiding this comment

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

вот это такое себе, но пока можно оставить

// FIXME: temporary wrapper
func retrieve(page: Int, notificationType: NotificationType?) -> Promise<(Meta, [Notification])> {
return Promise { fulfill, reject in
// TODO: ugly performRequest() call
Copy link
Contributor

Choose a reason for hiding this comment

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

думаю, можно будет написать PromiseKit-обертку над performRequest(), чтобы все выглядело посимпатичнее. (не сейчас)

@kvld kvld merged commit 8734b77 into dev Oct 19, 2017
@kvld kvld deleted the feature/notifications branch October 19, 2017 16:14
@Ostrenkiy Ostrenkiy mentioned this pull request Oct 22, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants