Code Monkey home page Code Monkey logo

Comments (7)

Imperio8 avatar Imperio8 commented on May 28, 2024 2

A simpler solution woud be:

const download = (vCardString, fileName) => {
	let fileURL = window.URL.createObjectURL(new Blob([vCardString]));
	let fileLink = document.createElement('a');
	fileLink.href = fileURL;
	fileLink.setAttribute('download', fileName);
	document.body.appendChild(fileLink);
	fileLink.click();
};

This should work in any js file. :)

from vcards-js.

xrayian avatar xrayian commented on May 28, 2024 2

hey, I am using typescript with my code and it won't let me set values to the vCard, so all I'm getting is start and end tag and a bunch of ;;;'s

here's my implementation

<script setup lang="ts">
import vCard from 'vcards-js';

//...

const generate_vCard = () => {
    vCard.firstName = 'Rayian';
    vCard.lastName = 'Mahi';
    console.log(vCard.getFormattedString())
    download(vCard.getFormattedString(), 'vcardFile.vcf')
};

The TS error I'm getting is Property 'firstName' does not exist on type '() => vCard'.ts(2339)

I can only access the attributes when I invoke the vCard function, but that wont let me set new values.

import vCardFactory from 'vcards-js';

const vCard = vCardFactory();

this fixed my issue

from vcards-js.

pynner avatar pynner commented on May 28, 2024

Did you make any progress?

from vcards-js.

enesser avatar enesser commented on May 28, 2024

Would be nice to have a Vue and React component. However, for the purposes of Vue you should just be able to use vanilla JavaScript. I know at least one user has done this.

If I were trying to make it work entirely in the browser, I might try to use (with .getFormattedString()):
https://stackoverflow.com/a/12006048

Except I would use a text/x-vcard as the mime-type instead of HTML.

from vcards-js.

mo9a7i avatar mo9a7i commented on May 28, 2024

I used it on my NuxtJs code which is built on top of VueJS
Just a simple npm install
Then on the file
Import vcard from 'vcards-js'
And it works

Not sure what ur facing

from vcards-js.

carlosaroca avatar carlosaroca commented on May 28, 2024

I used it on my NuxtJs code which is built on top of VueJS
Just a simple npm install
Then on the file
Import vcard from 'vcards-js'
And it works

Not sure what ur facing

Im doing the same but I dont know how use it in a component, I already import vcard like you

from vcards-js.

xrayian avatar xrayian commented on May 28, 2024

hey, I am using typescript with my code and it won't let me set values to the vCard, so all I'm getting is start and end tag and a bunch of ;;;'s

here's my implementation

<script setup lang="ts">
import vCard from 'vcards-js';

//...

const generate_vCard = () => {
    vCard.firstName = 'Rayian';
    vCard.lastName = 'Mahi';
    console.log(vCard.getFormattedString())
    download(vCard.getFormattedString(), 'vcardFile.vcf')
};

The TS error I'm getting is
Property 'firstName' does not exist on type '() => vCard'.ts(2339)

I can only access the attributes when I invoke the vCard function, but that wont let me set new values.

from vcards-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.