2020-09-23 10:23:10 +03:00
# Portal
2020-03-24 16:07:38 +03:00
2021-05-27 15:17:36 +03:00
[![CI Status ](https://github.com/TryGhost/portal/workflows/Test/badge.svg?branch=main )](https://github.com/TryGhost/portal/actions)
2020-09-24 09:48:26 +03:00
[![npm version ](https://badge.fury.io/js/%40tryghost%2Fportal.svg )](https://badge.fury.io/js/%40tryghost%2Fportal)
2020-04-20 20:33:24 +03:00
2021-11-02 08:26:10 +03:00
[Drop-in script ](https://ghost.org/help/setting-up-portal/ ) to make the bulk of Ghost membership features work on any theme.
2020-04-20 19:42:20 +03:00
2020-04-21 08:47:23 +03:00
## Usage
2020-04-20 20:56:55 +03:00
2021-11-02 08:26:10 +03:00
Ghost automatically injects Portal script on all sites running Ghost 4 or higher.
2021-03-17 20:04:00 +03:00
Alternatively, Portal can be enabled on non-ghost pages directly by inserting the below script on the page.
2020-04-20 20:56:55 +03:00
```html
2020-09-24 09:48:26 +03:00
< script defer src = "https://unpkg.com/@tryghost/portal@latest/umd/portal.min.js" data-ghost = "https://mymemberssite.com" > < / script >
2020-04-20 20:56:55 +03:00
```
2021-11-02 08:26:10 +03:00
The `data-ghost` attribute expects the URL for your Ghost site, which is the only input Portal needs to work with your site's membership data via Ghost APIs.
2020-09-04 14:49:37 +03:00
2020-06-06 17:40:26 +03:00
### Custom trigger button
By default, the script adds a default floating trigger button on the bottom right of your page which is used to trigger the popup on screen.
2021-05-27 15:17:36 +03:00
Its possible to add custom trigger button of your own by adding data attribute `data-portal` to any HTML tag on page, and also specify a specfic [page ](https://github.com/TryGhost/Portal/blob/main/src/pages.js#L13-L22 ) to open from it by using it as `data-portal=signup` .
2020-06-06 17:40:26 +03:00
2020-11-25 09:48:06 +03:00
The script also adds custom class names to this element for open and close state of popup - `gh-portal-open` and `gh-portal-close` , allowing devs to update its UI based on popup state.
2020-06-06 17:40:26 +03:00
2021-11-02 08:26:10 +03:00
Refer the [docs ](https://ghost.org/help/setup-members/#customize-portal-settings ) to read about ways in which Portal can be customized for your site.
2020-04-20 19:42:20 +03:00
## Basic Setup
1. Clone this repository:
```shell
2020-09-23 10:23:10 +03:00
git@github.com:TryGhost/portal.git
2020-04-20 19:42:20 +03:00
```
2. Change into the new directory and install the dependencies:
```shell
2020-09-23 10:23:10 +03:00
cd portal
2020-04-20 19:42:20 +03:00
yarn
```
2020-03-24 16:07:04 +03:00
2021-11-02 08:26:10 +03:00
## For local development
2020-04-20 19:42:20 +03:00
2021-11-02 08:26:10 +03:00
This section is mostly relevant for core team only for active Portal development. Always use the unpkg link for testing/using latest released portal script.
2020-04-20 19:42:20 +03:00
2021-11-02 08:26:10 +03:00
- Run `yarn start:dev` to start Portal in development mode
- Open [http://localhost:3000 ](http://localhost:3000 ) to view it in the browser.
- To use the local Portal script in a local Ghost site
- Update `config.local.json` in Ghost repo to add "portal" config pointing to local dev server url as instructed on terminal.
- By default, this uses port `5368` for loading local Portal script on Ghost site. It's also possible to specify a custom port when running the script using - `--port=xxxx` .
2020-04-20 19:42:20 +03:00
2020-03-24 16:07:04 +03:00
## Available Scripts
2020-04-20 19:42:20 +03:00
In the project directory, you can also run:
2020-03-24 16:07:04 +03:00
### `yarn start`
Runs the app in the development mode.< br / >
Open [http://localhost:3000 ](http://localhost:3000 ) to view it in the browser.
The page will reload if you make edits.< br / >
You will also see any lint errors in the console.
### `yarn build`
2020-09-23 21:04:54 +03:00
Creates the production single minified bundle for external use in `umd/portal.min.js` . < br />
2020-03-24 16:07:04 +03:00
2020-04-20 19:42:20 +03:00
### `yarn test`
2020-03-24 16:07:04 +03:00
2020-04-20 19:42:20 +03:00
Launches the test runner in the interactive watch mode.< br / >
See the section about [running tests ](https://facebook.github.io/create-react-app/docs/running-tests ) for more information.
2020-03-24 16:07:04 +03:00
2020-04-20 19:42:20 +03:00
## Publish
2020-03-24 16:07:04 +03:00
2020-06-06 17:48:23 +03:00
Run `yarn ship` to publish new version of script.
`yarn ship` is an alias for `npm publish`
- Builds the script with latest code using `yarn build` (prePublish)
2020-09-24 09:48:26 +03:00
- Publishes package on npm as `@tryghost/portal` and creates an unpkg link for script at https://unpkg.com/@tryghost/portal@VERSION
2020-03-24 16:07:04 +03:00
2021-03-17 20:04:00 +03:00
(Core team only)
2020-03-24 16:07:04 +03:00
## Learn More
2020-04-20 19:42:20 +03:00
This project was bootstrapped with [Create React App ](https://github.com/facebook/create-react-app ).
2020-03-24 16:07:04 +03:00
You can learn more in the [Create React App documentation ](https://facebook.github.io/create-react-app/docs/getting-started ).
2020-03-30 16:32:19 +03:00
# Copyright & License
2020-03-24 16:07:38 +03:00
2022-01-06 14:08:16 +03:00
Copyright (c) 2013-2022 Ghost Foundation - Released under the [MIT license ](LICENSE ).