forked from treefrogframework/treefrog-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtactionview.cpp
More file actions
224 lines (193 loc) · 5.24 KB
/
Copy pathtactionview.cpp
File metadata and controls
224 lines (193 loc) · 5.24 KB
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
/* Copyright (c) 2010-2019, 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();
}
/*!
Outputs the string of the HTML attribute \a attr to a view
template.
*/
QString TActionView::echo(const THtmlAttribute &attr)
{
responsebody += attr.toString().trimmed();
return QString();
}
/*!
\fn QString TActionView::echo(const QVariant &var)
Outputs the variant variable \a var to a view template.
*/
QString TActionView::echo(const QVariant &var)
{
if (var.userType() == QMetaType::QUrl) {
responsebody += var.toUrl().toString(QUrl::FullyEncoded);
} else {
responsebody += var.toString();
}
return QString();
}
/*!
Outputs the variantmap variable \a map to a view template.
*/
QString TActionView::echo(const QVariantMap &map)
{
responsebody += QJsonDocument::fromVariant(map).toJson(QJsonDocument::Compact);
return QString();
}
/*!
Outputs a escaped string of the HTML attribute \a attr to
a view template.
*/
QString TActionView::eh(const THtmlAttribute &attr)
{
return echo(THttpUtility::htmlEscape(attr.toString().trimmed()));
}
/*!
\fn QString TActionView::eh(const QVariant &var)
Outputs a escaped string of the variant variable \a var
to a view template.
*/
QString TActionView::eh(const QVariant &var)
{
if (var.userType() == QMetaType::QUrl) {
return echo(var.toUrl().toString(QUrl::FullyEncoded));
} else {
return echo(THttpUtility::htmlEscape(var.toString()));
}
}
/*!
Outputs a escaped string of the variantmap variable \a map
to a view template.
*/
QString TActionView::eh(const QVariantMap &map)
{
return echo(THttpUtility::htmlEscape(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.
*/