JS: add oldBottomMargin, oldHeight & bottomMargin
This commit is contained in:
parent
ad29f284cd
commit
f16b8b8125
@ -1,4 +1,4 @@
|
|||||||
import { Group, Panel, gravity, Color, LayoutSpec, vlayout, LayoutConfigImpl, layoutConfig, modal, keyboard, text, input, Input, InputType, Gravity, stack } from "doric";
|
import { Group, Panel, gravity, Color, LayoutSpec, vlayout, layoutConfig, modal, keyboard, text, input, Input, InputType, Gravity, stack } from "doric";
|
||||||
import { title, label, colors } from "./utils";
|
import { title, label, colors } from "./utils";
|
||||||
|
|
||||||
function getInput(c: Partial<Input>) {
|
function getInput(c: Partial<Input>) {
|
||||||
@ -69,7 +69,7 @@ class KeyboardDemo extends Panel {
|
|||||||
layoutConfig: layoutConfig().just(),
|
layoutConfig: layoutConfig().just(),
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
keyboard(context).subscribe(data => {
|
keyboard(context).subscribe(data => {
|
||||||
bottomView.translationY = -data.height
|
bottomView.translationY = - (data.bottomMargin + data.height)
|
||||||
}).then(e => {
|
}).then(e => {
|
||||||
modal(context).toast(`Keyboard Subscribe`)
|
modal(context).toast(`Keyboard Subscribe`)
|
||||||
this.subscribeId = e
|
this.subscribeId = e
|
||||||
|
3
doric-js/index.d.ts
vendored
3
doric-js/index.d.ts
vendored
@ -996,6 +996,9 @@ declare module 'doric/lib/src/native/keyboard' {
|
|||||||
import { BridgeContext } from "doric/lib/src/runtime/global";
|
import { BridgeContext } from "doric/lib/src/runtime/global";
|
||||||
export function keyboard(context: BridgeContext): {
|
export function keyboard(context: BridgeContext): {
|
||||||
subscribe: (callback: (data: {
|
subscribe: (callback: (data: {
|
||||||
|
oldBottomMargin: number;
|
||||||
|
oldHeight: number;
|
||||||
|
bottomMargin: number;
|
||||||
height: number;
|
height: number;
|
||||||
}) => void) => Promise<string>;
|
}) => void) => Promise<string>;
|
||||||
unsubscribe: (subscribeId: string) => Promise<any>;
|
unsubscribe: (subscribeId: string) => Promise<any>;
|
||||||
|
3
doric-js/lib/src/native/keyboard.d.ts
vendored
3
doric-js/lib/src/native/keyboard.d.ts
vendored
@ -1,6 +1,9 @@
|
|||||||
import { BridgeContext } from "../runtime/global";
|
import { BridgeContext } from "../runtime/global";
|
||||||
export declare function keyboard(context: BridgeContext): {
|
export declare function keyboard(context: BridgeContext): {
|
||||||
subscribe: (callback: (data: {
|
subscribe: (callback: (data: {
|
||||||
|
oldBottomMargin: number;
|
||||||
|
oldHeight: number;
|
||||||
|
bottomMargin: number;
|
||||||
height: number;
|
height: number;
|
||||||
}) => void) => Promise<string>;
|
}) => void) => Promise<string>;
|
||||||
unsubscribe: (subscribeId: string) => Promise<any>;
|
unsubscribe: (subscribeId: string) => Promise<any>;
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
import { BridgeContext } from "../runtime/global"
|
import { BridgeContext } from "../runtime/global"
|
||||||
export function keyboard(context: BridgeContext) {
|
export function keyboard(context: BridgeContext) {
|
||||||
return {
|
return {
|
||||||
subscribe: (callback: (data: { height: number }) => void) => {
|
subscribe: (callback: (data: { oldBottomMargin: number, oldHeight: number, bottomMargin: number, height: number }) => void) => {
|
||||||
return context.callNative('keyboard', 'subscribe', context.function2Id(callback)) as Promise<string>
|
return context.callNative('keyboard', 'subscribe', context.function2Id(callback)) as Promise<string>
|
||||||
},
|
},
|
||||||
unsubscribe: (subscribeId: string) => {
|
unsubscribe: (subscribeId: string) => {
|
||||||
|
16
doric-web/dist/index.js
vendored
16
doric-web/dist/index.js
vendored
@ -4196,6 +4196,18 @@ function notch(context) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function keyboard(context) {
|
||||||
|
return {
|
||||||
|
subscribe: (callback) => {
|
||||||
|
return context.callNative('keyboard', 'subscribe', context.function2Id(callback));
|
||||||
|
},
|
||||||
|
unsubscribe: (subscribeId) => {
|
||||||
|
context.removeFuncById(subscribeId);
|
||||||
|
return context.callNative('keyboard', 'unsubscribe', subscribeId);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
class Observable {
|
class Observable {
|
||||||
constructor(provider, clz) {
|
constructor(provider, clz) {
|
||||||
this.observers = new Set;
|
this.observers = new Set;
|
||||||
@ -4342,6 +4354,7 @@ exports.hlayout = hlayout;
|
|||||||
exports.image = image;
|
exports.image = image;
|
||||||
exports.input = input;
|
exports.input = input;
|
||||||
exports.internalScheme = internalScheme;
|
exports.internalScheme = internalScheme;
|
||||||
|
exports.keyboard = keyboard;
|
||||||
exports.layoutConfig = layoutConfig;
|
exports.layoutConfig = layoutConfig;
|
||||||
exports.list = list;
|
exports.list = list;
|
||||||
exports.listItem = listItem;
|
exports.listItem = listItem;
|
||||||
@ -4420,6 +4433,7 @@ var doric_web = (function (exports, axios, sandbox) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
exports.LayoutSpec = void 0;
|
||||||
(function (LayoutSpec) {
|
(function (LayoutSpec) {
|
||||||
LayoutSpec[LayoutSpec["EXACTLY"] = 0] = "EXACTLY";
|
LayoutSpec[LayoutSpec["EXACTLY"] = 0] = "EXACTLY";
|
||||||
LayoutSpec[LayoutSpec["WRAP_CONTENT"] = 1] = "WRAP_CONTENT";
|
LayoutSpec[LayoutSpec["WRAP_CONTENT"] = 1] = "WRAP_CONTENT";
|
||||||
@ -5901,6 +5915,8 @@ ${content}
|
|||||||
exports.toPixelString = toPixelString;
|
exports.toPixelString = toPixelString;
|
||||||
exports.toRGBAString = toRGBAString;
|
exports.toRGBAString = toRGBAString;
|
||||||
|
|
||||||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
|
||||||
return exports;
|
return exports;
|
||||||
|
|
||||||
}({}, axios, doric));
|
}({}, axios, doric));
|
||||||
|
2
doric-web/dist/index.js.map
vendored
2
doric-web/dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user