Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dima Krasner
Sharkey
Commits
a74beaac
Commit
a74beaac
authored
4 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
🎨
parent
79f8eb91
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/client/pages/settings/import-export.vue
+50
-28
50 additions, 28 deletions
src/client/pages/settings/import-export.vue
with
50 additions
and
28 deletions
src/client/pages/settings/import-export.vue
+
50
−
28
View file @
a74beaac
<
template
>
<section
class=
"_section"
>
<div
class=
"_title"
><Fa
:icon=
"faBoxes"
/>
{{
$ts
.
importAndExport
}}
</div>
<div
class=
"_content"
>
<MkSelect
v-model:value=
"exportTarget"
>
<option
value=
"notes"
>
{{
$ts
.
_exportOrImport
.
allNotes
}}
</option>
<option
value=
"following"
>
{{
$ts
.
_exportOrImport
.
followingList
}}
</option>
<option
value=
"user-lists"
>
{{
$ts
.
_exportOrImport
.
userLists
}}
</option>
<option
value=
"mute"
>
{{
$ts
.
_exportOrImport
.
muteList
}}
</option>
<option
value=
"blocking"
>
{{
$ts
.
_exportOrImport
.
blockingList
}}
</option>
</MkSelect>
<MkButton
inline
primary
@
click=
"doExport"
><Fa
:icon=
"faDownload"
/>
{{
$ts
.
export
}}
</MkButton>
<MkButton
inline
primary
@
click=
"doImport"
:disabled=
"!['following', 'user-lists'].includes(exportTarget)"
><Fa
:icon=
"faUpload"
/>
{{
$ts
.
import
}}
</MkButton>
</div>
</section>
<FormBase>
<FormGroup>
<template
#label
>
{{
$ts
.
_exportOrImport
.
allNotes
}}
</
template
>
<FormButton
@
click=
"doExport('notes')"
><Fa
:icon=
"faDownload"
/>
{{ $ts.export }}
</FormButton>
</FormGroup>
<FormGroup>
<
template
#label
>
{{
$ts
.
_exportOrImport
.
followingList
}}
</
template
>
<FormButton
@
click=
"doExport('following')"
><Fa
:icon=
"faDownload"
/>
{{ $ts.export }}
</FormButton>
<FormButton
@
click=
"doImport('following', $event)"
><Fa
:icon=
"faUpload"
/>
{{ $ts.import }}
</FormButton>
</FormGroup>
<FormGroup>
<
template
#label
>
{{
$ts
.
_exportOrImport
.
userLists
}}
</
template
>
<FormButton
@
click=
"doExport('user-lists')"
><Fa
:icon=
"faDownload"
/>
{{ $ts.export }}
</FormButton>
<FormButton
@
click=
"doImport('user-lists', $event)"
><Fa
:icon=
"faUpload"
/>
{{ $ts.import }}
</FormButton>
</FormGroup>
<FormGroup>
<
template
#label
>
{{
$ts
.
_exportOrImport
.
muteList
}}
</
template
>
<FormButton
@
click=
"doExport('mute')"
><Fa
:icon=
"faDownload"
/>
{{ $ts.export }}
</FormButton>
</FormGroup>
<FormGroup>
<
template
#label
>
{{
$ts
.
_exportOrImport
.
blockingList
}}
</
template
>
<FormButton
@
click=
"doExport('blocking')"
><Fa
:icon=
"faDownload"
/>
{{ $ts.export }}
</FormButton>
</FormGroup>
</FormBase>
</template>
<
script
lang=
"ts"
>
import
{
defineComponent
}
from
'
vue
'
;
import
{
faDownload
,
faUpload
,
faBoxes
}
from
'
@fortawesome/free-solid-svg-icons
'
;
import
MkButton
from
'
@/components/ui/button.vue
'
;
import
MkSelect
from
'
@/components/ui/select.vue
'
;
import
FormSelect
from
'
@/components/form/select.vue
'
;
import
FormButton
from
'
@/components/form/button.vue
'
;
import
FormBase
from
'
@/components/form/base.vue
'
;
import
FormGroup
from
'
@/components/form/group.vue
'
;
import
*
as
os
from
'
@/os
'
;
import
{
selectFile
}
from
'
@/scripts/select-file
'
;
export
default
defineComponent
({
components
:
{
MkButton
,
MkSelect
,
FormBase
,
FormGroup
,
FormButton
,
},
emits
:
[
'
info
'
],
data
()
{
return
{
exportTarget
:
'
notes
'
,
INFO
:
{
title
:
this
.
$ts
.
importAndExport
,
icon
:
faBoxes
},
faDownload
,
faUpload
,
faBoxes
}
},
mounted
()
{
this
.
$emit
(
'
info
'
,
this
.
INFO
);
},
methods
:
{
doExport
()
{
doExport
(
target
)
{
os
.
api
(
t
his
.
exportT
arget
==
'
notes
'
?
'
i/export-notes
'
:
t
his
.
exportT
arget
==
'
following
'
?
'
i/export-following
'
:
t
his
.
exportT
arget
==
'
blocking
'
?
'
i/export-blocking
'
:
t
his
.
exportT
arget
==
'
user-lists
'
?
'
i/export-user-lists
'
:
t
his
.
exportT
arget
==
'
mute
'
?
'
i/export-mute
'
:
target
==
'
notes
'
?
'
i/export-notes
'
:
target
==
'
following
'
?
'
i/export-following
'
:
target
==
'
blocking
'
?
'
i/export-blocking
'
:
target
==
'
user-lists
'
?
'
i/export-user-lists
'
:
target
==
'
mute
'
?
'
i/export-mute
'
:
null
,
{})
.
then
(()
=>
{
os
.
dialog
({
...
...
@@ -58,12 +80,12 @@ export default defineComponent({
});
},
async
doImport
(
e
)
{
async
doImport
(
target
,
e
)
{
const
file
=
await
selectFile
(
e
.
currentTarget
||
e
.
target
);
os
.
api
(
t
his
.
exportT
arget
==
'
following
'
?
'
i/import-following
'
:
t
his
.
exportT
arget
==
'
user-lists
'
?
'
i/import-user-lists
'
:
target
==
'
following
'
?
'
i/import-following
'
:
target
==
'
user-lists
'
?
'
i/import-user-lists
'
:
null
,
{
fileId
:
file
.
id
}).
then
(()
=>
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment