You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

252 lines
6.8 KiB

# Gitalk
[![NPM][npm-version-image]][npm-version-url]
[![CDNJS][cdnjs-version-image]][cdnjs-version-url]
[![jsdelivr](https://data.jsdelivr.com/v1/package/npm/gitalk/badge)](https://www.jsdelivr.com/package/npm/gitalk)
[![david-dm][david-dm-image]][david-dm-url]
[![travis][travis-image]][travis-url]
[![coveralls][coveralls-image]][coveralls-url]
[![gzip-size][gzip-size]][gzip-url]
Gitalk is a modern comment component based on GitHub Issue and Preact.
## Features
- Authentication with github account
- Serverless, all comments will be stored as github issues
- Both personal and organization github projects can be used to store comments
- Localization, support multiple languages [en, zh-CN, zh-TW, es-ES, fr, ru, de, pl, ko]
- Facebook-like distraction free mode (Can be enabled via the `distractionFreeMode` option)
- Hotkey submit comment (cmd|ctrl + enter)
[中文说明](https://github.com/gitalk/gitalk/blob/master/readme-cn.md)
[Demo](https://gitalk.github.io)
## Install
Two ways.
- links
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.css">
<script src="https://cdn.jsdelivr.net/npm/gitalk@1/dist/gitalk.min.js"></script>
<!-- or -->
<link rel="stylesheet" href="https://unpkg.com/gitalk/dist/gitalk.css">
<script src="https://unpkg.com/gitalk/dist/gitalk.min.js"></script>
```
- npm install
```sh
npm i --save gitalk
```
```js
import 'gitalk/dist/gitalk.css'
import Gitalk from 'gitalk'
```
## Usage
Firstly, you need choose a public github repository (existed or create a new one) for store comments,
Then create A **GitHub Application** if you don't have one, [Click here to register](https://github.com/settings/applications/new) a new one.
**Note:** You must specify the website domain url in the `Authorization callback URL` field.
Lastly, you can choose how to apply to the page as below:
### Method One
Add a container to your page:
```html
<div id="gitalk-container"></div>
```
Then use the Javascript code below to generate the gitalk plugin:
```js
const gitalk = new Gitalk({
clientID: 'GitHub Application Client ID',
clientSecret: 'GitHub Application Client Secret',
repo: 'GitHub repo', // The repository of store comments,
owner: 'GitHub repo owner',
admin: ['GitHub repo owner and collaborators, only these guys can initialize github issues'],
id: location.pathname, // Ensure uniqueness and length less than 50
distractionFreeMode: false // Facebook-like distraction free mode
})
gitalk.render('gitalk-container')
```
### Method Two: Use in React
Import the Gitalk with
```jsx
import GitalkComponent from "gitalk/dist/gitalk-component";
```
And use the component like
```jsx
<GitalkComponent options={{
clientID: "...",
// ...
// options below
}} />
```
## Options
- **clientID** `String`
**Required**. GitHub Application Client ID.
- **clientSecret** `String`
**Required**. GitHub Application Client Secret.
- **repo** `String`
**Required**. GitHub repository.
- **owner** `String`
**Required**. GitHub repository owner. Can be personal user or organization.
- **admin** `Array`
**Required**. GitHub repository owner and collaborators. (Users who having write access to this repository)
- **id** `String`
Default: `location.href`.
The unique id of the page. Length must less than 50.
- **number** `Number`
Default: `-1`.
The issue ID of the page, if the `number` attribute is not defined, issue will be located using `id`.
- **labels** `Array`
Default: `['Gitalk']`.
GitHub issue labels.
- **title** `String`
Default: `document.title`.
GitHub issue title.
- **body** `String`
Default: `location.href + header.meta[description]`.
GitHub issue body.
- **language** `String`
Default: `navigator.language || navigator.userLanguage`.
Localization language key, `en`, `zh-CN`, `zh-TW`, `es-ES`, `fr`, `ru`, `de`, `pl` and `ko` are currently available.
- **perPage** `Number`
Default: `10`.
Pagination size, with maximum 100.
- **distractionFreeMode** `Boolean`
Default: false.
Facebook-like distraction free mode.
- **pagerDirection** `String`
Default: 'last'
Comment sorting direction, available values are `last` and `first`.
- **createIssueManually** `Boolean`
Default: `false`.
By default, Gitalk will create a corresponding github issue for your every single page automatically when the logined user is belong to the `admin` users. You can create it manually by setting this option to `true`.
- **proxy** `String`
Default: `https://cors-anywhere.azm.workers.dev/https://github.com/login/oauth/access_token`.
GitHub oauth request reverse proxy for CORS. [Why need this?](https://github.com/isaacs/github/issues/330)
- **flipMoveOptions** `Object`
Default:
```js
{
staggerDelayBy: 150,
appearAnimation: 'accordionVertical',
enterAnimation: 'accordionVertical',
leaveAnimation: 'accordionVertical',
}
```
Comment list animation. [Reference](https://github.com/joshwcomeau/react-flip-move/blob/master/documentation/enter_leave_animations.md)
- **enableHotKey** `Boolean`
Default: `true`.
Enable hot key (cmd|ctrl + enter) submit comment.
## Instance Methods
- **render(String/HTMLElement)**
Init render and mount plugin.
## TypeScript
TypeScript definitions for options and Gitalk class come with the package and should be automatically detected.
Definitions for React component usage are not included.
## Contributing
1. [Fork the repository](https://github.com/gitalk/gitalk/fork) and create your branch from master
2. If you've added code that should be tested, add tests!
3. If you've changed APIs, update the documentation.
4. Ensure the test suite passes (npm test).
5. Make sure your code lints (npm run lint).
6. Commit your changes (git commit) [Commit Message Format Reference](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md#-git-commit-guidelines)
## Similar Projects
- [gitment](https://github.com/imsun/gitment)
- [vssue](https://vssue.js.org)
## LICENSE
MIT
[npm-version-image]: https://img.shields.io/npm/v/gitalk.svg?style=flat-square
[npm-version-url]: https://www.npmjs.com/package/gitalk
[cdnjs-version-image]: https://img.shields.io/cdnjs/v/gitalk.svg?style=flat-square
[cdnjs-version-url]: https://cdnjs.com/libraries/gitalk
[david-dm-image]: https://david-dm.org/gitalk/gitalk.svg?style=flat-square
[david-dm-url]: https://david-dm.org/gitalk/gitalk
[travis-image]: https://img.shields.io/travis/gitalk/gitalk/master.svg?style=flat-square
[travis-url]: https://travis-ci.org/gitalk/gitalk
[coveralls-image]: https://img.shields.io/coveralls/gitalk/gitalk/master.svg?style=flat-square
[coveralls-url]: https://coveralls.io/github/gitalk/gitalk
[gzip-size]: https://img.badgesize.io/https://unpkg.com/gitalk/dist/gitalk.min.js?compression=gzip&style=flat-square
[gzip-url]: https://unpkg.com/gitalk/dist/gitalk.min.js