Giter VIP home page Giter VIP logo

app's Introduction

Formette

Forms as a service

Build Status Known Vulnerabilities Codacy Badge Greenkeeper badge

app's People

Contributors

greenkeeper[bot] avatar vacom avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

app's Issues

An in-range update of lint-staged is breaking the build 🚨

The devDependency lint-staged was updated from 8.0.4 to 8.0.5.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

lint-staged is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v8.0.5

8.0.5 (2018-11-17)

Bug Fixes

Commits

The new version differs by 2 commits.

  • 503110d fix: Use listr-update-renderer from npm (#542)
  • 6f6c08d docs(readme): refine prettier examples (#541)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of react-syntax-highlighter is breaking the build 🚨

The dependency react-syntax-highlighter was updated from 10.0.1 to 10.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

react-syntax-highlighter is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 9 commits.

  • 399d529 10.1.0
  • 1f70afc New supported languages due to prism upgrade
  • e8d28f1 Create .nvmrc
  • c280829 Merge pull request #157 from conorhastings/jakeChange
  • b01981a Add supported languages array to normal prism and highlight
  • 4f5b81c Add tests & fix prism supported languages array
  • c95ba0b Expose supportedLanguages on a static field
  • 25d9482 Merge pull request #154 from pure-js/patch-1
  • a6dadd5 Update README.md

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of react is breaking the build 🚨

There have been updates to the react monorepo:

    • The dependency react was updated from 16.6.1 to 16.6.2.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the react group definition.

react is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

LogRocket confirmation

Sign in to LogRocket here.

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsb2dpbl9uYW1lIjoiRm9ybWV0dGUiLCJpbnRlZ3JhdGlvbl9pZCI6MTI1fQ.cxzY3r3UAD_ALtmzc8YcEhLuO11tFHJ_2lcCjyFVOhM

New form

  • Create the page interface;
  • Give a title, the names of the fields;
  • Check fields and save in DB;
  • generate the new URL for the user to copy;

Custom Redirect

Send your form submitters to a custom success page or any other valid URL.

Profile

  • Create the page interface;
  • Show basic account information, name, email etc;
  • Allow to edit this information;
  • Update the all app with the new information by the user like username on navbar;

Form Data

  • Create the page interface;
  • allow editing the form;
  • allow to delete the form;
  • show feedback on these actions;
  • display the data collected in table format;
  • display URL so that the user can copy;

An in-range update of husky is breaking the build 🚨

The devDependency husky was updated from 1.1.3 to 1.1.4.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

husky is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 9 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

CSV export broken

When trying to download a CSV compilation of received form data, clicking the button silently fails.

PDF generation works for the overview and detail views and contains their respective contents.

A CSV export of all received data may be desirable.

An in-range update of styled-components is breaking the build 🚨

The dependency styled-components was updated from 4.0.3 to 4.1.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

styled-components is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.1.0
  • Performance optimization for fully static (no function interpolation) styled-components by avoiding using ThemeConsumer since it isn't necessary, by @mxstbr (see #2166)

  • Allow disabling "speedy" mode via global SC_DISABLE_SPEEDY variable, by @devrelm (see #2185)

    To make use of this, you can either set SC_DISABLE_SPEEDY in your app's entry file or use something like webpack.DefinePlugin to do it at build time:

    webpack.DefinePlugin({
      SC_DISABLE_SPEEDY: true,
    });
  • Attrs can now be passed a function (see #2200); thanks @oliverlaz for providing an early PoC PR for this!

    e.g.:

    styled.div.attrs(props => ({ 'aria-title': props.title }))``;
  • Fix the warnTooManyClasses dev helper not being totally dead code eliminated in production (see #2200)

  • Deprecate functions as object keys for object-form attrs (see #2200)

    e.g.:

    styled.div.attrs({ 'aria-title': props => props.title })``; // bad
    styled.div.attrs(props => ({ 'aria-title': props.title }))``; // good

    Support for this will be removed in styled-components v5. The primary impetus behind this change is to eliminate confusion around basic functions vs styled-components vs React components provided as values in the object-form attrs constructor, each of which has different handling behaviors. The single outer function to receive the props and then return a props object is conceptually simpler.

  • The standalone CDN build is now UMD-compliant and can be used with RequireJS, etc.

  • Add pixels to unitless numbers when object interpolation is used, by @Fer0x (see #2173)

  • Trying to interpolate a non-styled component into CSS is now a hard error, rather than a warning (see #2173)

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

API - Backend

  • [] Create the service so that you can receive the future data of the users and their forms;
  • [] create a post type endpoint (API) to generate the urls;
  • [] Verify this data with the DB to ensure that the user exists;

My forms

  • Create the page interface;
  • Show all forms created by the user;
  • allow to interact with the created forms;
  • Create shortcuts like edit, delete, copy form url;
  • Show the correct animation;
  • Verify if the user validated is email to continued to use the app;

An in-range update of react-apollo is breaking the build 🚨

The dependency react-apollo was updated from 2.3.0 to 2.3.1.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

react-apollo is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Missing Authentication Token

When creating a new public form on formette.com and trying to visit it, private and logged in browser sessions display:

{

    "message": "Missing Authentication Token"

}

This is surprising, as the form is set to be public.

An in-range update of @atlaskit/dropdown-menu is breaking the build 🚨

The dependency @atlaskit/dropdown-menu was updated from 6.1.20 to 6.1.21.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

@atlaskit/dropdown-menu is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Sign In

  • Create the page interface;
  • Check all fields;
  • Communicate with the DB, enter and save the token;

An in-range update of apollo-client is breaking the build 🚨

The dependency apollo-client was updated from 2.4.5 to 2.4.6.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

apollo-client is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Auto Responses

Thank people who submit to your forms with personalized confirmation emails.

Spam Filtering

filter annoying spam emails.

Ways:

  • RECAPTCHA
  • HONEY POT
  • CSRF TOKEN
  • IP FILTER
  • CONTENT FILTER
  • REFERER HEADER
  • ORIGIN HEADER
  • Banning IP addresses
  • Disallow Links (Text)
  • The Anti-Spam Question

File Uploads

Add a file upload field to your form and let people add attachments securely.

Future Pricing

Free

  • 5 forms
  • Visualização de informação;
  • 250 registos por form
  • Spam Filtering

Pro

  • Formularios ilimitados;
  • Registos ilimitados;
  • Endpoints personalizados;
  • Verificação de campos de formulario;
  • Visualização, edição, filtragem, manipulação dos dados dos forms;
  • notificações por email;
  • descarregar dados em excel ou csv ou pdf etc.
  • Auto Responses

King

  • All the free and pro features
  • Quick forms
  • Formularios dinâmicos (embed forms)
  • Editor
  • Templates
  • 2GB File Storage
  • Webhooks

Create an account

  • Create the page interface;
  • Save and verify the data in the database;
  • The user has to create a username;
  • Check the username in the DB whether it already exists or not;
  • Send the user a email to verify if is real or not;

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.