Skip to content

Commit 5ee1772

Browse files
committed
add: jasminum for Zotero 7
0 parents  commit 5ee1772

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+4644
-0
lines changed

.eslintrc.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"root": true,
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/recommended",
10+
"prettier"
11+
],
12+
"overrides": [],
13+
"parser": "@typescript-eslint/parser",
14+
"parserOptions": {
15+
"ecmaVersion": "latest",
16+
"sourceType": "module"
17+
},
18+
"plugins": ["@typescript-eslint"],
19+
"rules": {
20+
"@typescript-eslint/ban-ts-comment": ["warn", "allow-with-description"],
21+
"@typescript-eslint/no-unused-vars": "off",
22+
"@typescript-eslint/no-explicit-any": ["off", { "ignoreRestArgs": true }],
23+
"@typescript-eslint/no-non-null-assertion": "off"
24+
},
25+
"ignorePatterns": [
26+
"**/builds/**",
27+
"**/dist/**",
28+
"**/node_modules/**",
29+
"**/scripts/**",
30+
"**/*.js",
31+
"**/*.bak"
32+
]
33+
}

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/main.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# reference: https://github.com/lychichem/jasminum/blob/master/.github/workflows/main.yml
2+
on:
3+
push:
4+
# Sequence of patterns matched against refs/tags
5+
tags:
6+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
7+
8+
name: Upload Release Asset
9+
10+
jobs:
11+
build:
12+
name: Upload Release Asset
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/[email protected]
17+
- name: Set output
18+
id: vars
19+
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
20+
- name: Build project # This would actually build your project, using zip for an example artifact
21+
run: |
22+
zip -r jasminum.xpi chrome LICENSE chrome.manifest install.rdf readme.md
23+
- name: Create Release
24+
id: create_release
25+
uses: actions/create-release@v1
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
with:
29+
tag_name: ${{ github.ref }}
30+
release_name: Release ${{ github.ref }}
31+
draft: false
32+
prerelease: false
33+
- name: Upload Release Asset
34+
id: upload-release-asset
35+
uses: actions/[email protected]
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
with:
39+
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
40+
asset_path: ./jasminum.xpi
41+
asset_name: jasminum-${{ steps.vars.outputs.tag }}.xpi
42+
asset_content_type: application/x-xpinstall

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/builds
2+
node_modules
3+
package-lock.json
4+
zotero-cmd.json

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"tabWidth": 2
3+
}

.release-it.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"npm": {
3+
"publish": false
4+
},
5+
"github": {
6+
"release": true,
7+
"assets": ["builds/*.xpi"]
8+
},
9+
"hooks": {
10+
"after:bump": "npm run build",
11+
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
12+
}
13+
}

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
3+
}

.vscode/launch.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
// 使用 IntelliSense 了解相关属性。
3+
// 悬停以查看现有属性的描述。
4+
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "StartDev",
11+
"runtimeExecutable": "npm",
12+
"runtimeArgs": ["run", "start-watch"]
13+
},
14+
{
15+
"type": "node",
16+
"request": "launch",
17+
"name": "Restart",
18+
"runtimeExecutable": "npm",
19+
"runtimeArgs": ["run", "restart"]
20+
},
21+
{
22+
"type": "node",
23+
"request": "launch",
24+
"name": "Restart in Prod Mode",
25+
"runtimeExecutable": "npm",
26+
"runtimeArgs": ["run", "restart-prod"]
27+
}
28+
]
29+
}

.vscode/setting.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"editor.formatOnType": false,
3+
"editor.formatOnSave": true,
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll.eslint": true
6+
},
7+
"editor.tabSize": 2
8+
}

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"editor.tabSize": 2,
3+
"files.eol": "\n",
4+
}

.vscode/toolkit.code-snippets

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"appendElement - full": {
3+
"scope": "javascript,typescript",
4+
"prefix": "appendElement",
5+
"body": [
6+
"appendElement({",
7+
"\ttag: '${1:div}',",
8+
"\tid: '${2:id}',",
9+
"\tnamespace: '${3:html}',",
10+
"\tclassList: ['${4:class}'],",
11+
"\tstyles: {${5:style}: '$6'},",
12+
"\tproperties: {},",
13+
"\tattributes: {},",
14+
"\t[{ '${7:onload}', (e: Event) => $8, ${9:false} }],",
15+
"\tcheckExistanceParent: ${10:HTMLElement},",
16+
"\tignoreIfExists: ${11:true},",
17+
"\tskipIfExists: ${12:true},",
18+
"\tremoveIfExists: ${13:true},",
19+
"\tcustomCheck: (doc: Document, options: ElementOptions) => ${14:true},",
20+
"\tchildren: [$15]",
21+
"}, ${16:container});"
22+
]
23+
},
24+
"appendElement - minimum": {
25+
"scope": "javascript,typescript",
26+
"prefix": "appendElement",
27+
"body": "appendElement({ tag: '$1' }, $2);"
28+
},
29+
"register Notifier": {
30+
"scope": "javascript,typescript",
31+
"prefix": "registerObserver",
32+
"body": [
33+
"registerObserver({",
34+
"\t notify: (",
35+
"\t\tevent: _ZoteroTypes.Notifier.Event,",
36+
"\t\ttype: _ZoteroTypes.Notifier.Type,",
37+
"\t\tids: string[],",
38+
"\t\textraData: _ZoteroTypes.anyObj",
39+
"\t) => {",
40+
"\t\t$0",
41+
"\t}",
42+
"});"
43+
]
44+
}
45+
}

0 commit comments

Comments
 (0)