mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-07 23:03:19 +08:00
feat(plugin): add globalization
This commit is contained in:
parent
fbd484583a
commit
90cc36b453
@ -26,6 +26,7 @@ import {Facebook} from './plugins/facebook';
|
|||||||
//import {File} from './plugins/file';
|
//import {File} from './plugins/file';
|
||||||
import {Flashlight} from './plugins/flashlight';
|
import {Flashlight} from './plugins/flashlight';
|
||||||
import {Geolocation} from './plugins/geolocation';
|
import {Geolocation} from './plugins/geolocation';
|
||||||
|
import {Globalization} from './plugins/globalization';
|
||||||
import {ImagePicker} from './plugins/imagepicker';
|
import {ImagePicker} from './plugins/imagepicker';
|
||||||
import {LaunchNavigator} from './plugins/launchnavigator';
|
import {LaunchNavigator} from './plugins/launchnavigator';
|
||||||
import {LocalNotifications} from './plugins/localnotifications';
|
import {LocalNotifications} from './plugins/localnotifications';
|
||||||
@ -57,6 +58,7 @@ export {
|
|||||||
//File,
|
//File,
|
||||||
Flashlight,
|
Flashlight,
|
||||||
Geolocation,
|
Geolocation,
|
||||||
|
Globalization,
|
||||||
ImagePicker,
|
ImagePicker,
|
||||||
LaunchNavigator,
|
LaunchNavigator,
|
||||||
LocalNotifications,
|
LocalNotifications,
|
||||||
@ -92,6 +94,7 @@ window['IonicNative'] = {
|
|||||||
//File: File,
|
//File: File,
|
||||||
Flashlight: Flashlight,
|
Flashlight: Flashlight,
|
||||||
Geolocation: Geolocation,
|
Geolocation: Geolocation,
|
||||||
|
Globalization: Globalization,
|
||||||
ImagePicker: ImagePicker,
|
ImagePicker: ImagePicker,
|
||||||
LaunchNavigator: LaunchNavigator,
|
LaunchNavigator: LaunchNavigator,
|
||||||
LocalNotifications: LocalNotifications,
|
LocalNotifications: LocalNotifications,
|
||||||
|
122
src/plugins/globalization.ts
Normal file
122
src/plugins/globalization.ts
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
import {Plugin, Cordova} from './plugin';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @name Globalization
|
||||||
|
* @description
|
||||||
|
* @usage
|
||||||
|
*/
|
||||||
|
@Plugin({
|
||||||
|
plugin: 'cordova-plugin-globalization',
|
||||||
|
pluginRef: 'navigator.globalization',
|
||||||
|
repo: 'https://github.com/apache/cordova-plugin-globalization'
|
||||||
|
})
|
||||||
|
export class Globalization {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the BCP-47 compliant language identifier tag to the successCallback with a properties object as a parameter. That object should have a value property with a String value.
|
||||||
|
* @return {Promise<{value:string}>}
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
static getPreferredLanguage() : Promise<{value:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the BCP 47 compliant locale identifier string to the successCallback with a properties object as a parameter.
|
||||||
|
* @return {Promise<{value:string}>}
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
static getLocaleName() : Promise<{value:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts date to string
|
||||||
|
* @param date
|
||||||
|
* @param options
|
||||||
|
* @return {Promise<{value:string}>}
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
successIndex: 1,
|
||||||
|
errorIndex: 2
|
||||||
|
})
|
||||||
|
static dateToString(date : Date, options : {formatLength:string, selector:string}) : Promise<{value:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param dateString
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
successIndex: 1,
|
||||||
|
errorIndex: 2
|
||||||
|
})
|
||||||
|
static stringToDate(dateString:string, options:{formatLength:string, selector:string}) : Promise<{year : number, month : number, day:number, hour:number, minute:number, second:number, millisecond:number}> {return}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
callbackOrder: 'reverse'
|
||||||
|
})
|
||||||
|
static getDatePattern(options:{formatLength:string, selector:string}) : Promise<{pattern:string}> {return}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
callbackOrder: 'reverse'
|
||||||
|
})
|
||||||
|
static getDateNames(options:{type,item}) : Promise<{value:Array<string>}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if day light saving is active
|
||||||
|
* @param date
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
static isDayLightSavingsTime(date:Date) : Promise<{dst:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get first day of week
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
static getFirstDayOfWeek() : Promise<{value:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
successIndex: 1,
|
||||||
|
errorIndex: 2
|
||||||
|
})
|
||||||
|
static numberToString(options:{type:string}) : Promise<{value:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param string
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
successIndex: 1,
|
||||||
|
errorIndex: 2
|
||||||
|
})
|
||||||
|
static stringToNumber(string:string, options:{type:string}) :Promise<{value}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param options
|
||||||
|
*/
|
||||||
|
@Cordova({
|
||||||
|
callbackOrder: 'reverse'
|
||||||
|
})
|
||||||
|
static getNumberPattern(options:{type:string}) : Promise<{pattern:string, symbol:string, fraction:number, rounding:number, positive:string, negative:string, decimal:string, grouping:string}> {return}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param currencyCode
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
static getCurrencyPattern(currencyCode:string) : Promise<{pattern, code, fraction, rounding, decimal, grouping}> {return}
|
||||||
|
|
||||||
|
}
|
@ -40,7 +40,7 @@ export interface smsOptionsAndroid {
|
|||||||
@Plugin({
|
@Plugin({
|
||||||
plugin: 'cordova-sms-plugin',
|
plugin: 'cordova-sms-plugin',
|
||||||
pluginRef: 'sms',
|
pluginRef: 'sms',
|
||||||
repo: 'https://github.com/cordova-sms/cordova-sms-plugin.git'
|
repo: 'https://github.com/cordova-sms/cordova-sms-plugin'
|
||||||
})
|
})
|
||||||
export class SMS {
|
export class SMS {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user