Coder Social home page Coder Social logo

ncarchedi / courseflo Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 3 MB

The fastest way to build online courses and quizzes ๐Ÿ“š

Home Page: http://courseflo.com/

HTML 1.06% JavaScript 98.81% Shell 0.13%
education firebase jamstack material-ui netlify react serverless

courseflo's People

Contributors

ncarchedi avatar

Watchers

 avatar  avatar

courseflo's Issues

What happens if I'm editing a course from multiple computers?

Right now, if a course exists in local storage, I automatically load from there instead of the server. If I'm editing a course from two different computers, this risks loading an out-of-date version of the course, then overwriting it on publish.

Add proper 404 for dashboard

Right now, visiting my dashboard when I'm not logged in (or logged in with a different account) gives me a blank screen.

Store `userCourses` in place of `submissions`

  • Create a userCourse when someone starts a course
  • Save full progress every time the user hits "continue"
  • Open question: how to deal with content changes? (e.g. store itemNumber and rely on most recent version of course?)

Solution doesn't update when I change the relevant option in single/multi select items

Possibly useful, but would need to be debounced at Item level:

// when options change, update solution as necessary
  // (but only when a solution exists)
  useEffect(() => {
    if (item.solution) {
      setItemValuesDirectly({
        ...item,
        solution: item.solution.filter((option) =>
          item.options.includes(option)
        ),
      });
    }
  }, [item.options]); // eslint-disable-line react-hooks/exhaustive-deps



  // if the solution option is changed, remove the solution
  useEffect(() => {
    if (!item.options.includes(item.solution)) handleClearSolution();
  }, [item.options]); // eslint-disable-line react-hooks/exhaustive-deps

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.