Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mand-mobile/platform

Package Overview
Dependencies
Maintainers
4
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mand-mobile/platform

mand-mobile runtime cross platform plugins

  • 3.0.1-alpha.9
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
4
Weekly downloads
 
Created
Source

@mand-mobile/platform

Runtime shims and compiletime plugins for smoothing out differences between platforms.

Component

transition

Usage
import TransitionPrimitive from '@mand-mobile/platform/lib/runtime/component/transition'
Props
  • show: Boolean, default: false
  • name: String
  • styles: Object
Events
  • beforeEnter
  • enter
  • afterEnter
  • beforeLeave
  • leave
  • afterLeave

scroll-view

Usage
import ScrollViewPrimitive from '@mand-mobile/platform/lib/runtime/component/scroll-view'
Props
  • scrollingX: Boolean, default: false
  • scrollingY: Boolean, default: true
  • height: [Number, String], default: 'auto'
  • refresherEnable: Boolean, default: false
  • endReachedThreshold: Number, default: 0
  • styles: Object

Events

  • refreshing
  • end-reached
  • scroll, params: { scrollTop, scrollLeft }

Methods

  • reflowScroller
  • getSizes: () => { wrapperW, wrapperH, contentW, contentH }
  • getOffsets: () => { left, top }
  • scrollTo: (left: number, top: number, isAnimation = false) => void
  • triggerRefresh
  • finishRefresh
  • finishLoadMore

toast

Usage
import toastFactory from '@mand-mobile/platform/lib/runtime/component/toast'
Methods
  • toastFactory: ToastOptions: VueOptions => Toast

dialog

Usage
import dialogFactory from '@mand-mobile/platform/lib/runtime/component/dialog'
Methods
  • dialogFactory: DialogOptions: VueOptions => Dialog

action-sheet

Usage
import actionSheetFactory from '@mand-mobile/platform/lib/runtime/component/action-sheet'
Methods
  • actionSheetFactory: ActionSheetOptions: VueOptions => ActionSheet

Module

Dom

Usage
import {Dom} from '@mand-mobile/platform/lib/runtime/module'

const $MDDom = Dom.bind(this) // scoped selector like refs
$MDDom().querySelector('xxxx').getScrollOffset()
API
documentElement

documentElement(): nodeRef

uniapp返回的是可视区域实例 查看详情

$MDDom().documentElement()
querySelector

querySelector(elNmae: string): nodeRef

export default {
  async mounted () {
    const testNodeRef = this.$MDDom().querySelector('.test')
    const rect: DOMRect = await testNodeRef.getBoundingClientRect()
  }
}
querySelectorAll

querySelectorAll(elNmae: string): nodeRef

uniapp中返回的不是真实数组,所以不能直接用length等属性,需调用getNode方法

export default {
  async mounted () {
    const firsttTestNodeRef = this.$MDDom().querySelector('.test')[0]
    const rect: DOMRect = await firsttTestNodeRef.getBoundingClientRect()
  }
}
getNode

getNode(): Promise<any[]>

web中不做处理直接返回dom节点,uniapp支持Canvas节点的获取 查看详情

const nodeRefs = $MDDom().querySelectorAll('.test')
const nodes = await nodeRefs.getNode()
 
 
console.log(nodes) // [node, node, ...]
 
const nodeRef = $MDDom().querySelector('.test')
const node = await nodeRefs.getNode()
 
console.log(node) 
getAttribute

getAttribute(prop: string): Promise<any>

uniapp中只能查询id或者nodesRef.fields方法中properties中可查询属性

export default {
  async mounted () {
    await $MDDom().querySelector('.test').getAttribute('id')
  }
}
getBoundingClientRect

getBoundingClientRect(): Promise<DOMRect>

export default {
  async mounted () {
    await $MDDom().querySelector('.test').getBoundingClientRect()
  }
}
getScrollOffset

getScrollOffset(): Promise<{scrollLeft: number, scrollTop: number }>

export default {
  async mounted () {
    await $MDDom().querySelector('.test').getScrollOffset()
  }
}
getComputedStyle

getComputedStyle(propList: Array<string>): Promise<object>

export default {
  async mounted () {
    await $MDDom().querySelector('.test').getComputedStyle(['position'])
  }
}

Device

Usage
import {Device} from '@mand-mobile/platform/lib/runtime/module'

const device = Device()
device.vibrate()

or

export default {
  mounted () {
    $MDDevice().vibrate()
  }
}
API
vibrate

短时震动,仅在小程序真机有效,web和小程序调试工具无效

Keywords

FAQs

Package last updated on 17 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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