View multiple Scripture projects in one view
This extension has moved to paratext-bible-extensions
. This repository will no longer be updated. Please refer to the paratext-bible-text-collection
extension in the future.
This is a webpack project template pre-configured to build Paranext extensions. It contains the bare minimum of what an extension needs. Note that the *.web-view.*
files and the public/assets
folder mentioned below are not present in this template. For inspiration on what these could look like, refer to any extension that is built using this template. An example would be the Text Collection extension.
package.json
contains information about this extension's npm package. It is required for Paranext to use the extension properly. It is copied into the build foldersrc
contains the source code for the extensionsrc/main.ts
is the main entry file for the extensionsrc/types/paranext-extension-template.d.ts
is this extension's types file that defines how other extensions can use this extension through thepapi
. It is copied into the build folder*.web-view.tsx
files will be treated as React WebViews*.web-view.html
files are a conventional way to provide HTML WebViews (no special functionality)
public
contains static files that are copied into the build folderpublic/manifest.json
is the manifest file that defines the extension and important properties for Paranextpublic/package.json
defines the npm package for this extension and is required for Paranext to use it appropriatelypublic/assets
contains asset files the extension and its WebViews can retrieve using thepapi-extension:
protocol
dist
is a generated folder containing your built extension filesrelease
is a generated folder containing a zip of your built extension files
In order to interact with paranext-core
, you must point package.json
to your installed paranext-core
repository:
- Follow the instructions to install
paranext-core
. We recommend you cloneparanext-core
in the same parent directory in which you cloned this repository so you do not have to reconfigure paths toparanext-core
. - If you cloned
paranext-core
anywhere other than in the same parent directory in which you cloned this repository, update the paths toparanext-core
in this repository'spackage.json
to point to the correctparanext-core
directory.
Run npm install
to install local and published dependencies
This section is a more compact version of the Your first extension
guide.
- Search for: paranext-extension-template Replace with: your-extension-name
- Search for: Extension Template Replace with: Your Extension (Be sure to match case)
You need to change the filename of the .d.ts
file, which is located in /src/types
and referenced in the package.json
“types” field. See more information on the .d.ts files.
The manifest.json
and package.json
files makeup your extension manifest. Add your details in these two files based on your extension name and what you renamed the files described in 1 and 2. See more information on the manifest.json
and package.json
files in Extension Anatomy.
You will need to add your extension's name into webpack.config.main.ts
and webpack.util.ts
. The search and replace actions listed above will correct this for you.
To run Paranext with your extension:
npm start
Note: The built extension will be in the dist
folder. In order for Paranext to run your extension, you must provide the directory to your built extension to Paranext via a command-line argument. This command-line argument is already provided in this package.json
's start
script. If you want to start Paranext and use your extension any other way, you must provide this command-line argument or put the dist
folder into Paranext's extensions
folder.
To watch extension files (in src
) for changes:
npm run watch
To build the extension once:
npm run build
To package your extension into a zip file for distribution:
npm run package
The paranext-extension-template
will be updated regularly, and will sometimes receive updates that help with breaking changes on paranext-core
. So we recommend you periodically update your extension by merging the latest template updates into your extension. You can do so by following these instructions.
This template has special features and specific configuration to make building an extension for Paranext easier. Following are a few important notes:
Paranext WebViews must be treated differently than other code, so this template makes doing that simpler:
- WebView code must be bundled and can only import specific packages provided by Paranext (see
externals
inwebpack.config.base.ts
), so this template bundles React WebViews before bundling the main extension file to support this requirement. The template discovers and bundles files that end with.web-view.tsx
in this way.- Note: while watching for changes, if you add a new
.web-view.tsx
file, you must either restart webpack or make a nominal change and save in an existing.web-view.tsx
file for webpack to discover and bundle this new file.
- Note: while watching for changes, if you add a new
- WebView code and styles must be provided to the
papi
as strings, so you can import WebView files with?inline
after the file path to import the file as a string.
- Adding
?inline
to the end of a file import causes that file to be imported as a string after being transformed by webpack loaders but before bundling dependencies (except if that file is a React WebView file, in which case dependencies will be bundled). The contents of the file will be on the file's default export.- Ex:
import myFile from './file-path?inline
- Ex:
- Adding
?raw
to the end of a file import treats a file the same way as?inline
except that it will be imported directly without being transformed by webpack.
- Paranext extension code must be bundled all together in one file, so webpack bundles all the code together into one main extension file.
- Paranext extensions can interact with other extensions, but they cannot import and export like in a normal Node environment. Instead, they interact through the
papi
. As such, thesrc/types
folder contains this extension's declarations file that tells other extensions how to interact with it through thepapi
.
This extension template is built by webpack (webpack.config.ts
) in two steps: a WebView bundling step and a main bundling step:
Webpack (./webpack/webpack.config.web-view.ts
) prepares TypeScript WebViews for use and outputs them into temporary build folders adjacent to the WebView files:
- Formats WebViews to match how they should look to work in Paranext
- Transpiles React/TypeScript WebViews into JavaScript
- Bundles dependencies into the WebViews
- Embeds Sourcemaps into the WebViews inline
Webpack (./webpack/webpack.config.main.ts
) prepares the main extension file and bundles the extension together into the dist
folder:
- Transpiles the main TypeScript file and its imported modules into JavaScript
- Injects the bundled WebViews into the main file
- Bundles dependencies into the main file
- Embeds Sourcemaps into the file inline
- Packages everything up into an extension folder
dist