mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
FEATURE: Support for App Shortcuts Menu
This adds a list of shortcuts to a installed Discourse instance. It can be accessed by right clicks or long press on the app icon. See https://github.com/MicrosoftEdge/MSEdgeExplainers/blob/master/Shortcuts/explainer.md List of possible follow ups include: - Making it admin customizable - Making it user customizable - Using SVG icons from the site icon sprite - Picking an accent color for icons
This commit is contained in:
parent
4d137b4f89
commit
3b0fa9b7ae
|
@ -50,7 +50,53 @@ class MetadataController < ApplicationController
|
|||
title: "title",
|
||||
text: "body"
|
||||
}
|
||||
}
|
||||
},
|
||||
shortcuts: [
|
||||
{
|
||||
name: I18n.t('js.topic.create_long'),
|
||||
short_name: I18n.t('js.topic.create'),
|
||||
url: "/new-topic",
|
||||
icons: [
|
||||
{
|
||||
src: ActionController::Base.helpers.image_url("push-notifications/check.png"),
|
||||
sizes: "128x128"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: I18n.t('js.user.messages.inbox'),
|
||||
short_name: I18n.t('js.user.messages.inbox'),
|
||||
url: "/my/messages",
|
||||
icons: [
|
||||
{
|
||||
src: ActionController::Base.helpers.image_url("push-notifications/private_message.png"),
|
||||
sizes: "128x128"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: I18n.t('js.user.bookmarks'),
|
||||
short_name: I18n.t('js.user.bookmarks'),
|
||||
url: "/my/bookmarks",
|
||||
icons: [
|
||||
{
|
||||
src: ActionController::Base.helpers.image_url("push-notifications/check.png"),
|
||||
sizes: "128x128"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: I18n.t('js.filters.top.title'),
|
||||
short_name: I18n.t('js.filters.top.title'),
|
||||
url: "/top",
|
||||
icons: [
|
||||
{
|
||||
src: ActionController::Base.helpers.image_url("push-notifications/check.png"),
|
||||
sizes: "128x128"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
logo = SiteSetting.site_manifest_icon_url
|
||||
|
|
|
@ -86,6 +86,14 @@ RSpec.describe MetadataController do
|
|||
manifest = JSON.parse(response.body)
|
||||
expect(manifest["short_name"]).to eq("foo")
|
||||
end
|
||||
|
||||
it 'contains valid shortcuts by default' do
|
||||
get "/manifest.webmanifest"
|
||||
expect(response.status).to eq(200)
|
||||
manifest = JSON.parse(response.body)
|
||||
expect(manifest["shortcuts"].size).to be > 0
|
||||
expect { URI.parse(manifest["shortcuts"][0]["icons"][0]["src"]) }.not_to raise_error
|
||||
end
|
||||
end
|
||||
|
||||
describe 'opensearch.xml' do
|
||||
|
|
Loading…
Reference in New Issue
Block a user