Skip to content

Commit

Permalink
[WIP] Remake Twitter handle saving with Vue and modularize shared com…
Browse files Browse the repository at this point in the history
…ponent code

Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Jul 14, 2022
1 parent 64584ef commit b995f76
Show file tree
Hide file tree
Showing 26 changed files with 381 additions and 1,032 deletions.
3 changes: 2 additions & 1 deletion apps/settings/js/federationsettingsview.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@
if (
field === 'avatar' ||
field === 'email' ||
field === 'displayname'
field === 'displayname' ||
field === 'twitter'
) {
return;
}
Expand Down
2 changes: 2 additions & 0 deletions apps/settings/lib/Settings/Personal/PersonalInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ public function getForm(): TemplateResponse {
'userId' => $uid,
'displayName' => $this->getProperty($account, IAccountManager::PROPERTY_DISPLAYNAME),
'emailMap' => $this->getEmailMap($account),
'twitter' => $this->getProperty($account, IAccountManager::PROPERTY_TWITTER),
'languageMap' => $this->getLanguageMap($user),
'profileEnabledGlobally' => $this->profileManager->isProfileEnabled(),
'profileEnabled' => $this->profileManager->isProfileEnabled($user),
Expand Down Expand Up @@ -213,6 +214,7 @@ private function isFairUseOfFreePushService(): bool {
*/
private function getProperty(IAccount $account, string $property): array {
$property = [
'name' => $account->getProperty($property)->getName(),
'value' => $account->getProperty($property)->getValue(),
'scope' => $account->getProperty($property)->getScope(),
'verified' => $account->getProperty($property)->getVerified(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!--
- @copyright 2021, Christopher Ng <[email protected]>
- @copyright 2022 Christopher Ng <[email protected]>
-
- @author Christopher Ng <[email protected]>
-
- @license GNU AGPL version 3 or any later version
- @license AGPL-3.0-or-later
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
Expand All @@ -12,7 +12,7 @@
-
- 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
- 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
Expand All @@ -21,49 +21,30 @@
-->

<template>
<section>
<HeaderBar :account-property="accountProperty"
label-for="biography"
:scope.sync="biography.scope" />

<Biography :biography.sync="biography.value"
:scope.sync="biography.scope" />
</section>
<AccountPropertySection :property="biography"
:placeholder="t('settings', 'Your biography')" />
</template>

<script>
import { loadState } from '@nextcloud/initial-state'
import Biography from './Biography'
import HeaderBar from '../shared/HeaderBar'
import AccountPropertySection from './shared/AccountPropertySection.vue'
import { ACCOUNT_PROPERTY_READABLE_ENUM } from '../../../constants/AccountPropertyConstants'
import { NAME_READABLE_ENUM } from '../../constants/AccountPropertyConstants.js'
const { biography } = loadState('settings', 'personalInfoParameters', {})
export default {
name: 'BiographySection',
components: {
Biography,
HeaderBar,
AccountPropertySection,
},
data() {
return {
accountProperty: ACCOUNT_PROPERTY_READABLE_ENUM.BIOGRAPHY,
biography,
biography: { ...biography, readable: NAME_READABLE_ENUM[biography.name] },
}
},
}
</script>

<style lang="scss" scoped>
section {
padding: 10px 10px;
&::v-deep button:disabled {
cursor: default;
}
}
</style>
59 changes: 59 additions & 0 deletions apps/settings/src/components/PersonalInfo/DisplayNameSection.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!--
- @copyright 2022 Christopher Ng <[email protected]>
-
- @author Christopher Ng <[email protected]>
-
- @license AGPL-3.0-or-later
-
- 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>
<AccountPropertySection :property="displayName"
:placeholder="t('settings', 'Your full name')"
:empty-string-valid="false"
:on-success="onSuccess" />
</template>

<script>
import { loadState } from '@nextcloud/initial-state'
import { emit } from '@nextcloud/event-bus'
import AccountPropertySection from './shared/AccountPropertySection.vue'
import { NAME_READABLE_ENUM } from '../../constants/AccountPropertyConstants.js'
const { displayName } = loadState('settings', 'personalInfoParameters', {})
export default {
name: 'DisplayNameSection',
components: {
AccountPropertySection,
},
data() {
return {
displayName: { ...displayName, readable: NAME_READABLE_ENUM[displayName.name] },
}
},
methods: {
onSuccess(value) {
emit('settings:display-name:updated', value)
},
}
}
</script>

This file was deleted.

Loading

0 comments on commit b995f76

Please sign in to comment.