Added non-generic registration interface to IKernel and IWindsor to accommodate dynam...
[castle.git] / MonoRail / Castle.MonoRail.Framework / ViewComponents / UpdatePage.cs
blob7a1bff293edfab92846ec7a8aad447c6fd2079e3
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.MonoRail.Framework.ViewComponents
17 using System.IO;
18 using JSGeneration;
20 /// <summary>
21 /// Renders a javascript content that changes the page
22 /// elements using a special dsl-like language.
23 /// </summary>
24 ///
25 /// <seealso cref="IJSGenerator"/>
26 ///
27 /// <example>
28 /// The following illustrates its use.
29 /// <code>
30 /// #blockcomponent(UpdatePage)
31 /// $page.ReplaceHtml('myotherdiv', 'new content')
32 /// $page.Highlight('mydivid')
33 /// #end
34 /// </code>
35 /// </example>
36 /// <remarks>
37 /// The current implementation is dependent on
38 /// prototype.js and scriptaculous.js
39 /// </remarks>
40 public class UpdatePage : ViewComponent
42 /// <summary>
43 /// Called by the framework so the component can
44 /// render its content
45 /// </summary>
46 public override void Render()
48 Context.Writer.WriteLine(GenerateJS());
51 /// <summary>
52 /// Evaluates the component's body providing a <c>page</c>
53 /// instance which is a <see cref="IJSGenerator"/>
54 /// </summary>
55 /// <returns></returns>
56 protected string GenerateJS()
58 IViewEngineManager viewEngManager = EngineContext.Services.ViewEngineManager;
59 IViewEngine viewEngine = Context.ViewEngine;
60 IController currentController = EngineContext.CurrentController;
61 IControllerContext currentControllerCtx = EngineContext.CurrentControllerContext;
63 JSCodeGeneratorInfo jsCodeGen =
64 viewEngManager.CreateJSCodeGeneratorInfo(EngineContext, currentController, currentControllerCtx);
66 object generator = viewEngine.CreateJSGenerator(jsCodeGen, EngineContext, currentController, currentControllerCtx);
68 PropertyBag["page"] = generator;
70 Context.RenderBody(new StringWriter()); // Just for evaluation of generator
72 PropertyBag.Remove("page");
74 return generator.ToString();