blob: a9e2c5aae72870d02ae0f1e48b3581a675c95149 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
import QtQuick 2.0
import Sailfish.Silica 1.0
import Sailfish.Accounts 1.0
import com.jolla.settings.accounts 1.0
import org.nemomobile.configuration 1.0
StandardAccountSettingsDisplay {
id: root
settingsModified: true
onAboutToSaveAccount: {
settingsLoader.updateAllSyncProfiles()
if (eventsSyncSwitch.checked !== root.account.configurationValues("")["FeedViewAutoSync"]) {
root.account.setConfigurationValue("", "FeedViewAutoSync", eventsSyncSwitch.checked)
}
}
StandardAccountSettingsLoader {
id: settingsLoader
account: root.account
accountProvider: root.accountProvider
accountManager: root.accountManager
autoEnableServices: root.autoEnableAccount
onSettingsLoaded: {
syncServicesRepeater.model = syncServices
otherServicesDisplay.serviceModel = otherServices
var credentialsUserName = root.account.defaultCredentialsUserName
? root.account.defaultCredentialsUserName.toString().trim()
: ""
if (credentialsUserName.length > 0 && root.account.displayName !== credentialsUserName) {
root.account.displayName = credentialsUserName
}
var autoSync = root.account.configurationValues("")["FeedViewAutoSync"]
var isNewAccount = root.autoEnableAccount
eventsSyncSwitch.checked = (isNewAccount || autoSync === true)
}
}
Column {
id: syncServicesDisplay
width: parent.width
SectionHeader {
//: Options for data to be downloaded from a remote server
//% "Download"
text: qsTrId("settings-accounts-la-download_options")
}
Repeater {
id: syncServicesRepeater
TextSwitch {
checked: model.enabled
text: model.displayName
visible: text.length > 0
onCheckedChanged: {
if (checked) {
root.account.enableWithService(model.serviceName)
} else {
root.account.disableWithService(model.serviceName)
}
}
}
}
TextSwitch {
id: eventsSyncSwitch
text: "Sync Mastodon feed automatically"
description: "Fetch new posts periodically when browsing Events Mastodon feed."
onCheckedChanged: {
autoSyncConf.value = checked
}
}
}
ConfigurationValue {
id: autoSyncConf
key: "/desktop/lipstick-jolla-home/events/auto_sync_feeds/" + root.account.identifier
}
AccountServiceSettingsDisplay {
id: otherServicesDisplay
enabled: root.accountEnabled
onUpdateServiceEnabledStatus: {
if (enabled) {
root.account.enableWithService(serviceName)
} else {
root.account.disableWithService(serviceName)
}
}
}
}
|