-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add Write Form Feature #40
base: develop
Are you sure you want to change the base?
Conversation
Modules/Sources/WriteFormFeature/Resources/Localizable.xcstrings
Outdated
Show resolved
Hide resolved
switch type { | ||
case .simple(let content, _): | ||
state.textContent = content | ||
return .send(._formResponse(.success([ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Что тут происходит конкретно
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Смотреть нужно с момента в TopicFeature:
case .reply(let authorId, let authorName):
state.writeForm = WriteFormFeature.State(formFor: .post(
topicId: state.topicId,
content: .simple("[SNAPBACK]\(authorId)[/SNAPBACK] [B]\(authorName)[/B], ", [])
))
Тут мы передаем в content:
snapback для ответа пользователю на его пост, и далее в выделенном тобой участке кода мы записываем как раз таки его ("[SNAPBACK]\(authorId)[/SNAPBACK] [B]\(authorName)[/B], "
) в state.textContent, который используется для хранения данных в поле для ответа.
Короче сделано это, чтобы наш снапбэк или любое другое содержимое (в будущем например цитата) не терялось, а было уже по умолчанию в поле ввода текста.
No description provided.