-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Remake Twitter handle saving with Vue and modularize shared com…
…ponent code Signed-off-by: Christopher Ng <[email protected]>
- Loading branch information
Showing
26 changed files
with
381 additions
and
1,032 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
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 | ||
|
@@ -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 | ||
|
@@ -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
59
apps/settings/src/components/PersonalInfo/DisplayNameSection.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,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> |
180 changes: 0 additions & 180 deletions
180
apps/settings/src/components/PersonalInfo/DisplayNameSection/DisplayName.vue
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.