-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Christopher Ng <chrng8@gmail.com>
- Loading branch information
Showing
31 changed files
with
1,351 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
apps/settings/src/components/PersonalInfo/ProfileSection/ProfileCheckbox.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<!-- | ||
- @copyright 2021, Christopher Ng <chrng8@gmail.com> | ||
- | ||
- @author Christopher Ng <chrng8@gmail.com> | ||
- | ||
- @license GNU AGPL version 3 or any later version | ||
- | ||
- This program is free software: you can redistribute it and/or modify | ||
- it under the terms of the GNU Affero General Public License as | ||
- published by the Free Software Foundation, either version 3 of the | ||
- License, or (at your option) any later version. | ||
- | ||
- This program is distributed in the hope that it will be useful, | ||
- but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
- GNU Affero General Public License for more details. | ||
- | ||
- You should have received a copy of the GNU Affero General Public License | ||
- along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
|
||
<template> | ||
<div class="profile"> | ||
<input | ||
id="enable-profile" | ||
class="checkbox" | ||
type="checkbox" | ||
:checked="profileEnabled" | ||
@change="onEnableProfileChange"> | ||
<label for="enable-profile"> | ||
{{ t('settings', 'Enable Profile') }} | ||
</label> | ||
<em>This will enable your user profile.</em> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { showError } from '@nextcloud/dialogs' | ||
import { emit } from '@nextcloud/event-bus' | ||
|
||
import { saveEnableProfile } from '../../../service/PersonalInfo/ProfileService' | ||
import { validateEnableProfile } from '../../../utils/validate' | ||
|
||
export default { | ||
name: 'ProfileCheckbox', | ||
|
||
props: { | ||
profileEnabled: { | ||
type: Boolean, | ||
required: true, | ||
}, | ||
}, | ||
|
||
data() { | ||
return { | ||
initialProfileEnabled: this.profileEnabled, | ||
showCheckmarkIcon: false, | ||
showErrorIcon: false, | ||
} | ||
}, | ||
|
||
methods: { | ||
async onEnableProfileChange(e) { | ||
const isEnabled = e.target.checked | ||
this.$emit('update:profile-enabled', isEnabled) | ||
|
||
if (validateEnableProfile(isEnabled)) { | ||
await this.updateEnableProfile(isEnabled) | ||
} | ||
}, | ||
|
||
async updateEnableProfile(isEnabled) { | ||
try { | ||
const responseData = await saveEnableProfile(isEnabled) | ||
this.handleResponse({ | ||
isEnabled, | ||
status: responseData.ocs?.meta?.status, | ||
}) | ||
} catch (e) { | ||
this.handleResponse({ | ||
errorMessage: 'Unable to update profile enabled state', | ||
error: e, | ||
}) | ||
} | ||
}, | ||
|
||
handleResponse({ isEnabled, status, errorMessage, error }) { | ||
if (status === 'ok') { | ||
// Ensure that local state reflects server state | ||
this.initialProfileEnabled = isEnabled | ||
emit('settings:profileEnabled:updated', isEnabled) | ||
this.showCheckmarkIcon = true | ||
setTimeout(() => { this.showCheckmarkIcon = false }, 2000) | ||
} else { | ||
showError(t('settings', errorMessage)) | ||
this.logger.error(errorMessage, error) | ||
this.showErrorIcon = true | ||
setTimeout(() => { this.showErrorIcon = false }, 2000) | ||
} | ||
}, | ||
}, | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.profile { | ||
display: grid; | ||
|
||
em { | ||
margin-left: 29px !important; | ||
} | ||
} | ||
</style> |
Oops, something went wrong.