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
133b5c63
Commit
133b5c63
authored
3 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
wip: refactor(client): migrate components to composition api
parent
ed5c918d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/client/src/components/link.vue
+19
-65
19 additions, 65 deletions
packages/client/src/components/link.vue
packages/client/src/ui/_common_/stream-indicator.vue
+20
-31
20 additions, 31 deletions
packages/client/src/ui/_common_/stream-indicator.vue
with
39 additions
and
96 deletions
packages/client/src/components/link.vue
+
19
−
65
View file @
133b5c63
<
template
>
<component
:is=
"self ? 'MkA' : 'a'"
class=
"xlcxczvw _link"
:[attr]=
"self ? url.substr(local.length) : url"
:rel=
"rel"
:target=
"target"
<component
:is=
"self ? 'MkA' : 'a'"
ref=
"el"
class=
"xlcxczvw _link"
:[attr]=
"self ? url.substr(local.length) : url"
:rel=
"rel"
:target=
"target"
:title=
"url"
@
mouseover=
"onMouseover"
@
mouseleave=
"onMouseleave"
>
<slot></slot>
<i
v-if=
"target === '_blank'"
class=
"fas fa-external-link-square-alt icon"
></i>
</component>
</
template
>
<
script
lang=
"ts"
>
import
{
defineComponent
}
from
'
vue
'
;
<
script
lang=
"ts"
setup
>
import
{
}
from
'
vue
'
;
import
{
url
as
local
}
from
'
@/config
'
;
import
{
isTouchUsing
}
from
'
@/scripts/
touch
'
;
import
{
useTooltip
}
from
'
@/scripts/
use-tooltip
'
;
import
*
as
os
from
'
@/os
'
;
export
default
defineComponent
({
props
:
{
url
:
{
type
:
String
,
required
:
true
,
},
rel
:
{
type
:
String
,
required
:
false
,
}
},
data
()
{
const
self
=
this
.
url
.
startsWith
(
local
);
return
{
local
,
self
:
self
,
attr
:
self
?
'
to
'
:
'
href
'
,
target
:
self
?
null
:
'
_blank
'
,
showTimer
:
null
,
hideTimer
:
null
,
checkTimer
:
null
,
close
:
null
,
};
},
methods
:
{
async
showPreview
()
{
if
(
!
document
.
body
.
contains
(
this
.
$el
))
return
;
if
(
this
.
close
)
return
;
const
props
=
withDefaults
(
defineProps
<
{
url
:
string
;
rel
?:
null
|
string
;
}
>
(),
{
});
const
{
dispose
}
=
await
os
.
popup
(
import
(
'
@/components/url-preview-popup.vue
'
),
{
url
:
this
.
url
,
source
:
this
.
$el
});
const
self
=
props
.
url
.
startsWith
(
local
);
const
attr
=
self
?
'
to
'
:
'
href
'
;
const
target
=
self
?
null
:
'
_blank
'
;
this
.
close
=
()
=>
{
dispose
();
};
const
el
=
$ref
();
this
.
checkTimer
=
setInterval
(()
=>
{
if
(
!
document
.
body
.
contains
(
this
.
$el
))
this
.
closePreview
();
},
1000
);
},
closePreview
()
{
if
(
this
.
close
)
{
clearInterval
(
this
.
checkTimer
);
this
.
close
();
this
.
close
=
null
;
}
},
onMouseover
()
{
if
(
isTouchUsing
)
return
;
clearTimeout
(
this
.
showTimer
);
clearTimeout
(
this
.
hideTimer
);
this
.
showTimer
=
setTimeout
(
this
.
showPreview
,
500
);
},
onMouseleave
()
{
if
(
isTouchUsing
)
return
;
clearTimeout
(
this
.
showTimer
);
clearTimeout
(
this
.
hideTimer
);
this
.
hideTimer
=
setTimeout
(
this
.
closePreview
,
500
);
}
}
useTooltip
(
$
$
(
el
),
(
showing
)
=>
{
os
.
popup
(
import
(
'
@/components/url-preview-popup.vue
'
),
{
showing
,
url
:
props
.
url
,
source
:
el
,
},
{},
'
closed
'
);
});
</
script
>
...
...
This diff is collapsed.
Click to expand it.
packages/client/src/ui/_common_/stream-indicator.vue
+
20
−
31
View file @
133b5c63
...
...
@@ -8,39 +8,28 @@
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
defineComponent
}
from
'
vue
'
;
import
*
as
os
from
'
@/os
'
;
<
script
lang=
"ts"
setup
>
import
{
onUnmounted
}
from
'
vue
'
;
import
{
stream
}
from
'
@/stream
'
;
export
default
defineComponent
({
data
()
{
return
{
hasDisconnected
:
false
,
}
},
computed
:
{
stream
()
{
return
stream
;
},
},
created
()
{
stream
.
on
(
'
_disconnected_
'
,
this
.
onDisconnected
);
},
beforeUnmount
()
{
stream
.
off
(
'
_disconnected_
'
,
this
.
onDisconnected
);
},
methods
:
{
onDisconnected
()
{
this
.
hasDisconnected
=
true
;
},
resetDisconnected
()
{
this
.
hasDisconnected
=
false
;
},
reload
()
{
location
.
reload
();
},
}
let
hasDisconnected
=
$ref
(
false
);
function
onDisconnected
()
{
hasDisconnected
=
true
;
}
function
resetDisconnected
()
{
hasDisconnected
=
false
;
}
function
reload
()
{
location
.
reload
();
}
stream
.
on
(
'
_disconnected_
'
,
onDisconnected
);
onUnmounted
(()
=>
{
stream
.
off
(
'
_disconnected_
'
,
onDisconnected
);
});
</
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