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
c72f5e27
Unverified
Commit
c72f5e27
authored
2 years ago
by
Andreas Nedbal
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor(client): refactor settings/api to use Composition API (#8569)
parent
6226e8d9
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
packages/client/src/pages/settings/api.vue
+28
-39
28 additions, 39 deletions
packages/client/src/pages/settings/api.vue
with
28 additions
and
39 deletions
packages/client/src/pages/settings/api.vue
+
28
−
39
View file @
c72f5e27
<
template
>
<div
class=
"_formRoot"
>
<FormButton
primary
class=
"_formBlock"
@
click=
"generateToken"
>
{{
$
ts
.
generateAccessToken
}}
</FormButton>
<FormLink
to=
"/settings/apps"
class=
"_formBlock"
>
{{
$
ts
.
manageAccessTokens
}}
</FormLink>
<FormButton
primary
class=
"_formBlock"
@
click=
"generateToken"
>
{{
i18n
.
ts
.
generateAccessToken
}}
</FormButton>
<FormLink
to=
"/settings/apps"
class=
"_formBlock"
>
{{
i18n
.
ts
.
manageAccessTokens
}}
</FormLink>
<FormLink
to=
"/api-console"
:behavior=
"isDesktop ? 'window' : null"
class=
"_formBlock"
>
API console
</FormLink>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
defineAsyncComponent
,
define
Component
}
from
'
vue
'
;
<
script
lang=
"ts"
setup
>
import
{
defineAsyncComponent
,
define
Expose
,
ref
}
from
'
vue
'
;
import
FormLink
from
'
@/components/form/link.vue
'
;
import
FormButton
from
'
@/components/ui/button.vue
'
;
import
*
as
os
from
'
@/os
'
;
import
*
as
symbols
from
'
@/symbols
'
;
import
{
i18n
}
from
'
@/i18n
'
;
export
default
defineComponent
({
components
:
{
FormButton
,
FormLink
,
},
const
isDesktop
=
ref
(
window
.
innerWidth
>=
1100
);
emits
:
[
'
info
'
],
function
generateToken
()
{
os
.
popup
(
defineAsyncComponent
(()
=>
import
(
'
@/components/token-generate-window.vue
'
)),
{},
{
done
:
async
result
=>
{
const
{
name
,
permissions
}
=
result
;
const
{
token
}
=
await
os
.
api
(
'
miauth/gen-token
'
,
{
session
:
null
,
name
:
name
,
permission
:
permissions
,
});
data
()
{
return
{
[
symbols
.
PAGE_INFO
]:
{
title
:
'
API
'
,
icon
:
'
fas fa-key
'
,
bg
:
'
var(--bg)
'
,
},
isDesktop
:
window
.
innerWidth
>=
1100
,
};
},
methods
:
{
generateToken
()
{
os
.
popup
(
defineAsyncComponent
(()
=>
import
(
'
@/components/token-generate-window.vue
'
)),
{},
{
done
:
async
result
=>
{
const
{
name
,
permissions
}
=
result
;
const
{
token
}
=
await
os
.
api
(
'
miauth/gen-token
'
,
{
session
:
null
,
name
:
name
,
permission
:
permissions
,
});
os
.
alert
({
type
:
'
success
'
,
title
:
this
.
$ts
.
token
,
text
:
token
});
},
},
'
closed
'
);
os
.
alert
({
type
:
'
success
'
,
title
:
i18n
.
ts
.
token
,
text
:
token
});
},
},
'
closed
'
);
}
defineExpose
({
[
symbols
.
PAGE_INFO
]:
{
title
:
'
API
'
,
icon
:
'
fas fa-key
'
,
bg
:
'
var(--bg)
'
,
}
});
</
script
>
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