-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
Copy pathtactionview.cpp
278 lines (222 loc) · 5.99 KB
/
tactionview.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/* Copyright (c) 2010-2025, AOYAMA Kazuharu
* All rights reserved.
*
* This software may be used and distributed according to the terms of
* the New BSD License, which is incorporated herein by reference.
*/
#include "tsystemglobal.h"
#include <QDir>
#include <QMutex>
#include <QMutexLocker>
#include <TActionController>
#include <TActionView>
#include <THtmlAttribute>
#include <THttpUtility>
#include <TReactComponent>
#include <TWebApplication>
/*!
\class TActionView
\brief The TActionView class is the abstract base class of views,
providing functionality common to view.
*/
/*!
Constructor.
*/
TActionView::TActionView() :
QObject(),
TViewHelper()
{
}
/*!
Returns a content processed by a action.
*/
QString TActionView::yield() const
{
return (subView) ? subView->toString() : QString();
}
/*!
Render the partial template given by \a templateName without layout.
*/
QString TActionView::renderPartial(const QString &templateName, const QVariantMap &vars) const
{
QString temp = templateName;
if (!temp.contains('/')) {
temp = QLatin1String("partial/") + temp;
}
return (actionController) ? actionController->getRenderingData(temp, vars) : QString();
}
/*!
Renders the React \a component on the server. Calls ReactDOMServer.renderToString()
internally.
*/
QString TActionView::renderReact(const QString &component)
{
QStringList path = {(Tf::app()->publicPath() + "js/components"),
(Tf::app()->publicPath() + "js")};
return TReactComponent(component, path).renderToString(component);
}
/*!
Returns a authenticity token for CSRF protection.
*/
QString TActionView::authenticityToken() const
{
return (actionController) ? QString::fromLatin1(actionController->authenticityToken().data()) : QString();
}
/*!
Returns flash variants;
*/
QVariantMap TActionView::flashVariants() const
{
static QVariantMap dummy;
return (actionController) ? actionController->flashVariants() : dummy;
}
/*!
\fn QString TActionView::echo(const THtmlAttribute &attr)
Outputs the string of the HTML attribute \a attr to a view
template.
*/
/*!
\fn QString TActionView::echo(const QVariant &var)
Outputs the variant variable \a var to a view template.
*/
/*!
\fn QString TActionView::echo(const QVariantMap &map)
Outputs the variantmap variable \a map to a view template.
*/
/*!
\fn QString TActionView::eh(const THtmlAttribute &attr)
Outputs a escaped string of the HTML attribute \a attr to
a view template.
*/
/*!
\fn QString TActionView::eh(const QVariant &var)
Outputs a escaped string of the variant variable \a var
to a view template.
*/
/*!
\fn QString TActionView::eh(const QVariantMap &map)
Outputs a escaped string of the variantmap variable \a map
to a view template.
*/
QString TActionView::fromValue(int n, int base)
{
return QString::number(n, base);
}
QString TActionView::fromValue(long n, int base)
{
return QString::number(n, base);
}
QString TActionView::fromValue(ulong n, int base)
{
return QString::number(n, base);
}
QString TActionView::fromValue(qlonglong n, int base)
{
return QString::number(n, base);
}
QString TActionView::fromValue(qulonglong n, int base)
{
return QString::number(n, base);
}
QString TActionView::fromValue(double d, char format, int precision)
{
return QString::number(d, format, precision);
}
QString TActionView::fromValue(const QJsonObject &object)
{
return QJsonDocument(object).toJson(QJsonDocument::Compact);
}
QString TActionView::fromValue(const QJsonArray &array)
{
return QJsonDocument(array).toJson(QJsonDocument::Compact);
}
QString TActionView::fromValue(const QJsonDocument &doc)
{
return doc.toJson(QJsonDocument::Compact);
}
QString TActionView::fromValue(const THtmlAttribute &attr)
{
return attr.toString().trimmed();
}
QString TActionView::fromValue(const QVariant &var)
{
if (var.userType() == QMetaType::QUrl) {
return var.toUrl().toString(QUrl::FullyEncoded);
} else {
return var.toString();
}
}
QString TActionView::fromValue(const QVariantMap &map)
{
return QJsonDocument::fromVariant(map).toJson(QJsonDocument::Compact);
}
/*!
Returns the requested HTTP message.
*/
const THttpRequest &TActionView::httpRequest() const
{
return controller()->httpRequest();
}
void TActionView::reset()
{
TViewHelper::clear();
responsebody.resize(0);
actionController = nullptr;
subView = nullptr;
variantMap.clear();
}
/*!
\fn QString TActionView::echo (const QString &str)
Outputs the string \a str to a view template.
*/
/*!
\fn QString TActionView::echo(const char *str)
Outputs the string \a str to a view template.
*/
/*!
\fn QString TActionView::echo(const QByteArray &str)
Outputs the array \a str to a view template.
*/
/*!
\fn QString TActionView::echo(int n, int base)
Outputs the number \a n to a view template.
*/
/*!
\fn QString TActionView::echo(double d, char format, int precision)
Outputs the number \a d to a view template.
*/
/*!
\fn QString TActionView::eh(const QString &str)
Outputs a escaped string of the \a str to a view template.
*/
/*!
\fn QString TActionView::eh(const char *str)
Outputs a escaped string of the \a str to a view template.
*/
/*!
\fn QString TActionView::eh(const QByteArray &str)
Outputs a escaped array of the \a str to a view template.
*/
/*!
\fn QString TActionView::eh(int n, int base)
Outputs the number \a n to a view template.
*/
/*!
\fn QString TActionView::eh(double d, char format, int precision)
Outputs the number \a d to a view template.
*/
/*!
\fn bool TActionView::hasVariant(const QString &name) const
Returns true if the QVariantMap variable for a view contains
an item with the \a name; otherwise returns false.
*/
/*!
\fn virtual QString TActionView::toString()
This function is reimplemented in subclasses to return a
string to render a view.
*/
/*!
\fn QVariant TActionView::variant(const QString &name) const
Returns the value associated with the \a name in the QVariantMap
variable for a view.
*/