mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-01-03 10:25:00 +01:00
parent
270abc5551
commit
dc544cef63
@ -1,6 +1,6 @@
|
||||
import React, { Component } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import vCard from 'vcf'
|
||||
// import vCard from 'vcf'
|
||||
import FileSaver from 'file-saver'
|
||||
import Social from '../molecules/Social'
|
||||
import './Footer.scss'
|
||||
@ -12,22 +12,22 @@ class Footer extends Component {
|
||||
}
|
||||
|
||||
constructVcard() {
|
||||
const meta = this.props.meta
|
||||
const contact = new vCard()
|
||||
const photo = meta.avatarBase64
|
||||
// const meta = this.props.meta
|
||||
// const contact = new vCard()
|
||||
// const photo = meta.avatarBase64
|
||||
|
||||
contact.set('fn', meta.title)
|
||||
contact.set('title', meta.tagline)
|
||||
contact.set('email', meta.email)
|
||||
contact.set('url', meta.url, { type: 'Portfolio' })
|
||||
contact.add('url', meta.social.Blog, { type: 'Blog' })
|
||||
contact.set('nickname', 'kremalicious')
|
||||
contact.add('x-socialprofile', meta.social.Twitter, { type: 'twitter' })
|
||||
contact.add('x-socialprofile', meta.social.GitHub, { type: 'GitHub' })
|
||||
contact.set('photo', photo, { encoding: 'b', type: 'JPEG' })
|
||||
// contact.set('fn', meta.title)
|
||||
// contact.set('title', meta.tagline)
|
||||
// contact.set('email', meta.email)
|
||||
// contact.set('url', meta.url, { type: 'Portfolio' })
|
||||
// contact.add('url', meta.social.Blog, { type: 'Blog' })
|
||||
// contact.set('nickname', 'kremalicious')
|
||||
// contact.add('x-socialprofile', meta.social.Twitter, { type: 'twitter' })
|
||||
// contact.add('x-socialprofile', meta.social.GitHub, { type: 'GitHub' })
|
||||
// contact.set('photo', photo, { encoding: 'b', type: 'JPEG' })
|
||||
|
||||
const vcard = contact.toString('3.0')
|
||||
this.downloadVcard(vcard, meta)
|
||||
// const vcard = contact.toString('3.0')
|
||||
// this.downloadVcard(vcard, meta)
|
||||
}
|
||||
|
||||
downloadVcard(vcard, meta) {
|
||||
@ -48,9 +48,9 @@ class Footer extends Component {
|
||||
<footer className="footer">
|
||||
<Social meta={meta} minimal />
|
||||
<p className="footer__actions">
|
||||
<a href="#" onClick={this.handleAddressbookClick}>
|
||||
{/* <a href="#" onClick={this.handleAddressbookClick}>
|
||||
Add to addressbook
|
||||
</a>
|
||||
</a> */}
|
||||
<a href={meta.gpg}>PGP/GPG key</a>
|
||||
</p>
|
||||
<p>
|
||||
|
Loading…
Reference in New Issue
Block a user