Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feat/1.1.2/ui' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkinStars committed Aug 17, 2023
2 parents e4fde9b + 0eb097c commit fe621ea
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
5 changes: 4 additions & 1 deletion i18n/en_US.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1263,6 +1263,9 @@ ui:
msg:
empty: Contact Email cannot be empty.
incorrect: Contact Email incorrect format.
login_required:
label: Private
switch: Login required
admin_name:
label: Name
msg: Name cannot be empty.
Expand Down Expand Up @@ -1434,7 +1437,7 @@ ui:
fields:
users:
label: Bulk add user
placeholder: "John Smith, john@example.com, BUSYopr2 \nAlice, alice@example.com, fpDntV8q"
placeholder: "John Smith, john@example.com, BUSYopr2\nAlice, alice@example.com, fpDntV8q"
text: Separate “name, email, password” with commas. One user per line.
msg: "Please enter the user's email, one per line."
display_name:
Expand Down
20 changes: 20 additions & 0 deletions ui/src/pages/Install/components/FourthStep/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,26 @@ const Index: FC<Props> = ({ visible, data, changeCallback, nextCallback }) => {
</Form.Control.Feedback>
</Form.Group>

<Form.Group controlId="login_required" className="mb-3">
<Form.Label>{t('login_required.label')}</Form.Label>
<Form.Check
type="switch"
id="login_required"
label={t('login_required.switch')}
checked={data.login_required.value}
onChange={(e) => {
console.log(e.target.checked);
changeCallback({
login_required: {
value: e.target.checked,
isInvalid: false,
errorMsg: '',
},
});
}}
/>
</Form.Group>

<h5>{t('admin_account')}</h5>
<Form.Group controlId="name" className="mb-3">
<Form.Label>{t('admin_name.label')}</Form.Label>
Expand Down
6 changes: 6 additions & 0 deletions ui/src/pages/Install/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ const Index: FC = () => {
isInvalid: false,
errorMsg: '',
},
login_required: {
value: false,
isInvalid: false,
errorMsg: '',
},
name: {
value: '',
isInvalid: false,
Expand Down Expand Up @@ -164,6 +169,7 @@ const Index: FC = () => {
site_name: formData.site_name.value,
site_url: formData.site_url.value,
contact_email: formData.contact_email.value,
login_required: formData.login_required.value,
name: formData.name.value,
password: formData.password.value,
email: formData.email.value,
Expand Down
8 changes: 6 additions & 2 deletions ui/src/plugins/builtin/Algolia/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ const Index: FC = () => {
if (!data?.icon) return null;

return (
<div className="d-flex align-items-center">
<a
className="d-flex align-items-center"
href="https://www.algolia.com/"
target="_blank"
rel="noopener noreferrer">
<span className="small text-secondary me-2">{t('search_by')}</span>
<SvgIcon base64={data?.icon} />
</div>
</a>
);
};

Expand Down

0 comments on commit fe621ea

Please sign in to comment.