2020-06-25 23:45:47 +03:00
|
|
|
<div class="modal-body gh-ps-modal-body">
|
|
|
|
<div style="display:flex;padding: 0 20px 0 20px;flex-grow: 1">
|
2020-07-07 07:22:42 +03:00
|
|
|
<div style="padding: 20px 20px 0 0;">
|
2020-06-25 23:45:47 +03:00
|
|
|
<h2 class="f6 fw6">Modal Settings</h2>
|
|
|
|
<fieldset>
|
|
|
|
<div class="pt3">
|
|
|
|
<GhFormGroup @classNames="gh-members-subscribed-checkbox pb4 mb0">
|
|
|
|
<div class="flex justify-between items-center">
|
|
|
|
<div style="margin-right: 12px">
|
|
|
|
<h4 class="gh-setting-title">Display name in signup form</h4>
|
|
|
|
</div>
|
|
|
|
<div class="for-switch">
|
|
|
|
<label
|
|
|
|
class="switch"
|
|
|
|
for="signup-name-checkbox"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
checked={{this.settings.portalName}}
|
|
|
|
id="signup-name-checkbox"
|
|
|
|
name="signup-name-checkbox"
|
|
|
|
onclick={{action "togglePortalName" value="target.checked"}}
|
|
|
|
>
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</GhFormGroup>
|
2020-06-19 19:06:49 +03:00
|
|
|
<div>
|
2020-06-25 23:45:47 +03:00
|
|
|
<div class="mb3">
|
|
|
|
<h4 class="gh-setting-title">Plans available at signup</h4>
|
|
|
|
</div>
|
|
|
|
<div class="form-group mb0 for-checkbox">
|
|
|
|
<label
|
|
|
|
class="checkbox"
|
|
|
|
for="free-plan"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
checked={{this.isFreeChecked}}
|
|
|
|
id="free-plan"
|
|
|
|
name="free-plan"
|
|
|
|
disabled={{not this.subscriptionSettings.allowSelfSignup}}
|
|
|
|
class="gh-input post-settings-featured"
|
|
|
|
onclick={{action "toggleFreePlan" value="target.checked"}}
|
|
|
|
data-test-checkbox="featured"
|
|
|
|
>
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
<p>Free</p>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group mb0 for-checkbox">
|
|
|
|
<label
|
|
|
|
class="checkbox"
|
|
|
|
for="monthly-plan"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
id="monthly-plan"
|
|
|
|
name="monthly-plan"
|
|
|
|
checked={{this.isMonthlyChecked}}
|
|
|
|
disabled={{not this.isStripeConfigured}}
|
|
|
|
class="gh-input post-settings-featured"
|
|
|
|
onclick={{action "toggleMonthlyPlan" value="target.checked"}}
|
|
|
|
data-test-checkbox="featured"
|
|
|
|
>
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
<p>Monthly</p>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group mb0 for-checkbox">
|
|
|
|
<label
|
|
|
|
class="checkbox"
|
|
|
|
for="yearly-plan"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
id="yearly-plan"
|
|
|
|
name="yearly-plan"
|
|
|
|
checked={{this.isYearlyChecked}}
|
|
|
|
disabled={{not this.isStripeConfigured}}
|
|
|
|
class="gh-input post-settings-featured"
|
|
|
|
onclick={{action "toggleYearlyPlan" value="target.checked"}}
|
|
|
|
data-test-checkbox="featured"
|
|
|
|
>
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
<p>Yearly</p>
|
|
|
|
</label>
|
|
|
|
</div>
|
2020-06-19 19:06:49 +03:00
|
|
|
</div>
|
2020-07-07 07:22:42 +03:00
|
|
|
<div style="border-top: 1px solid #e5eff5;padding: 0 20px;margin: 0 -20px" class="mt3">
|
|
|
|
<h4 class="mb3 mt3"> Look & Feel </h4>
|
|
|
|
<GhFormGroup @classNames="flex">
|
|
|
|
<div class="gh-setting-content flex items-center">
|
|
|
|
<div class="gh-setting-title">Accent Color</div>
|
2020-06-25 23:45:47 +03:00
|
|
|
</div>
|
2020-07-07 07:22:42 +03:00
|
|
|
<div class="gh-setting-action">
|
|
|
|
<GhFormGroup
|
|
|
|
@errors={{settings.errors}}
|
|
|
|
@hasValidated={{settings.hasValidated}}
|
|
|
|
@property="accentColor"
|
|
|
|
@class="input-color-form-group"
|
2020-06-25 23:45:47 +03:00
|
|
|
>
|
2020-07-07 07:22:42 +03:00
|
|
|
<div class="input-color">
|
|
|
|
<GhTextInput
|
|
|
|
@name="accent-color"
|
|
|
|
@placeholder="abcdef"
|
|
|
|
@autocorrect="off"
|
|
|
|
@maxlength="6"
|
|
|
|
@focus-out={{action "validateAccentColor"}}
|
|
|
|
@value={{accentColor}}
|
|
|
|
data-test-input="accentColor"
|
|
|
|
/>
|
|
|
|
<div
|
|
|
|
class="color-box"
|
|
|
|
style={{this.backgroundStyle}}
|
|
|
|
></div>
|
|
|
|
</div>
|
|
|
|
<GhErrorMessage
|
|
|
|
@errors={{settings.errors}}
|
|
|
|
@property="accentColor"
|
|
|
|
data-test-error="accentColor"
|
|
|
|
/>
|
|
|
|
</GhFormGroup>
|
|
|
|
</div>
|
|
|
|
</GhFormGroup>
|
|
|
|
<GhFormGroup @classNames="gh-members-subscribed-checkbox mb0pt3 b--whitegrey">
|
|
|
|
<div class="flex justify-between items-center">
|
|
|
|
<div>
|
|
|
|
<h4 class="gh-setting-title">Show Portal button</h4>
|
|
|
|
</div>
|
|
|
|
<div class="for-switch">
|
|
|
|
<label
|
|
|
|
class="switch"
|
|
|
|
for="portal-button-checkbox"
|
2020-06-25 23:45:47 +03:00
|
|
|
>
|
2020-07-07 07:22:42 +03:00
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
checked={{this.settings.portalButton}}
|
|
|
|
id="portal-button-checkbox"
|
|
|
|
name="portal-button-checkbox"
|
|
|
|
onclick={{action "togglePortalButton" value="target.checked"}}
|
|
|
|
>
|
|
|
|
<span class="input-toggle-component"></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
2020-06-25 23:45:47 +03:00
|
|
|
</div>
|
2020-07-07 07:22:42 +03:00
|
|
|
</GhFormGroup>
|
|
|
|
{{#if this.settings.portalButton}}
|
|
|
|
<GhFormGroup>
|
|
|
|
<h4 class="gh-setting-title mb1">Portal button style</h4>
|
|
|
|
<span
|
|
|
|
class="gh-select mt2"
|
|
|
|
data-select-text="test"
|
|
|
|
tabindex="0"
|
|
|
|
>
|
|
|
|
<OneWaySelect
|
|
|
|
@id="portal-button-style"
|
|
|
|
@name="portal[button-style]"
|
|
|
|
@options={{this.buttonStyleOptions}}
|
|
|
|
@optionValuePath="name"
|
|
|
|
@optionLabelPath="label"
|
|
|
|
@value={{this.selectedButtonStyle}}
|
|
|
|
@update={{action "setButtonStyle"}}
|
|
|
|
/>
|
|
|
|
{{svg-jar "arrow-down-small"}}
|
|
|
|
</span>
|
|
|
|
</GhFormGroup>
|
|
|
|
{{#if showIconSetting}}
|
|
|
|
<GhFormGroup>
|
|
|
|
<h4 class="gh-setting-title">Icon</h4>
|
|
|
|
<GhUploader
|
|
|
|
@extensions={{this.iconExtensions}}
|
|
|
|
@paramsHash={{hash purpose="icon"}}
|
|
|
|
@onComplete={{action "imageUploaded" "icon"}}
|
|
|
|
as
|
|
|
|
|uploader|
|
|
|
|
>
|
|
|
|
<div class="flex items-center mt2">
|
|
|
|
<div
|
|
|
|
class="flex flex-grow-1 justify-center"
|
|
|
|
style="border: 1px solid #d6e3eb;border-radius: 4px;padding: 5px 5px;"
|
|
|
|
>
|
|
|
|
{{#each this.defaultButtonIcons as |imgIcon| }}
|
|
|
|
<img
|
|
|
|
src={{imgIcon}}
|
|
|
|
alt="icon" class="gh-portal-button-icon {{if (eq this.buttonIcon imgIcon) "selected-icon"}}" onclick={{action "selectDefaultIcon" imgIcon}} />
|
|
|
|
{{/each}}
|
|
|
|
{{#if uploader.isUploading}}
|
|
|
|
{{uploader.progressBar}}
|
|
|
|
{{else if this.customIcon}}
|
|
|
|
<img
|
|
|
|
class="gh-portal-button-icon {{if (eq this.buttonIcon this.customIcon) "selected-icon"}}"
|
|
|
|
src="{{this.customIcon}}"
|
|
|
|
onclick={{action "selectDefaultIcon" this.customIcon}}
|
|
|
|
alt="icon"
|
|
|
|
data-test-icon-img
|
|
|
|
>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="flex gh-setting-action"
|
|
|
|
style="border: 1px solid #d6e3eb;border-radius: 4px;padding: 9px 12px;"
|
|
|
|
>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="gh-btn"
|
|
|
|
onclick={{action "triggerFileDialog"}}
|
|
|
|
data-test-image-upload-btn="icon"
|
|
|
|
>
|
|
|
|
<span style="font-size:24px">+</span>
|
|
|
|
</button>
|
|
|
|
<div style="display:none">
|
|
|
|
<GhFileInput
|
|
|
|
@multiple={{false}}
|
|
|
|
@action={{uploader.setFiles}}
|
|
|
|
@accept={{this.iconMimeTypes}}
|
|
|
|
data-test-file-input="icon"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</GhUploader>
|
|
|
|
|
|
|
|
</GhFormGroup>
|
|
|
|
{{/if}}
|
|
|
|
<GhFormGroup>
|
|
|
|
<h4 class="gh-setting-title">Signup button text</h4>
|
|
|
|
|
|
|
|
<div class="flex items-center mt2">
|
|
|
|
<GhTextInput
|
|
|
|
@value={{readonly this.signupButtonText}}
|
|
|
|
@type="text"
|
|
|
|
@input={{action "setSignupButtonText"}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<p class="gh-setting-desc pa0 ma0">Visible to logged out members only</p>
|
|
|
|
</GhFormGroup>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div style="border-top: 1px solid #e5eff5;padding: 0 20px;margin: 0 -20px" class="mt3">
|
|
|
|
<h4 class="mb3 mt3"> Links </h4>
|
|
|
|
<GhFormGroup>
|
|
|
|
<div class="flex" style="width:100%">
|
|
|
|
<div style="flex-grow:1;font-weight: bold">Show modal</div>
|
|
|
|
<div {{action (toggle "isShowModalLink" this)}} style="color:#3eb0ef;cursor:pointer"> {{if this.isShowModalLink "Data Attribute" "Link"}} </div>
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center justify-center mt1 gh-show-modal-link-form">
|
|
|
|
<GhTextInput
|
|
|
|
@value={{this.showModalLinkOrAttribute}}
|
|
|
|
@type="text"
|
|
|
|
@disabled={{true}}
|
|
|
|
/>
|
|
|
|
<button type="button" {{action (perform this.copyLinkOrAttribute)}} class="bg-black-70 f8 pa1 pr3 pl3 br3 white fw4 flex items-center">
|
|
|
|
{{#if this.copyLinkOrAttribute.isRunning}}
|
|
|
|
{{svg-jar "check-circle" class="w3 v-mid mr2 stroke-white"}} Copied
|
|
|
|
{{else}}
|
|
|
|
Copy
|
|
|
|
{{/if}}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="mt2">
|
|
|
|
<span onclick={{action "switchPreviewPage" "links"}} style="color:#3eb0ef;cursor:pointer"> Show more...</span>
|
|
|
|
</div>
|
|
|
|
</GhFormGroup>
|
|
|
|
</div>
|
2020-06-19 19:06:49 +03:00
|
|
|
</div>
|
2020-06-25 23:45:47 +03:00
|
|
|
</fieldset>
|
2020-06-19 19:06:49 +03:00
|
|
|
</div>
|
2020-07-07 07:22:42 +03:00
|
|
|
<div style="border-left: 1px solid #e5eff5;">
|
2020-06-25 23:45:47 +03:00
|
|
|
</div>
|
2020-07-07 07:22:42 +03:00
|
|
|
<div style="display: flex; flex-direction: column; flex-grow: 1; padding: 20px 0 20px 20px;">
|
2020-06-25 23:45:47 +03:00
|
|
|
<div style="padding-bottom: 12px;display: flex;justify-content: center;">
|
|
|
|
<span style="padding: 0 20px 0 20px; font-weight: bold"><a href="#" {{action "switchPreviewPage" "signup"}} data-test-link="switch-portal-preview-page">Signup</a></span>
|
2020-07-07 07:22:42 +03:00
|
|
|
<span style="padding: 0 20px 0 20px; font-weight: bold"><a href="#" {{action "switchPreviewPage" "accountHome"}} data-test-link="switch-portal-preview-page">Account</a></span>
|
|
|
|
<span style="padding: 0 20px 0 20px; font-weight: bold"><a href="#" {{action "switchPreviewPage" "links"}} data-test-link="switch-portal-preview-page">Links</a></span>
|
2020-06-25 23:45:47 +03:00
|
|
|
</div>
|
|
|
|
<div style="position: relative;flex-grow: 1">
|
|
|
|
<GhSiteIframe
|
|
|
|
@guid="test-site-portal"
|
|
|
|
@src={{this.portalPreviewUrl}}
|
|
|
|
></GhSiteIframe>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button
|
|
|
|
class="gh-btn"
|
|
|
|
{{action "closeModal"}}
|
|
|
|
{{!-- disable mouseDown so it doesn't trigger focus-out validations --}}
|
|
|
|
{{on "mousedown" (optional this.noop)}}
|
|
|
|
data-test-button="cancel-custom-view-form"
|
|
|
|
>
|
|
|
|
<span>Cancel</span>
|
|
|
|
</button>
|
2020-06-19 19:06:49 +03:00
|
|
|
|
2020-06-25 23:45:47 +03:00
|
|
|
<GhTaskButton
|
|
|
|
@buttonText="Save and close"
|
|
|
|
@successText="Saved"
|
|
|
|
@task={{this.saveTask}}
|
|
|
|
@idleClass="gh-btn-green"
|
|
|
|
@class="gh-btn gh-btn-icon"
|
|
|
|
data-test-button="save-members-modal-setting"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-19 19:06:49 +03:00
|
|
|
</div>
|