增加FAjax支持。
This commit is contained in:
parent
20e134fba4
commit
fff8fc8adb
21
FAuth/Extensions/TagHelpers/FAjaxFunTagHelper.cs
Normal file
21
FAuth/Extensions/TagHelpers/FAjaxFunTagHelper.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using Microsoft.AspNetCore.Razor.TagHelpers;
|
||||
|
||||
namespace FAuth.Extensions.TagHelpers
|
||||
{
|
||||
[HtmlTargetElement("a",Attributes = "fajaxfun")]
|
||||
[HtmlTargetElement("form",Attributes = "fajaxfun")]
|
||||
public class FAjaxFunTagHelper:TagHelper
|
||||
{
|
||||
[HtmlAttributeName("fajaxfun")]
|
||||
public string Fun { get; set; }
|
||||
|
||||
public override void Process(TagHelperContext context,TagHelperOutput output) {
|
||||
//data-ajax="true" data-ajax-update="main" data-ajax-mode="replace"
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
output.Attributes.SetAttribute("data-ajax-update",this.Fun);
|
||||
output.Attributes.SetAttribute("data-ajax-mode","replace");
|
||||
|
||||
//base.Process(context,output);
|
||||
}
|
||||
}
|
||||
}
|
80
FAuth/Extensions/TagHelpers/FAjaxTagHelper.cs
Normal file
80
FAuth/Extensions/TagHelpers/FAjaxTagHelper.cs
Normal file
|
@ -0,0 +1,80 @@
|
|||
using Falcon.Extend;
|
||||
using Microsoft.AspNetCore.Razor.TagHelpers;
|
||||
|
||||
namespace FAuth.Extensions.TagHelpers
|
||||
{
|
||||
/// <summary>
|
||||
/// 实现ajax调用的属性
|
||||
/// </summary>
|
||||
[HtmlTargetElement("a")]
|
||||
[HtmlTargetElement("form")]
|
||||
public class FAjaxTagHelper:TagHelper
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否允许FAjax,默认True,一般不需要设置
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-enable")]
|
||||
public bool Enable { get; set; } = true;
|
||||
/// <summary>
|
||||
/// 更新元素选择器
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-updata")]
|
||||
public string Updata { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 更新模式。默认为空,可选BEFORE、AFTER或REPLACE-WITH
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-model")]
|
||||
public string Model { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 开始ajax调用之前执行
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-begin")]
|
||||
public string OnBegin { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 调用ajax之后执行
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-complete")]
|
||||
public string OnComplete { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 调用成功后执行
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-success")]
|
||||
public string OnSuccess { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 调用失败执行
|
||||
/// </summary>
|
||||
[HtmlAttributeName("fajax-failure")]
|
||||
public string OnFailure { get; set; } = "";
|
||||
|
||||
public override void Process(TagHelperContext context,TagHelperOutput output) {
|
||||
if(this.Updata.IsNotNullOrEmpty()) {
|
||||
output.Attributes.SetAttribute("data-ajax-update",this.Updata);
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
}
|
||||
if(this.Model.IsNotNullOrEmpty()) {
|
||||
output.Attributes.SetAttribute("data-ajax-mode",this.Model);
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
}
|
||||
if(this.OnBegin.IsNotNullOrEmpty()) {
|
||||
output.Attributes.SetAttribute("data-ajax-begin",this.OnBegin);
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
}
|
||||
if(this.OnComplete.IsNotNullOrEmpty()) {
|
||||
output.Attributes.SetAttribute("data-ajax-complete",this.OnComplete);
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
}
|
||||
if(this.OnSuccess.IsNotNullOrEmpty()) {
|
||||
output.Attributes.SetAttribute("data-ajax-success",this.OnSuccess);
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
}
|
||||
if(this.OnFailure.IsNotNullOrEmpty()) {
|
||||
output.Attributes.SetAttribute("data-ajax-failure",this.OnFailure);
|
||||
output.Attributes.SetAttribute("data-ajax","true");
|
||||
}
|
||||
if(!this.Enable) {
|
||||
output.Attributes.RemoveAll("data-ajax");
|
||||
}
|
||||
//base.Process(context,output);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
|
||||
|
@ -11,6 +11,8 @@
|
|||
<PackageReference Include="Microsoft.Extensions.Caching.Redis" Version="2.2.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="3.1.3" />
|
||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.3" />
|
||||
<PackageReference Include="Microsoft.jQuery.Unobtrusive.Ajax" Version="3.2.6" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.2" />
|
||||
<PackageReference Include="NLog" Version="4.7.0" />
|
||||
<PackageReference Include="NLog.Web.AspNetCore" Version="4.9.1" />
|
||||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.1.1" />
|
||||
|
@ -49,6 +51,10 @@
|
|||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
<UserProperties appsettings_1json__JsonSchema="" />
|
||||
</VisualStudio>
|
||||
</ProjectExtensions>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
</div>
|
||||
</footer>
|
||||
<script src="~/lib/jquery/dist/jquery.min.js"></script>
|
||||
<script src="~/lib/jquery.unobtrusive-ajax/jquery.unobtrusive-ajax.min.js"></script>
|
||||
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="~/js/site.js" asp-append-version="true"></script>
|
||||
@RenderSection("Scripts", required: false)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
@using FAuth
|
||||
@using FAuth.Models
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@addTagHelper FAuth.Extensions.TagHelpers.*, FAuth
|
205
FAuth/wwwroot/lib/jquery.unobtrusive-ajax/jquery.unobtrusive-ajax.js
vendored
Normal file
205
FAuth/wwwroot/lib/jquery.unobtrusive-ajax/jquery.unobtrusive-ajax.js
vendored
Normal file
|
@ -0,0 +1,205 @@
|
|||
// Unobtrusive Ajax support library for jQuery
|
||||
// Copyright (c) .NET Foundation. All rights reserved.
|
||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
// @version v3.2.6
|
||||
//
|
||||
// Microsoft grants you the right to use these script files for the sole
|
||||
// purpose of either: (i) interacting through your browser with the Microsoft
|
||||
// website or online service, subject to the applicable licensing or use
|
||||
// terms; or (ii) using the files as included with a Microsoft product subject
|
||||
// to that product's license terms. Microsoft reserves all other rights to the
|
||||
// files not expressly granted by Microsoft, whether by implication, estoppel
|
||||
// or otherwise. Insofar as a script file is dual licensed under GPL,
|
||||
// Microsoft neither took the code under GPL nor distributes it thereunder but
|
||||
// under the terms set out in this paragraph. All notices and licenses
|
||||
// below are for informational purposes only.
|
||||
|
||||
/*jslint white: true, browser: true, onevar: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: false */
|
||||
/*global window: false, jQuery: false */
|
||||
|
||||
(function ($) {
|
||||
var data_click = "unobtrusiveAjaxClick",
|
||||
data_target = "unobtrusiveAjaxClickTarget",
|
||||
data_validation = "unobtrusiveValidation";
|
||||
|
||||
function getFunction(code, argNames) {
|
||||
var fn = window, parts = (code || "").split(".");
|
||||
while (fn && parts.length) {
|
||||
fn = fn[parts.shift()];
|
||||
}
|
||||
if (typeof (fn) === "function") {
|
||||
return fn;
|
||||
}
|
||||
argNames.push(code);
|
||||
return Function.constructor.apply(null, argNames);
|
||||
}
|
||||
|
||||
function isMethodProxySafe(method) {
|
||||
return method === "GET" || method === "POST";
|
||||
}
|
||||
|
||||
function asyncOnBeforeSend(xhr, method) {
|
||||
if (!isMethodProxySafe(method)) {
|
||||
xhr.setRequestHeader("X-HTTP-Method-Override", method);
|
||||
}
|
||||
}
|
||||
|
||||
function asyncOnSuccess(element, data, contentType) {
|
||||
var mode;
|
||||
|
||||
if (contentType.indexOf("application/x-javascript") !== -1) { // jQuery already executes JavaScript for us
|
||||
return;
|
||||
}
|
||||
|
||||
mode = (element.getAttribute("data-ajax-mode") || "").toUpperCase();
|
||||
$(element.getAttribute("data-ajax-update")).each(function (i, update) {
|
||||
var top;
|
||||
|
||||
switch (mode) {
|
||||
case "BEFORE":
|
||||
$(update).prepend(data);
|
||||
break;
|
||||
case "AFTER":
|
||||
$(update).append(data);
|
||||
break;
|
||||
case "REPLACE-WITH":
|
||||
$(update).replaceWith(data);
|
||||
break;
|
||||
default:
|
||||
$(update).html(data);
|
||||
break;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function asyncRequest(element, options) {
|
||||
var confirm, loading, method, duration;
|
||||
|
||||
confirm = element.getAttribute("data-ajax-confirm");
|
||||
if (confirm && !window.confirm(confirm)) {
|
||||
return;
|
||||
}
|
||||
|
||||
loading = $(element.getAttribute("data-ajax-loading"));
|
||||
duration = parseInt(element.getAttribute("data-ajax-loading-duration"), 10) || 0;
|
||||
|
||||
$.extend(options, {
|
||||
type: element.getAttribute("data-ajax-method") || undefined,
|
||||
url: element.getAttribute("data-ajax-url") || undefined,
|
||||
cache: (element.getAttribute("data-ajax-cache") || "").toLowerCase() === "true",
|
||||
beforeSend: function (xhr) {
|
||||
var result;
|
||||
asyncOnBeforeSend(xhr, method);
|
||||
result = getFunction(element.getAttribute("data-ajax-begin"), ["xhr"]).apply(element, arguments);
|
||||
if (result !== false) {
|
||||
loading.show(duration);
|
||||
}
|
||||
return result;
|
||||
},
|
||||
complete: function () {
|
||||
loading.hide(duration);
|
||||
getFunction(element.getAttribute("data-ajax-complete"), ["xhr", "status"]).apply(element, arguments);
|
||||
},
|
||||
success: function (data, status, xhr) {
|
||||
asyncOnSuccess(element, data, xhr.getResponseHeader("Content-Type") || "text/html");
|
||||
getFunction(element.getAttribute("data-ajax-success"), ["data", "status", "xhr"]).apply(element, arguments);
|
||||
},
|
||||
error: function () {
|
||||
getFunction(element.getAttribute("data-ajax-failure"), ["xhr", "status", "error"]).apply(element, arguments);
|
||||
}
|
||||
});
|
||||
|
||||
options.data.push({ name: "X-Requested-With", value: "XMLHttpRequest" });
|
||||
|
||||
method = options.type.toUpperCase();
|
||||
if (!isMethodProxySafe(method)) {
|
||||
options.type = "POST";
|
||||
options.data.push({ name: "X-HTTP-Method-Override", value: method });
|
||||
}
|
||||
|
||||
// change here:
|
||||
// Check for a Form POST with enctype=multipart/form-data
|
||||
// add the input file that were not previously included in the serializeArray()
|
||||
// set processData and contentType to false
|
||||
var $element = $(element);
|
||||
if ($element.is("form") && $element.attr("enctype") == "multipart/form-data") {
|
||||
var formdata = new FormData();
|
||||
$.each(options.data, function (i, v) {
|
||||
formdata.append(v.name, v.value);
|
||||
});
|
||||
$("input[type=file]", $element).each(function () {
|
||||
var file = this;
|
||||
$.each(file.files, function (n, v) {
|
||||
formdata.append(file.name, v);
|
||||
});
|
||||
});
|
||||
$.extend(options, {
|
||||
processData: false,
|
||||
contentType: false,
|
||||
data: formdata
|
||||
});
|
||||
}
|
||||
// end change
|
||||
|
||||
$.ajax(options);
|
||||
}
|
||||
|
||||
function validate(form) {
|
||||
var validationInfo = $(form).data(data_validation);
|
||||
return !validationInfo || !validationInfo.validate || validationInfo.validate();
|
||||
}
|
||||
|
||||
$(document).on("click", "a[data-ajax=true]", function (evt) {
|
||||
evt.preventDefault();
|
||||
asyncRequest(this, {
|
||||
url: this.href,
|
||||
type: "GET",
|
||||
data: []
|
||||
});
|
||||
});
|
||||
|
||||
$(document).on("click", "form[data-ajax=true] input[type=image]", function (evt) {
|
||||
var name = evt.target.name,
|
||||
target = $(evt.target),
|
||||
form = $(target.parents("form")[0]),
|
||||
offset = target.offset();
|
||||
|
||||
form.data(data_click, [
|
||||
{ name: name + ".x", value: Math.round(evt.pageX - offset.left) },
|
||||
{ name: name + ".y", value: Math.round(evt.pageY - offset.top) }
|
||||
]);
|
||||
|
||||
setTimeout(function () {
|
||||
form.removeData(data_click);
|
||||
}, 0);
|
||||
});
|
||||
|
||||
$(document).on("click", "form[data-ajax=true] :submit", function (evt) {
|
||||
var name = evt.currentTarget.name,
|
||||
target = $(evt.target),
|
||||
form = $(target.parents("form")[0]);
|
||||
|
||||
form.data(data_click, name ? [{ name: name, value: evt.currentTarget.value }] : []);
|
||||
form.data(data_target, target);
|
||||
|
||||
setTimeout(function () {
|
||||
form.removeData(data_click);
|
||||
form.removeData(data_target);
|
||||
}, 0);
|
||||
});
|
||||
|
||||
$(document).on("submit", "form[data-ajax=true]", function (evt) {
|
||||
var clickInfo = $(this).data(data_click) || [],
|
||||
clickTarget = $(this).data(data_target),
|
||||
isCancel = clickTarget && (clickTarget.hasClass("cancel") || clickTarget.attr('formnovalidate') !== undefined);
|
||||
evt.preventDefault();
|
||||
if (!isCancel && !validate(this)) {
|
||||
return;
|
||||
}
|
||||
asyncRequest(this, {
|
||||
url: this.action,
|
||||
type: this.method || "GET",
|
||||
data: clickInfo.concat($(this).serializeArray())
|
||||
});
|
||||
});
|
||||
}(jQuery));
|
16
FAuth/wwwroot/lib/jquery.unobtrusive-ajax/jquery.unobtrusive-ajax.min.js
vendored
Normal file
16
FAuth/wwwroot/lib/jquery.unobtrusive-ajax/jquery.unobtrusive-ajax.min.js
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
// Unobtrusive Ajax support library for jQuery
|
||||
// Copyright (c) .NET Foundation. All rights reserved.
|
||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||
// @version v3.2.6
|
||||
//
|
||||
// Microsoft grants you the right to use these script files for the sole
|
||||
// purpose of either: (i) interacting through your browser with the Microsoft
|
||||
// website or online service, subject to the applicable licensing or use
|
||||
// terms; or (ii) using the files as included with a Microsoft product subject
|
||||
// to that product's license terms. Microsoft reserves all other rights to the
|
||||
// files not expressly granted by Microsoft, whether by implication, estoppel
|
||||
// or otherwise. Insofar as a script file is dual licensed under GPL,
|
||||
// Microsoft neither took the code under GPL nor distributes it thereunder but
|
||||
// under the terms set out in this paragraph. All notices and licenses
|
||||
// below are for informational purposes only.
|
||||
!function(t){function a(t,a){for(var e=window,r=(t||"").split(".");e&&r.length;)e=e[r.shift()];return"function"==typeof e?e:(a.push(t),Function.constructor.apply(null,a))}function e(t){return"GET"===t||"POST"===t}function r(t,a){e(a)||t.setRequestHeader("X-HTTP-Method-Override",a)}function n(a,e,r){var n;r.indexOf("application/x-javascript")===-1&&(n=(a.getAttribute("data-ajax-mode")||"").toUpperCase(),t(a.getAttribute("data-ajax-update")).each(function(a,r){switch(n){case"BEFORE":t(r).prepend(e);break;case"AFTER":t(r).append(e);break;case"REPLACE-WITH":t(r).replaceWith(e);break;default:t(r).html(e)}}))}function i(i,u){var o,c,d,s;if(o=i.getAttribute("data-ajax-confirm"),!o||window.confirm(o)){c=t(i.getAttribute("data-ajax-loading")),s=parseInt(i.getAttribute("data-ajax-loading-duration"),10)||0,t.extend(u,{type:i.getAttribute("data-ajax-method")||void 0,url:i.getAttribute("data-ajax-url")||void 0,cache:"true"===(i.getAttribute("data-ajax-cache")||"").toLowerCase(),beforeSend:function(t){var e;return r(t,d),e=a(i.getAttribute("data-ajax-begin"),["xhr"]).apply(i,arguments),e!==!1&&c.show(s),e},complete:function(){c.hide(s),a(i.getAttribute("data-ajax-complete"),["xhr","status"]).apply(i,arguments)},success:function(t,e,r){n(i,t,r.getResponseHeader("Content-Type")||"text/html"),a(i.getAttribute("data-ajax-success"),["data","status","xhr"]).apply(i,arguments)},error:function(){a(i.getAttribute("data-ajax-failure"),["xhr","status","error"]).apply(i,arguments)}}),u.data.push({name:"X-Requested-With",value:"XMLHttpRequest"}),d=u.type.toUpperCase(),e(d)||(u.type="POST",u.data.push({name:"X-HTTP-Method-Override",value:d}));var p=t(i);if(p.is("form")&&"multipart/form-data"==p.attr("enctype")){var f=new FormData;t.each(u.data,function(t,a){f.append(a.name,a.value)}),t("input[type=file]",p).each(function(){var a=this;t.each(a.files,function(t,e){f.append(a.name,e)})}),t.extend(u,{processData:!1,contentType:!1,data:f})}t.ajax(u)}}function u(a){var e=t(a).data(d);return!e||!e.validate||e.validate()}var o="unobtrusiveAjaxClick",c="unobtrusiveAjaxClickTarget",d="unobtrusiveValidation";t(document).on("click","a[data-ajax=true]",function(t){t.preventDefault(),i(this,{url:this.href,type:"GET",data:[]})}),t(document).on("click","form[data-ajax=true] input[type=image]",function(a){var e=a.target.name,r=t(a.target),n=t(r.parents("form")[0]),i=r.offset();n.data(o,[{name:e+".x",value:Math.round(a.pageX-i.left)},{name:e+".y",value:Math.round(a.pageY-i.top)}]),setTimeout(function(){n.removeData(o)},0)}),t(document).on("click","form[data-ajax=true] :submit",function(a){var e=a.currentTarget.name,r=t(a.target),n=t(r.parents("form")[0]);n.data(o,e?[{name:e,value:a.currentTarget.value}]:[]),n.data(c,r),setTimeout(function(){n.removeData(o),n.removeData(c)},0)}),t(document).on("submit","form[data-ajax=true]",function(a){var e=t(this).data(o)||[],r=t(this).data(c),n=r&&(r.hasClass("cancel")||void 0!==r.attr("formnovalidate"));a.preventDefault(),(n||u(this))&&i(this,{url:this.action,type:this.method||"GET",data:e.concat(t(this).serializeArray())})})}(jQuery);
|
Loading…
Reference in New Issue
Block a user