Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add customization options for the login page #5633

Merged
merged 8 commits into from
Oct 13, 2022

Conversation

niwla23
Copy link
Contributor

@niwla23 niwla23 commented Oct 9, 2022

Fixes #5632

adds these config options:

app-name: codee ❤
welcome-text: hey niwla23, please enter your password to start coding

@niwla23 niwla23 requested a review from a team as a code owner October 9, 2022 14:39
@niwla23
Copy link
Contributor Author

niwla23 commented Oct 9, 2022

image
This text can be overwritten by welcome-text. If welcome-text is not given but app-name is, it will show the message you are seeing replacing codee ❤ by the given app-name

If none of the parameters are given, everything stays the same.

image
The tab name is also changed based on the app name

@alanhe421
Copy link

app-name also exits on workspace pages. just like page title.

I think the customization is not complete.

image

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 10, 2022

app-name also exits on workspace pages. just like page title.

I think the customization is not complete.

image

you are right, i will add it

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 10, 2022

I took look at it and it seems that the title in the tab is set by vscode itself. It shows code-server because that is part of the patched product.json.
So it is not possible to change it dynamically without too much effort.

@alanhe421
Copy link

I took look at it and it seems that the title in the tab is set by vscode itself. It shows code-server because that is part of the patched product.json. So it is not possible to change it dynamically without too much effort.

So w can only modify it at the source code and then repackage it.

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 10, 2022

I took look at it and it seems that the title in the tab is set by vscode itself. It shows code-server because that is part of the patched product.json. So it is not possible to change it dynamically without too much effort.

So w can only modify it at the source code and then repackage it.

yes, that's what I mean. One solution would be to serve the product.json dynamically but I am not willing to implement that and it is way too much overhead and complexity for such a simply feature

@alanhe421
Copy link

if so,the pr no meaning?

we have to modify source code on every project according our customize needs。

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 10, 2022

if so,the pr no meaning?

we have to modify source code on every project according our customize needs。

I think it is still better to be able to customize the login page than nothing.

@jsjoeio jsjoeio changed the title add customization options for the login page feat: add customization options for the login page Oct 10, 2022
@jsjoeio
Copy link
Contributor

jsjoeio commented Oct 10, 2022

I think this is okay for us to accept. @niwla23 do you mind adding some tests?

@codecov
Copy link

codecov bot commented Oct 10, 2022

Codecov Report

Merging #5633 (6483adb) into main (71a127a) will increase coverage by 0.09%.
The diff coverage is 100.00%.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #5633      +/-   ##
==========================================
+ Coverage   72.52%   72.61%   +0.09%     
==========================================
  Files          30       30              
  Lines        1678     1680       +2     
  Branches      366      368       +2     
==========================================
+ Hits         1217     1220       +3     
+ Misses        398      397       -1     
  Partials       63       63              
Impacted Files Coverage Δ
src/node/cli.ts 91.66% <ø> (ø)
src/node/routes/login.ts 87.27% <100.00%> (+2.36%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 71a127a...6483adb. Read the comment docs.

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 10, 2022

I think this is okay for us to accept. @niwla23 do you mind adding some tests?

I will add some E2E tests tomorrow

@jsjoeio
Copy link
Contributor

jsjoeio commented Oct 10, 2022

Do you mind doing unit tests instead? I'd rather not increase our e2e tests for non-critical workflows.

Here's where you could add the test: https://github.com/coder/code-server/blob/main/test/unit/node/cli.test.ts#L53

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 10, 2022

Do you mind doing unit tests instead?

yeah, no problem. I will add a test in login.test.ts and cli.test.ts then, right?

@jsjoeio
Copy link
Contributor

jsjoeio commented Oct 10, 2022

That sounds great. Thank you!

@niwla23
Copy link
Contributor Author

niwla23 commented Oct 11, 2022

I have added the tests

Copy link
Contributor

@jsjoeio jsjoeio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tests look awesome! Thanks for adding them!


it("should return correct welcome text", async () => {
process.env.PASSWORD = previousEnvPassword
const welcomeText = "Welcome to your code workspace! öäü🔐"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: should we use characters without accent marks in case they're rendered differently on someone's machine?

Suggested change
const welcomeText = "Welcome to your code workspace! öäü🔐"
const welcomeText = "Welcome to your code workspace!"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

my idea was to test if there are any implications when using unicode, but I don't know if that should be there

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that could be tested separately if needed but I personally don't think we need to. thoughts @code-asher ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can also merge now and i can fix later if needed. don't want to hold you back :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah I don't think it will do any harm, should be ready to merge. I would be glad if you could add the hacktoberfest-accepted label so it counts for https://hacktoberfest.com :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems chill to me 👍


it("should return correct app-name", async () => {
process.env.PASSWORD = previousEnvPassword
const appName = "testnäme"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: same as here

Suggested change
const appName = "testnäme"
const appName = "testname"

@jsjoeio jsjoeio enabled auto-merge (squash) October 13, 2022 22:20
@jsjoeio jsjoeio merged commit 714afe0 into coder:main Oct 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feat]: allow setting the app name and a welcome text on login page
4 participants