New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fengui

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fengui - npm Package Compare versions

Comparing version 0.7.8 to 0.7.9

167

component/fjApp/index.js

@@ -1,62 +0,61 @@

'use strict';
import browserEnv from "fengui/util/browserEnv";
import Promise from 'bluebird';
import * as analysis from 'fengui/util/analysis';
import _ from 'lodash';
'use strict'
import browserEnv from 'fengui/util/browserEnv'
import Promise from 'bluebird'
import * as analysis from 'fengui/util/analysis'
import _ from 'lodash'
var appShareAnalytics = function (opts) {
let suc = opts.success
let failure = opts.failure;
let failure = opts.failure
opts.success = getFnName(function () {
suc && suc instanceof Function && suc();
suc && suc instanceof Function && suc()
analysis.trackEventValue('app-share-success', {
url: opts.link
});
});
})
})
opts.failure = getFnName(function () {
failure && failure instanceof Function && failure();
analysis.trackEventValue("app-share-cancel", {
failure && failure instanceof Function && failure()
analysis.trackEventValue('app-share-cancel', {
url: opts.link
});
});
})
})
}
let getFnName = function (callback) {
var fnName = 'fn_' + parseInt(Math.random() * 10000) + '_' + new Date().getTime();
var fnName = 'fn_' + parseInt(Math.random() * 10000) + '_' + new Date().getTime()
window[fnName] = (typeof callback === 'function') ? callback : function () {
};
return fnName;
};
}
return fnName
}
let readyNum = 0;
function ready() {
let readyNum = 0
function ready () {
if (window.FengjrApp) {
return Promise.resolve();
return Promise.resolve()
} else if (readyNum > 10) {
return Promise.reject();
return Promise.reject()
}
readyNum++;
return Promise.delay(200).then(() => ready());
readyNum++
return Promise.delay(200).then(() => ready())
};
let isAvailable = function (fnName) {
return !!(window.FengjrApp && window.FengjrApp[fnName]);
};
return !!(window.FengjrApp && window.FengjrApp[fnName])
}
export function share(shareInfo) {
let opts = _.clone(shareInfo);
export function share (shareInfo) {
let opts = _.clone(shareInfo)
ready().then(() => {
appShareAnalytics(opts);
appShareAnalytics(opts)
if (browserEnv.isInAndroidApp()) {
window.FengjrApp.share(JSON.stringify(opts));
window.FengjrApp.share(JSON.stringify(opts))
} else if (browserEnv.isInIOSApp()) {
window.FengjrApp.share(opts);
window.FengjrApp.share(opts)
}
});
})
}
export function showShareButton(shareInfo) {
let opts = _.clone(shareInfo);
export function showShareButton (shareInfo) {
let opts = _.clone(shareInfo)
if (/^[/][/]/.test(opts.imgUrl)) {

@@ -66,89 +65,89 @@ opts.imgUrl = opts.imgUrl.replace(/^[/][/]/, 'http://')

ready().then(() => {
setTimeout(()=> {
appShareAnalytics(opts);
setTimeout(() => {
appShareAnalytics(opts)
if (browserEnv.isInAndroidApp()) {
window.FengjrApp.showShareButton(JSON.stringify(opts));
window.FengjrApp.showShareButton(JSON.stringify(opts))
} else if (browserEnv.isInIOSApp()) {
window.FengjrApp.showShareButton(opts);
window.FengjrApp.showShareButton(opts)
}
}, 200);
}, 200)
})
}
export function hiddenShareButton() {
setTimeout(()=> {
window.FengjrApp.hiddenShareButton();
}, 100);
export function hiddenShareButton () {
setTimeout(() => {
window.FengjrApp.hiddenShareButton()
}, 100)
}
export function getUser(callback) {
export function getUser (callback) {
ready().then(() => {
window.FengjrApp.getUser(getFnName(callback));
});
window.FengjrApp.getUser(getFnName(callback))
})
}
export function login(success, cancel) {
export function login (success, cancel) {
getUser(function (userinfo) {
if (userinfo.isLogin) {
return success();
return success()
}
if (typeof cancel === 'function') {
window.FengjrApp.login(getFnName(success), getFnName(cancel));
window.FengjrApp.login(getFnName(success), getFnName(cancel))
} else {
window.FengjrApp.login(getFnName(success));
window.FengjrApp.login(getFnName(success))
}
});
})
}
export function selectAddress(callback) {
export function selectAddress (callback) {
if (isAvailable('selectAddress')) {
window.FengjrApp.selectAddress(getFnName(callback));
window.FengjrApp.selectAddress(getFnName(callback))
}
}
export function register(callback) {
window.FengjrApp.showRegister(getFnName(callback));
export function register (callback) {
window.FengjrApp.showRegister(getFnName(callback))
}
export function toPageRouter(path, replace) {
export function toPageRouter (path, replace) {
ready().then(() => {
let origin = browserEnv.getAppVersion() > '2.3.4' ? 'fengjr://' : location.origin;
let routerOpts = {url: origin + path, finish: !!replace};
let origin = browserEnv.getAppVersion() > '2.3.4' ? 'fengjr://' : location.origin
let routerOpts = {url: origin + path, finish: !!replace}
if (browserEnv.isInAndroidApp()) {
isAvailable('toPageRouter') && window.FengjrApp.toPageRouter(
JSON.stringify(routerOpts));
JSON.stringify(routerOpts))
} else if (browserEnv.isInIOSApp()) {
isAvailable('toPageRouter') && window.FengjrApp.toPageRouter(routerOpts);
isAvailable('toPageRouter') && window.FengjrApp.toPageRouter(routerOpts)
}
});
})
}
export function setPageTitle(title) {
export function setPageTitle (title) {
ready().then(() => {
isAvailable('setPageTitle') && window.FengjrApp.setPageTitle(title);
});
isAvailable('setPageTitle') && window.FengjrApp.setPageTitle(title)
})
}
export function toggleActionBarRightTitle(titleInfo) {
export function toggleActionBarRightTitle (titleInfo) {
ready().then(() => {
if (browserEnv.isInAndroidApp()) {
isAvailable('toggleActionBarRightText') && window.FengjrApp.toggleActionBarRightText(JSON.stringify(titleInfo));
isAvailable('toggleActionBarRightText') && window.FengjrApp.toggleActionBarRightText(JSON.stringify(titleInfo))
} else if (browserEnv.isInIOSApp()) {
isAvailable('toggleActionBarRightText') && window.FengjrApp.toggleActionBarRightText(titleInfo);
isAvailable('toggleActionBarRightText') && window.FengjrApp.toggleActionBarRightText(titleInfo)
}
});
})
}
export function getSessionInfo(callback) {
export function getSessionInfo (callback) {
ready().then(() => {
if (!isAvailable('getSessionInfo')) {
return callback(null);
return callback(null)
}
window.FengjrApp.getSessionInfo(getFnName(callback));
});
window.FengjrApp.getSessionInfo(getFnName(callback))
})
}
export function closeToRoot() {
export function closeToRoot () {
ready().then(() => {
if (isAvailable('closeCurrentPushPage')) {
window.FengjrApp.closeCurrentPushPage({});
window.FengjrApp.closeCurrentPushPage({})
}

@@ -158,16 +157,16 @@ })

export function close() {
return window.FengjrApp && window.FengjrApp.closeCurrentPage('fuck');
export function close () {
return window.FengjrApp && window.FengjrApp.closeCurrentPage('fuck')
}
export function addCalendarEvent(opts, callback) {
export function addCalendarEvent (opts, callback) {
ready().then(() => {
if (isAvailable('addCalendarEvent')) {
if (browserEnv.isInAndroidApp()) {
window.FengjrApp.addCalendarEvent(JSON.stringify(opts), getFnName(callback));
window.FengjrApp.addCalendarEvent(JSON.stringify(opts), getFnName(callback))
} else if (browserEnv.isInIOSApp()) {
window.FengjrApp.addCalendarEvent(opts, getFnName(callback));
window.FengjrApp.addCalendarEvent(opts, getFnName(callback))
}
} else {
return callback('not support');
return callback('not support')
}

@@ -177,10 +176,12 @@ })

export function getAppInfo(callback) {
export function getAppInfo (callback) {
ready().then(() => {
if (isAvailable('getAppInfo')) {
window.FengjrApp.getAppInfo(getFnName(callback));
window.FengjrApp.getAppInfo(getFnName(callback))
} else {
return callback(null);
return callback(null)
}
})
}
export default exports
{
"name": "fengui",
"version": "0.7.8",
"version": "0.7.9",
"description": "",

@@ -88,3 +88,15 @@ "main": "dist/fengjr",

"util/"
]
],
"standard": {
"globals": [
"location",
"_",
"$"
],
"ignore": [
"/build/",
"**/TEMPLATE.jsx",
"**/_design*.js"
]
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc