-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Barry de Graaff
committed
Aug 30, 2021
1 parent
b841e34
commit c7bbe33
Showing
18 changed files
with
12,421 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"} | ||
], | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
/build | ||
/pkg | ||
.DS_Store | ||
!package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Oops, something went wrong.