// tslint:disable: max-line-length /** * * DownloadModalHelp * */ import * as React from 'react'; // import styled from 'styles/styled-components'; import { FormattedMessage } from 'react-intl'; import messages from './messages'; import { Field, Control, Checkbox, } from 'quinoa-design-library'; import Modal from 'components/Modal'; interface OwnProps { isOpen: boolean; onRequestClose: () => void; } const initialShowHelpAtEachDownload = localStorage.getItem('tesselle/show-help-at-each-download') === 'true' ? 'true' : 'false'; const DownloadModalHelp: React.SFC = (props: OwnProps) => { const { isOpen, onRequestClose } = props; const [showHelpAtEachDownload, setShowHelpAtEachDownload] = React.useState(initialShowHelpAtEachDownload); const onCheck = () => { if (showHelpAtEachDownload === 'true') { localStorage.setItem('tesselle/show-help-at-each-download', 'false'); setShowHelpAtEachDownload('false'); } else { localStorage.setItem('tesselle/show-help-at-each-download', 'true'); setShowHelpAtEachDownload('true'); } }; const title = ; const footer = ( Show this help at each download ); return (

In order to get your data out there, the archive downloaded from Tesselle when clicking on the "download" button can be used in two ways:

  1. to archive your work, version it, or share it with coworkers, and possibly to re-upload from the homepage of the tool later
  2. to publish your work on the web

For the matter of publication, the archived folder which is downloaded from the tool is a plain static website that can be uploaded anywhere on a personal server or web hosting service.

For instance, you can use Netlify drop as a free and straightforward way to publish the site of the web. To do so, go to the Netlify drop webpage, drag and drop the downloaded archive file on it, and ... that's it, your document is online !

As an alternative, you can also use github pages as a publication solution. You can refer to this video tutorial for that matter.

); }; export default DownloadModalHelp;