Skip to content

Commit

Permalink
Updated forms.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecao committed Aug 17, 2020
1 parent 48b83d7 commit d3514cf
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 17 deletions.
42 changes: 35 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# umami

## Getting started
## Installation

### Install umami
### Get the source code

```
git clone https://github.com/mikecao/umami.git
Expand All @@ -14,10 +14,16 @@ git clone https://github.com/mikecao/umami.git
cd umami
```

### Install packages

```
npm install
```

### Create database tables

Umami supports MySQL and Postgresql. Create a database for your Umami
installation and install the tables with the included scripts.
Umami supports [MySQL](https://www.mysql.com/) and [Postgresql](https://www.postgresql.org/).
Create a database for your Umami installation and install the tables with the included scripts.

For MySQL:

Expand Down Expand Up @@ -47,14 +53,36 @@ postgresql://username:mypassword@localhost:5432/mydb
mysql://username:mypassword@localhost:3306/mydb
```

### Start the development server
The `HASH_SALT` is used to generate unique session values for your installation.

### Generate database client

Depending on your database type, run the appropriate script.

For MySQL:

```
npm run develop
npm run build-mysql-client
```

For Postgresql:

```
npm run build-postgresql-client
```

### Create a production build

```
npm run build
```
```

### Start the application

```
npm start
```

By default this will launch the application on `http://localhost:3000`. You will need to either
[proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server
or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly.
5 changes: 3 additions & 2 deletions components/forms/ShareUrlForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ export default function TrackingCodeForm({ values, onClose }) {
return (
<FormLayout>
<p>
This is the public URL for <b>{values.name}</b>.
This is the publicly shared URL for <b>{values.name}</b>.
</p>
<FormRow>
<textarea
ref={ref}
rows={3}
cols={60}
defaultValue={`${document.location.origin}/share/${share_id}/${name}`}
spellCheck={false}
defaultValue={`${document.location.origin}/share/${share_id}/${encodeURIComponent(name)}`}
readOnly
/>
</FormRow>
Expand Down
1 change: 1 addition & 0 deletions components/forms/TrackingCodeForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export default function TrackingCodeForm({ values, onClose }) {
ref={ref}
rows={3}
cols={60}
spellCheck={false}
defaultValue={`<script async defer data-website-id="${values.website_uuid}" src="${document.location.origin}/umami.js" />`}
readOnly
/>
Expand Down
6 changes: 3 additions & 3 deletions components/forms/WebsiteEditForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function WebsiteEditForm({ values, onSave, onClose }) {
return (
<FormLayout>
<Formik
initialValues={{ ...initialValues, ...values, make_public: !!values?.share_id }}
initialValues={{ ...initialValues, ...values, enable_share_url: !!values?.share_id }}
validate={validate}
onSubmit={handleSubmit}
>
Expand All @@ -63,8 +63,8 @@ export default function WebsiteEditForm({ values, onSave, onClose }) {
</FormRow>
<FormRow>
<label></label>
<Field name="make_public">
{({ field }) => <Checkbox {...field} label="Make public" />}
<Field name="enable_share_url">
{({ field }) => <Checkbox {...field} label="Enable share URL" />}
</Field>
</FormRow>
<FormButtons>
Expand Down
6 changes: 3 additions & 3 deletions pages/api/website.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default async (req, res) => {
await useAuth(req, res);

const { user_id, is_admin } = req.auth;
const { website_id, make_public } = req.body;
const { website_id, enable_share_url } = req.body;

if (req.method === 'POST') {
const { name, domain } = req.body;
Expand All @@ -19,7 +19,7 @@ export default async (req, res) => {
let { share_id } = website;
console.log('exising id', share_id, website);

if (make_public) {
if (enable_share_url) {
share_id = share_id ? share_id : getRandomChars(8);
} else {
share_id = null;
Expand All @@ -33,7 +33,7 @@ export default async (req, res) => {
return unauthorized(res);
} else {
const website_uuid = uuid();
const share_id = make_public ? getRandomChars(8) : null;
const share_id = enable_share_url ? getRandomChars(8) : null;
const website = await createWebsite(user_id, { website_uuid, name, domain, share_id });

return ok(res, website);
Expand Down
2 changes: 1 addition & 1 deletion sql/schema.mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ create table website (
user_id int unsigned not null,
name varchar(100) not null,
domain varchar(500),
share_id varchar(8) unique,
share_id varchar(64) unique,
created_at timestamp default current_timestamp,
foreign key (user_id) references account(user_id) on delete cascade
) ENGINE=InnoDB;
Expand Down
2 changes: 1 addition & 1 deletion sql/schema.postgresql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ create table website (
user_id int not null references account(user_id) on delete cascade,
name varchar(100) not null,
domain varchar(500),
share_id varchar(8) unique,
share_id varchar(64) unique,
created_at timestamp with time zone default current_timestamp
);

Expand Down

0 comments on commit d3514cf

Please sign in to comment.