ant-design-blazor/components/core/JsInterop/JSInteropConstants.cs

90 lines
3.1 KiB
C#
Raw Normal View History

2020-03-10 15:25:29 +08:00
using System;
using System.Collections.Generic;
using System.Globalization;
2020-03-10 15:25:29 +08:00
using System.Text;
namespace AntDesign
2020-03-10 15:25:29 +08:00
{
public static class JSInteropConstants
{
private const string FUNC_PREFIX = "AntDesign.interop.";
2020-03-10 15:25:29 +08:00
public static string getDomInfo => $"{FUNC_PREFIX}getDomInfo";
public static string triggerEvent => $"{FUNC_PREFIX}triggerEvent";
public static string addFileClickEventListener => $"{FUNC_PREFIX}addFileClickEventListener";
public static string removeFileClickEventListener => $"{FUNC_PREFIX}removeFileClickEventListener";
public static string clearFile => $"{FUNC_PREFIX}clearFile";
public static string uploadFile => $"{FUNC_PREFIX}uploadFile";
public static string getObjectURL => $"{FUNC_PREFIX}getObjectURL";
public static string getFileInfo => $"{FUNC_PREFIX}getFileInfo";
2020-03-10 15:25:29 +08:00
public static string getBoundingClientRect => $"{FUNC_PREFIX}getBoundingClientRect";
public static string addDomEventListener => $"{FUNC_PREFIX}addDomEventListener";
2020-03-15 23:54:48 +08:00
public static string matchMedia => $"{FUNC_PREFIX}matchMedia";
2020-03-10 15:25:29 +08:00
public static string copy => $"{FUNC_PREFIX}copy";
public static string log => $"{FUNC_PREFIX}log";
public static string focus => $"{FUNC_PREFIX}focus";
public static string blur => $"{FUNC_PREFIX}blur";
public static string backTop => $"{FUNC_PREFIX}BackTop";
public static string getFirstChildDomInfo => $"{FUNC_PREFIX}getFirstChildDomInfo";
public static string addClsToFirstChild => $"{FUNC_PREFIX}addClsToFirstChild";
public static string addDomEventListenerToFirstChild => $"{FUNC_PREFIX}addDomEventListenerToFirstChild";
public static string addElementToBody => $"{FUNC_PREFIX}addElementToBody";
public static string delElementFromBody => $"{FUNC_PREFIX}delElementFromBody";
public static string addElementTo => $"{FUNC_PREFIX}addElementTo";
public static string delElementFrom => $"{FUNC_PREFIX}delElementFrom";
public static string getActiveElement => $"{FUNC_PREFIX}getActiveElement";
public static string focusDialog => $"{FUNC_PREFIX}focusDialog";
public static string getWindow = $"{FUNC_PREFIX}getWindow";
public static string disableBodyScroll => $"{FUNC_PREFIX}disableBodyScroll";
public static string enableBodyScroll => $"{FUNC_PREFIX}enableBodyScroll";
public static string CreateIconFromfontCN => $"{FUNC_PREFIX}createIconFromfontCN";
public static string getScroll => $"{FUNC_PREFIX}getScroll";
public static string getInnerText => $"{FUNC_PREFIX}getInnerText";
public static string getCursorXY => $"{FUNC_PREFIX}getCursorXY";
public static string disposeObj => $"{FUNC_PREFIX}disposeObj";
#region Draggable Modal
public static string enableDraggable => $"{FUNC_PREFIX}enableDraggable";
public static string disableDraggable => $"{FUNC_PREFIX}disableDraggable";
public static string resetModalPosition => $"{FUNC_PREFIX}resetModalPosition";
#endregion
2020-03-10 15:25:29 +08:00
}
}