Skip to content

Commit

Permalink
adding initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry de Graaff committed Aug 30, 2021
1 parent b841e34 commit c7bbe33
Show file tree
Hide file tree
Showing 18 changed files with 12,421 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[{package.json,.*rc,*.yml}]
indent_style = space
indent_size = 2

[*.md,*.graphql]
trim_trailing_whitespace = false
63 changes: 63 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
const fs = require('fs');
const path = require('path');

module.exports = {
"extends": [
"eslint-config-synacor",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"preact-i18n"
],
"rules": {
"brace-style": ["error", "1tbs"],
"eqeqeq": ["error", "smart"],
"react/jsx-wrap-multilines": "warn",
"no-shadow": "error",
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true
}
],
"prefer-const": ["error", {
"destructuring": "all"
}],

"preact-i18n/no-missing-template-field": "error",
"preact-i18n/no-text-as-attribute": "error",
// Ignore some characters, possibly surrounded by whitespace
"preact-i18n/no-text-as-children": ["error", { "ignoreTextRegex": "^(?:\\s*[()🚩.\":<>\\-/]\\s*)*$" }],
"preact-i18n/no-unknown-key": "error",

"prettier/prettier": ["error", {
"singleQuote": true,
"printWidth": 100
}]
},
"settings": {
"react": {
"pragma": "createElement",
"version": "15.0"
},
"preact-i18n": {
"languageFiles": [
{
"name": "en_US",
"path": "src/intl/en_US.json"
}
],
"textComponents": [
{ "nameRegex": "^Text$" },
{ "nameRegex": "^TextInput$", "id": "placeholderId" },
{ "nameRegex": "^AlignedLabel$", "id": "textId" },
{ "nameRegex": "^(?:Inline)?Modal(?:Dialog|Drawer)", "id": "title" },
{ "nameRegex": "^ContactSuggestion$", "id": "previouslySelectedLabel"}
],

}
}
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
/build
/pkg
.DS_Store
!package-lock.json
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# zimbra-zimlet-bigbluebutton
Add BigBlueButton meeting information to calendar appointments in Zimbra

Add BigBlueButton meeting information to calendar appointments in Zimbra.

## Installation

Run the installer from https://github.com/Zimbra-Community/bigbluebutton-zimlet. Then deploy the Zimlet in the releases page of this repo.


## Screenshots

> ![](screenshots/bigbluebutton-details.png)
> ![](screenshots/bigbluebutton-join.png)
> ![](screenshots/bigbluebutton-join-screen.png)
> ![](screenshots/bigbluebutton-preferences.png)
Loading

0 comments on commit c7bbe33

Please sign in to comment.