Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
cordova-plugin-contacts-x
Advanced tools
This Cordova Plugin is for managing Contacts. Why use this Plugin and not the "Official" one. Well, first: it's deprectated and no more work will be done there. Second (and more important): it uses a deprecated Library in iOS.
This Plugin is in active development!
This and other Open-Source Cordova Plugins are developed in my free time. To help ensure this plugin is kept updated, new features are added and bugfixes are implemented quickly, please donate a couple of dollars (or a little more if you can stretch) as this will help me to afford to dedicate time to its maintenance. Please consider donating if you're using this plugin in an app that makes you money, if you're being paid to make the app, if you're asking for new features or priority bug fixes.
Table of Content
>= 9.0.0
>= 9.0.0
>= 9
>= 22
This Plugin is developed in Swift and automaticaly adds the Plugin to Support Swift.
I developed it, testing with cordova-ios@6.1.0.
The iOS platform defines:
You can easily change it, by configure your config.xml by:
<edit-config file="*-Info.plist" mode="merge" target="NSContactsUsageDescription">
<string>your text</string>
</edit-config>
The plugin is available via a global variable named window.ContactsX
.
A TypeScript definition is included out of the Box. You can import it like this:
import ContactsX from 'cordova-plugin-contacts-x';
If an Error appeared this Plugin returns an Object in the failureCallback, that always has the following Structure:
{
"code": 0,
"message": "Some additional Info"
}
The code
is one of the Error Codes and always present, while the message
can be empty.
This is mostly something like an Exception Message.
The following Error Codes can be fired by this Plugin:
They can be accessed over window.ContactsX.ErrorCodes
and are present in the TypeScript definition too of course.
The list of available methods for this plugin is described below.
window.ContactsX.hasPermission(function(success) {
console.log(success);
}, function (error) {
console.error(error);
});
This Method returns an Object with the following field:
Apple only has one Permission, so in iOS read and write are always the same value.
Request Contact Permission
window.ContactsX.requestPermission(function(success) {
console.log(success);
}, function (error) {
console.error(error);
});
Same SuccessType as hasPermission()
Request Contact Write Permission (android only)
window.ContactsX.requestWritePermission(function(success) {
console.log(success);
}, function (error) {
console.error(error);
});
Same SuccessType as hasPermission()
Find Contacts by given options. If you don't set a field to true, it is not included or empty in the result
window.ContactsX.find(function(success) {
console.log(success);
}, function (error) {
console.error(error);
}, {
fields: {
phoneNumbers: true
}
});
This Method returns an Array of ContactX.
Launches the Contact Picker to select a single contact. Currently, all available fields are returned.
window.ContactsX.pick(function(success) {
console.log(success);
}, function (error) {
console.error(error);
});
This Method returns a single ContactX object.
Save or update a contact. If you provide the id
the contact will be updated. (remember to add rawId
on android also).
window.ContactsX.save(
{
firstName: "Hans",
familyName: "Test",
phoneNumebers: [{
type: "mobile",
value: "110"
}]
},
function(success) {
console.log(success);
},
function (error) {
console.error(error);
});
This Method returns the final ContactX object.
Delete a contact by id
window.ContactsX.delete("some_id",
function(success) {
console.log(success);
},
function (error) {
console.error(error);
});
The full Changelog is available here
2.0.0
rawId
added to contact object on androidpick
Method addedsave
Method addeddelete
Method addedrequestWritePermission
Method added (android only)hasPermission
now also return result for write
permission (same like read on iOS)FAQs
Cordova Plugins for managing contacts
The npm package cordova-plugin-contacts-x receives a total of 228 weekly downloads. As such, cordova-plugin-contacts-x popularity was classified as not popular.
We found that cordova-plugin-contacts-x demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.