Same object edited by 2 users–proactively notifying users
This is a practical example about how two users that comes on the same page will be notified one about other( after an idea of Adrian Petcu) . See the picture :
With the NuGet package you can install in your application in this steps:
To run :
1. install package from Nuget
2. in Filter.Config add following line: filters.Add(new SameIdAlert.SameIdFilter());
3. In Route.Config, after
routes.MapHubs();
GlobalHost.DependencyResolver.Register(typeof(IAssemblyLocator) ,() => new SameIdAlert.SameIdAssemblyLocator());
4. In the View that you want the user to be notified add the following lines in the @section scripts{
<!–Script references. –>
<!–The jQuery library is required and is referenced by default in _Layout.cshtml. –>
<!–Reference the SignalR library. –>
<script src=”~/Scripts/jquery.signalR-1.1.3.js”></script> <!–or whatever signalr library version you have –>
<!–Reference the autogenerated SignalR hub script. –>
<script src=”~/signalr/hubs”></script>
<!–SignalR script to update the chat page and send messages.–>
and somewhere:
@{Html.RenderPartial(“SameId”);}
5. In _Layout move jquery declaration
@Scripts.Render(“~/bundles/jquery”)
before RenderBody
6. If you decide to put into _Layout and you want to skip an action, please put [SameIdSkipAttribute] to the action
7. If you want more action parameters than the default id , just put
[SameIdAttribute(“parameter name 1″,”parameter name2”)
to the action
8. If you decide that you want just several actions then modify
filters.Add(new SameIdAlert.SameIdFilter(false));
and put
[SameIdAttribute]
View online at http://SameId.apphb.com
Source code at https://github.com/ignatandrei/SameId
NuGet package at https://www.nuget.org/packages/sameid
Video demo at http://youtu.be/wjkoMs98Z8U
If you want to help me, see the issues that can be solved here:https://github.com/ignatandrei/SameId/issues
Leave a Reply