ToastUI Calendar

A JavaScript calendar that has everything you need.

README

TOAST UI Calendar


A JavaScript schedule calendar that is full featured. Now your service just got the customizable calendar.

GitHub release npm GitHub license PRs welcome code with hearth by NHN Cloud

tui-calendar-demo-nhn-corp

🚩 Table of Contents



Collect statistics on the use of open source


TOAST UI Calendar applies Google Analytics (GA) to collect statistics on the use of open source, in order to identify how widely TOAST UI Calendar is used throughout the world. It also serves as important index to determine the future course of projects. location.hostname (e.g. > “ui.toast.com") is to be collected and the sole purpose is nothing but to measure statistics on the usage.

To disable GA use the options:

  1. ``` js
  2. var calendar = new Calendar('#calendar', {
  3.   usageStatistics: false
  4. });
  5. ```

📙 Documents



You can also see the older versions of API page on the releases page.

✨ How Cool: Monthly, Weekly, Daily and Various View Types.


MonthlyWeekly
------
![image](https://user-images.githubusercontent.com/26706716/39230396-4d79a592-48a1-11e8-9849-08e80f1bedf6.png)![image](https://user-images.githubusercontent.com/26706716/39230459-83beac38-48a1-11e8-8cd4-11b97817f1f8.png)

Daily2
------
![image](https://user-images.githubusercontent.com/26706716/39230685-60a2a1d6-48a2-11e8-9d46-ce5693277a64.png)![image](https://user-images.githubusercontent.com/26706716/39230638-281d5266-48a2-11e8-84d8-ab289f372051.png)

Easy to Use: Dragging and Resizing a Schedule


DraggingResizing
------
![image](https://user-images.githubusercontent.com/26706716/39230930-591031f8-48a3-11e8-8f62-e12e6c19920c.gif)![image](https://user-images.githubusercontent.com/26706716/39231671-c926d0da-48a5-11e8-959d-35fd32f2c522.gif)


Ready to Use: Default Popups


CreationDetail
------
![image](https://user-images.githubusercontent.com/26706716/39230798-d151a9ae-48a2-11e8-842d-b19b40432f48.png)![image](https://user-images.githubusercontent.com/26706716/39230820-e73fa11c-48a2-11e8-9348-8e3d81979a78.png)

🎨 Features


Supports various view types: daily, weekly, monthly(6 weeks, 2 weeks, 3 weeks)
Supports efficient management of milestone and task schedules
Supports the narrow width of weekend
Supports changing start day of week
Supports customizing the date and schedule information UI(including a header and a footer of grid cell)
Supports adjusting a schedule by mouse dragging
Supports customizing UI by theme

🐾 Examples


Basic : Example of using default options.

💾 Install


TOAST UI products can be used by using the package manager or downloading the source directly.
However, we highly recommend using the package manager.

Via Package Manager


TOAST UI products are registered in two package managers, npm and bower.
You can conveniently install it using the commands provided by each package manager.
When using npm, be sure to use it in the environment Node.js is installed.

npm


  1. ``` sh
  2. $ npm install --save tui-calendar # Latest version
  3. $ npm install --save tui-calendar@<version> # Specific version
  4. ```

bower


  1. ``` sh
  2. $ bower install tui-calendar # Latest version
  3. $ bower install tui-calendar#<tag> # Specific version
  4. ```

Via Contents Delivery Network (CDN)

TOAST UI products are available over the CDN powered by NHN Cloud.

You can use the CDN as below.

Insert style sheet files
  1. ``` html
  2. <link rel="stylesheet" type="text/css" href="https://uicdn.toast.com/tui-calendar/latest/tui-calendar.css" />
  3. <link rel="stylesheet" type="text/css" href="https://uicdn.toast.com/tui.date-picker/latest/tui-date-picker.css" />
  4. <link rel="stylesheet" type="text/css" href="https://uicdn.toast.com/tui.time-picker/latest/tui-time-picker.css" />
  5. ```

Insert JavaScript file
  1. ``` html
  2. <script src="https://uicdn.toast.com/tui.code-snippet/v1.5.2/tui-code-snippet.min.js"></script>
  3. <script src="https://uicdn.toast.com/tui.time-picker/latest/tui-time-picker.min.js"></script>
  4. <script src="https://uicdn.toast.com/tui.date-picker/latest/tui-date-picker.min.js"></script>
  5. <script src="https://uicdn.toast.com/tui-calendar/latest/tui-calendar.js"></script>
  6. ```

If you want to use a specific version, use the tag name instead of latest in the url's path.

The CDN directory has the following structure.

  1. ```
  2. tui-calendar/
  3. latest/
  4.    tui-calendar.js
  5.    tui-calendar.min.js
  6.    tui-calendar.css
  7.    tui-calendar.min.css
  8. v1.0.0/
  9.    ...
  10. ```

Download Source Files



🛍 Wrappers


toast-ui.vue-calendarVue wrapper component is implemented by NHN Cloud.
toast-ui.react-calendarReact wrapper component is powered by NHN Cloud.
ngx-mat-tui-calendarAngular 12, Material Design wrapper component by @ron2015schmitt
ngx-tui-dev:TypeScript and Angular 5 wrapper component is being implemented(ref #82) by @amanvishnani and @brnrds. Thanks for their effort.
vue-tui-calendar:Vue wrapper component is being implemented(ref #81) by @lkmadushan. Thanks for their effort.
tui-calendar-react:React wrapper component is provided(ref #134) by @IniZio. Thanks for his effort.
toast_ui.blazor_calendar:C#/Blazor JSInterop wrapper component is provided(ref #781) by @gismofx Thanks for his effort.

🔨 Usage


HTML


Place a `
` where you want TOAST UI Calendar rendered.

  1. ``` html
  2. <body>
  3. ...
  4. <div id="calendar" style="height: 800px;"></div>
  5. ...
  6. </body>
  7. ```

JavaScript


Using namespace in browser environment


  1. ``` js
  2. var Calendar = tui.Calendar;
  3. ```

Using module format in node environment


  1. ``` js
  2. var Calendar = require('tui-calendar'); /* CommonJS */
  3. require("tui-calendar/dist/tui-calendar.css");

  4. // If you use the default popups, use this.
  5. require("tui-date-picker/dist/tui-date-picker.css");
  6. require("tui-time-picker/dist/tui-time-picker.css");
  7. ```

  1. ``` js
  2. import Calendar from 'tui-calendar'; /* ES6 */
  3. import "tui-calendar/dist/tui-calendar.css";

  4. // If you use the default popups, use this.
  5. import 'tui-date-picker/dist/tui-date-picker.css';
  6. import 'tui-time-picker/dist/tui-time-picker.css';
  7. ```

Then you can create a calendar instance with options to set configuration.

  1. ``` js
  2. var calendar = new Calendar('#calendar', {
  3.   defaultView: 'month',
  4.   taskView: true,
  5.   template: {
  6.     monthDayname: function(dayname) {
  7.       return '<span class="calendar-week-dayname-name">' + dayname.label + '</span>';
  8.     }
  9.     ...
  10.   }
  11. });
  12. ```

Or you can use jquery plugin. You must include jquery before using this jquery plugin.

  1. ``` js
  2. // jquery wrapper
  3. var $calEl = $('#calendar').tuiCalendar({
  4.   defaultView: 'month',
  5.   taskView: true,
  6.   template: {
  7.     monthDayname: function(dayname) {
  8.       return '<span class="calendar-week-dayname-name">' + dayname.label + '</span>';
  9.     }
  10.     ...
  11.   }
  12. });

  13. // You can get calendar instance
  14. var calendarInstance = $calEl.data('tuiCalendar');

  15. calendarInstance.createSchedules([...]);
  16. ```

🌏 Browser Support

| Chrome Chrome | IE Internet Explorer | Edge Edge | Safari Safari | Firefox Firefox |
| :---------: | :---------: | :---------: | :---------: | :---------: |
| Latest | +9 | Latest | Latest | Latest |

🔧 Pull Request Steps


TOAST UI products are open source, so you can create a pull request(PR) after you fix issues.
Run npm scripts and develop yourself with the following process.

Setup


Fork develop branch into your personal repository.
Clone it to local computer. Install node modules.
Before starting development, you should check if there are any errors.

  1. ``` sh
  2. $ git clone https://github.com/{owner}/tui.calendar.git
  3. $ cd tui.calendar
  4. $ npm install
  5. $ npm run test
  6. ```

Develop


Let's start development!
You can see your code reflected as soon as you save the code by running a server.
Don't miss adding test cases and then make green rights.

Run webpack-dev-server


  1. ``` sh
  2. $ npm run serve
  3. ```

Run karma test


  1. ``` sh
  2. $ npm run test
  3. ```

Pull Request


Before uploading your PR, run test one last time to check if there are any errors.
If it has no errors, commit and then push it!

For more information on PR's steps, please see links in the Contributing section.

💬 Contributing



🔩 Dependency


tui-date-picker >= 4.3.0 is optional.
tui-time-picker >= 2.1.4 is optional.

🍞 TOAST UI Family


🚀 Used By


📜 License


This software is licensed under the MIT © NHN Cloud.