Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F12142863
AccountLogoutView.swift
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
AccountLogoutView.swift
View Options
import
SwiftUI
struct
AccountLogoutView
:
View
{
@
EnvironmentObject
var
model
:
WriteFreelyModel
@
State
private
var
isPresentingLogoutConfirmation
:
Bool
=
false
@
State
private
var
editedPostsWarningString
:
String
=
""
var
body
:
some
View
{
#if
os
(
iOS
)
VStack
{
Spacer
()
VStack
{
Text
(
"Logged in as
\(
model
.
account
.
username
)
"
)
Text
(
"on
\(
model
.
account
.
server
)
"
)
}
Spacer
()
Button
(
action
:
logoutHandler
,
label
:
{
Text
(
"Log Out"
)
})
}
.
actionSheet
(
isPresented
:
$
isPresentingLogoutConfirmation
,
content
:
{
ActionSheet
(
title
:
Text
(
"Log Out?"
),
message
:
Text
(
"
\(
editedPostsWarningString
)
You won't lose any local posts. Are you sure?"
),
buttons
:
[
.
destructive
(
Text
(
"Log Out"
),
action
:
{
model
.
logout
()
}),
.
cancel
()
]
)
})
#else
VStack
{
Spacer
()
VStack
{
Text
(
"Logged in as
\(
model
.
account
.
username
)
"
)
Text
(
"on
\(
model
.
account
.
server
)
"
)
}
Spacer
()
Button
(
action
:
logoutHandler
,
label
:
{
Text
(
"Log Out"
)
})
}
.
alert
(
isPresented
:
$
isPresentingLogoutConfirmation
)
{
Alert
(
title
:
Text
(
"Log Out?"
),
message
:
Text
(
"
\(
editedPostsWarningString
)
You won't lose any local posts. Are you sure?"
),
primaryButton
:
.
cancel
(
Text
(
"Cancel"
),
action
:
{
self
.
isPresentingLogoutConfirmation
=
false
}),
secondaryButton
:
.
destructive
(
Text
(
"Log Out"
),
action
:
model
.
logout
)
)
}
#endif
}
func
logoutHandler
()
{
let
request
=
WFAPost
.
createFetchRequest
()
request
.
predicate
=
NSPredicate
(
format
:
"status == %i"
,
1
)
do
{
let
editedPosts
=
try
LocalStorageManager
.
persistentContainer
.
viewContext
.
fetch
(
request
)
if
editedPosts
.
count
==
1
{
editedPostsWarningString
=
"You'll lose unpublished changes to
\(
editedPosts
.
count
)
edited post. "
}
if
editedPosts
.
count
>
1
{
editedPostsWarningString
=
"You'll lose unpublished changes to
\(
editedPosts
.
count
)
edited posts. "
}
}
catch
{
print
(
"Error: failed to fetch cached posts"
)
}
self
.
isPresentingLogoutConfirmation
=
true
}
}
struct
AccountLogoutView_Previews
:
PreviewProvider
{
static
var
previews
:
some
View
{
AccountLogoutView
()
.
environmentObject
(
WriteFreelyModel
())
}
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Fri, Oct 10, 2:16 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3441008
Attached To
rWFSUI WriteFreely SwiftUI
Event Timeline
Log In to Comment