Исходный код вики UI паттерны состояния

Версия 7.7 от Alexandr Fokin на 2022/12/29 23:51

Последние авторы
1 |(% style="width:75px" %) |(% style="width:108px" %) |(% style="width:634px" %) |(% style="width:674px" %)
2 |(% colspan="1" rowspan="3" style="width:75px" %)(((
3 ==== MVC ====
4 )))|(% style="width:108px" %)Model|(% style="width:634px" %)DTO, содержащая поля, необходимые для формирования View.|(% colspan="1" rowspan="3" style="width:674px" %)(((
5
6 )))
7 |(% style="width:108px" %)View|(% style="width:634px" %)Некоторый шаблон представления данных. (Шаблон разметки или структуры данных внешнего публичного интерфейса)
8 Содержит информацию о привязке конкретных полей Model.
9 |(% style="width:108px" %)Controller|(% style="width:634px" %)Модуль принимает входной запрос, формирует Model и передает его во View. Возвращает в ответе результат.
10 |(% colspan="1" style="width:75px" %) |(% style="width:108px" %) |(% style="width:634px" %) |(% colspan="1" style="width:674px" %)
11 |(% colspan="1" rowspan="3" style="width:75px" %)(((
12 ==== MVP ====
13 )))|(% style="width:108px" %)Model|(% style="width:634px" %) |(% colspan="1" rowspan="3" style="width:674px" %)
14 |(% style="width:108px" %)View|(% style="width:634px" %)
15 |(% style="width:108px" %)Presenter|(% style="width:634px" %)
16 |(% colspan="1" style="width:75px" %) |(% style="width:108px" %) |(% style="width:634px" %) |(% colspan="1" style="width:674px" %)
17 |(% colspan="1" rowspan="3" style="width:75px" %)(((
18 ==== MVVM ====
19 )))|(% style="width:108px" %)Model|(% style="width:634px" %) |(% colspan="1" rowspan="3" style="width:674px" %)(((
20 C# и WPF | Паттерн MVVM
21 [[https:~~/~~/metanit.com/sharp/wpf/22.1.php>>https://metanit.com/sharp/wpf/22.1.php]]
22 \\MVVM: полное понимание (+WPF) Часть 1
23 [[https:~~/~~/habr.com/ru/post/338518/>>https://habr.com/ru/post/338518/]]
24
25 WPF | Паттерн MVVM
26 [[https:~~/~~/professorweb.ru/my/WPF/documents_WPF/level36/36_5.php>>https://professorweb.ru/my/WPF/documents_WPF/level36/36_5.php]]
27 )))
28 |(% style="width:108px" %)View|(% style="width:634px" %)
29 |(% style="width:108px" %)View model|(% style="width:634px" %)
30 |(% colspan="1" style="width:75px" %) |(% style="width:108px" %) |(% style="width:634px" %) |(% colspan="1" style="width:674px" %)
31 |(% colspan="1" rowspan="3" style="width:75px" %)(((
32 ==== MVI ====
33 )))|(% style="width:108px" %)Model|(% style="width:634px" %) |(% colspan="1" rowspan="3" style="width:674px" %)(((
34 Современная MVI-архитектура на базе Kotlin
35 https://habr.com/ru/company/badoo/blog/429728/
36
37 Архитектура MVI
38 https://russianblogs.com/article/1258733528/
39
40 MVI - a Reactive Architecture Pattern
41 https://medium.com/quality-content/mvi-a-reactive-architecture-pattern-45c6f5096ab7
42
43 Реактивные приложения с Model-View-Intent. Часть 2: View и Intent
44 https://habr.com/ru/company/tinkoff/blog/338558/
45
46 ----
47
48 ===== Unidirectional Data or State Flow (UDF). =====
49
50 The Case for Unidirectional Data Flow
51 [[https:~~/~~/www.exclamationlabs.com/blog/the-case-for-unidirectional-data-flow/>>https://www.exclamationlabs.com/blog/the-case-for-unidirectional-data-flow/]]
52
53
54 )))
55 |(% style="width:108px" %)View|(% style="width:634px" %)
56 |(% style="width:108px" %)Intent|(% style="width:634px" %)
57 |(% colspan="1" style="width:75px" %) |(% style="width:108px" %) |(% style="width:634px" %) |(% colspan="1" style="width:674px" %)
58
59 ----
60
61 Паттерны для новичков: MVC vs MVP vs MVVM
62 https://habr.com/ru/post/215605/
63
64 Альтернативный взгляд на MVC, MVP и MVVM
65 [[https:~~/~~/medium.com/you-gotta-get-schwifty/альтернативный-взгляд-на-mvc-mvp-и-mvvm-389841cefa70>>https://medium.com/you-gotta-get-schwifty/альтернативный-взгляд-на-mvc-mvp-и-mvvm-389841cefa70]]
66
67 ----
68
69 ==== Внутренние ссылки: ====
70
71 ====== Дочерние страницы: ======
72
73 {{children/}}
74
75 ====== Обратные ссылки: ======
76
77 {{velocity}}
78 #set ($links = $doc.getBacklinks())
79 #if ($links.size() > 0)
80 #foreach ($docname in $links)
81 #set ($rdoc = $xwiki.getDocument($docname).getTranslatedDocument())
82 * [[$escapetool.xml($rdoc.fullName)]]
83 #end
84 #else
85 No back links for this page!
86 #end
87 {{/velocity}}
88
89 ----