Giter Site home page Giter Site logo

kloudless / meeting-scheduler Goto Github PK

View Code? Open in Web Editor NEW
121.0 14.0 27.0 4.23 MB

Drop-in calendar event booking tool for your app's users that integrates with Google, Outlook, Exchange, and CalDAV..

Home Page: https://kloudless.com

License: MIT License

JavaScript 67.38% CSS 0.09% HTML 0.93% Vue 25.63% Less 5.98%
meeting-scheduler booking calendar-view calendar-api

meeting-scheduler's People

Contributors

calvin620707 avatar david-thorman avatar fsworld009 avatar hong19 avatar reubano avatar ueewbd avatar vinodc avatar vinodc-kloudless avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

meeting-scheduler's Issues

can't Register developer

register as developer
tip:

Sorry! Signing up with a new account is currently disabled.
Please contact Support to gain access.

TypeScript type definition

Hello!

It seems like this library is missing .d.ts definitions, and likewise didn't seem to find anything in @types. This would be great to have!

Unable to create (signup ) the new account

Hi Team, I am trying to create a new account and the application is throwing an error that Signing up with a new account is disabled and contact customer support.

Thanks,
Bhargavi.

Scheduled Event Edit functionality

Hi
For creating a meeting window(Setup), UI is available for both creation and updation.
But when it comes to scheduling(Schedule) an event, UI is available only for creation but not for updation.
Is there any reason for that?
Can Schedule update UI functionality be added as a feature?

Unable to select time slot for scheduling because of Calendar Error for some users

Issue

When the user schedules an event. It gets created fine. But during slot selection, in some cases for the user there is a warning as below:
"Calendar not found. Please check each permission and correctness of calendar id. Please contact support"

Also, attaching the image of the error.
calendar error

As you can see the error. This comes only to some users, not all. Everything works well for all users, except some.

So seems like no issue in kloudless window, but maybe backend libraries. Any idea or help what could be the issue?

Thanks

Libraries and Version.

Using kloudless via script

<script type="text/javascript" src="https://static-cdn.kloudless.com/p/platform/sdk/kloudless.scheduler.js"></script>

Angular version 10.x

Account Token

I can't seem to get an account token when using the meeting-scheduler. I was able to get them when i hosted my own OAuth, but when I set up this listener:

scheduler.on('connectAccount', async eventData => {
            const options = {}; 
            if (eventData.accountToken) {
                options.calendarToken = eventData.accountToken;
            }

            await updateProfile(options);
        });

All i get is undefined. I've created a trusted domain at my localhost of localhost:3005 and i've set redirects to my localhost... but i'm unsure how i'm supposed to receive my accountToken with this library.

Invalid date issue in Availability after submit for edit Meeting Window with Widget

Hi,
There is one issue in Edit Meeting Window.
First of all.
i am using as a widget with JS script in pop up mode only.
Create window(Setup view) is working fine and creating meeting Window.

But while ediiing meeting window with Edit View and saving there is issue.

As you can see, the meeting window is getting data correctly, in below response. I have set up two time slots.

{
  "id": "AWlZStS6iNEjtq8XueXN",
  "booking_calendar_id": "fYmFsdmluZGVyMjk0QGdtYWlsLmNvbQ==",
  "duration": 15,
  "availability": {
    "end_repeat": "NEVER",
    "available_times": [
      {
        "start": "04:00:00",
        "end": "17:00:00",
        "recurring": {
          "weekday": "SUN",
          "month": "*",
          "day": "*"
        }
      },
      {
        "start": "08:00:00",
        "end": "17:00:00",
        "recurring": {
          "weekday": "MON",
          "month": "*",
          "day": "*"
        }
      }
    ]
  },
  "time_buffer_before": 0,
  "time_buffer_after": 0,
  "time_slot_interval": 30,
  "availability_range": 30,
  "public_choice_token": "P9470r88uVjBSlHHCkDEu0fCnjNK9T",
  "time_zone": "Asia/Kolkata",
  "api": "meeting_scheduler",
  "allow_event_metadata": false,
  "default_event_metadata": {},
  "recaptcha_site_key": "6Lcm7KwUAAAAAIzQJMcYKB7MgfqL5bN62-mEOJh-"
}

but while clicking update(Saving) after making edits, there is one error thrown as 400 with below response

message: availability: 
{
    'available_times': [
          {
             'start': [u'The format is invalid. Must be in "hh:mm:ss". (u\'Unknown string format:\', u\'Invalid date\')'], 
             'end': [u'The format is invalid. Must be in "hh:mm:ss". (u\'Unknown string format:\', u\'Invalid date\')']
          }, 
          {
             'start': [u'The format is invalid. Must be in "hh:mm:ss". (u\'Unknown string format:\', u\'Invalid date\')'],
             'end': [u'The format is invalid. Must be in "hh:mm:ss". (u\'Unknown string format:\', u\'Invalid date\')']}]
}.

But this should not be the case as The availability object is not available to edit and it should be sent same as above response from Api.
But the param i am getting while making update api call below you see, are going as invalid.

{  
   "id": "AWlZStS6iNEjtq8XueXN",
   "booking_calendar_id": "fYmFsdmluZGVyMjk0QGdtYWlsLmNvbQ==",
   "duration": 15,
   "time_zone":"Asia/Kolkata",
   "availability_range":30,
   "time_buffer_before":0,
   "time_buffer_after":0,
   "time_slot_interval":30,
   "allow_event_metadata":false,
    "availability":{
       "end_repeat":"NEVER",
       "available_times":[
              {
                 "start":"Invalid date",
                 "end":"Invalid date",
                 "recurring":{
                      "month":"*",
                      "day":"*",
                      "weekday":"SUN"
                  }
              },
              {
                  "start":"Invalid date",
                  "end":"Invalid date",
                  "recurring":{
                       "month":"*",
                       "day":"*",
                       "weekday":"MON"
                   }
              }
       ]
   }
}

Please help me in this case. Also this meeting scheduler, i am currently integrating in our application. So this only issue i faced.

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.