mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:26:29 +08:00
d3f02a1270
This commit fleshes out and adds functionality for the new `#hashtag` search and lookup system, still hidden behind the `enable_experimental_hashtag_autocomplete` feature flag. **Serverside** We have two plugin API registration methods that are used to define data sources (`register_hashtag_data_source`) and hashtag result type priorities depending on the context (`register_hashtag_type_in_context`). Reading the comments in plugin.rb should make it clear what these are doing. Reading the `HashtagAutocompleteService` in full will likely help a lot as well. Each data source is responsible for providing its own **lookup** and **search** method that returns hashtag results based on the arguments provided. For example, the category hashtag data source has to take into account parent categories and how they relate, and each data source has to define their own icon to use for the hashtag, and so on. The `Site` serializer has two new attributes that source data from `HashtagAutocompleteService`. There is `hashtag_icons` that is just a simple array of all the different icons that can be used for allowlisting in our markdown pipeline, and there is `hashtag_context_configurations` that is used to store the type priority orders for each registered context. When sending emails, we cannot render the SVG icons for hashtags, so we need to change the HTML hashtags to the normal `#hashtag` text. **Markdown** The `hashtag-autocomplete.js` file is where I have added the new `hashtag-autocomplete` markdown rule, and like all of our rules this is used to cook the raw text on both the clientside and on the serverside using MiniRacer. Only on the server side do we actually reach out to the database with the `hashtagLookup` function, on the clientside we just render a plainer version of the hashtag HTML. Only in the composer preview do we do further lookups based on this. This rule is the first one (that I can find) that uses the `currentUser` based on a passed in `user_id` for guardian checks in markdown rendering code. This is the `last_editor_id` for both the post and chat message. In some cases we need to cook without a user present, so the `Discourse.system_user` is used in this case. **Chat Channels** This also contains the changes required for chat so that chat channels can be used as a data source for hashtag searches and lookups. This data source will only be used when `enable_experimental_hashtag_autocomplete` is `true`, so we don't have to worry about channel results suddenly turning up. ------ **Known Rough Edges** - Onebox excerpts will not render the icon svg/use tags, I plan to address that in a follow up PR - Selecting a hashtag + pressing the Quote button will result in weird behaviour, I plan to address that in a follow up PR - Mixed hashtag contexts for hashtags without a type suffix will not work correctly, e.g. #ux which is both a category and a channel slug will resolve to a category when used inside a post or within a [chat] transcript in that post. Users can get around this manually by adding the correct suffix, for example ::channel. We may get to this at some point in future - Icons will not show for the hashtags in emails since SVG support is so terrible in email (this is not likely to be resolved, but still noting for posterity) - Additional refinements and review fixes wil
248 lines
5.9 KiB
SCSS
248 lines
5.9 KiB
SCSS
// --------------------------------------------------
|
|
// Mixins used throughout the theme
|
|
// --------------------------------------------------
|
|
|
|
// Media queries
|
|
// --------------------------------------------------
|
|
|
|
$breakpoints: (
|
|
mobile-small: 320px,
|
|
mobile-medium: 350px,
|
|
mobile-large: 450px,
|
|
mobile-extra-large: 550px,
|
|
tablet: 768px,
|
|
medium: 850px,
|
|
large: 1000px,
|
|
extra-large: 1140px,
|
|
);
|
|
|
|
@mixin breakpoint($bp, $rule: max-width, $type: screen, $sidebar: false) {
|
|
@media #{$type} and (#{$rule}: map-get($breakpoints, $bp)) {
|
|
@content;
|
|
}
|
|
|
|
// if you want to consider the sidebar in your breakpoint
|
|
// you can pass in $sidebar: true
|
|
// note that your breakpoint will need to be at the root level
|
|
@if $sidebar {
|
|
// when the sidebar is shown, we want to increase the breakpoints by the width of the sidebar
|
|
@media #{$type} and (#{$rule}: calc(#{map-get($breakpoints, $bp)} + #{$d-sidebar-width})) {
|
|
.has-sidebar-page {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// CSS3 properties
|
|
// --------------------------------------------------
|
|
|
|
// Clearfix
|
|
|
|
@mixin clearfix() {
|
|
&:before,
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
}
|
|
&:after {
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
//noinspection CssOptimizeSimilarProperties
|
|
@mixin linear-gradient($start-color, $end-color) {
|
|
background-color: $start-color;
|
|
background-image: linear-gradient(to bottom, $start-color, $end-color);
|
|
}
|
|
|
|
// Visibility
|
|
// --------------------------------------------------
|
|
|
|
// Only shows hover on non-touch devices
|
|
@mixin hover {
|
|
.discourse-no-touch & {
|
|
&:hover,
|
|
&.btn-hover {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin ellipsis {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
@mixin line-clamp($lines) {
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
-webkit-line-clamp: $lines;
|
|
-moz-box-orient: vertical;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
//
|
|
// --------------------------------------------------
|
|
|
|
$vpad: 0.5em;
|
|
$hpad: 0.65em;
|
|
|
|
// for consistent sizing across inputs, buttons and dropdowns
|
|
@mixin form-item-sizing {
|
|
border: 1px solid transparent;
|
|
font-size: var(--font-0);
|
|
line-height: normal;
|
|
box-sizing: border-box;
|
|
padding: $vpad $hpad;
|
|
.ios-device & {
|
|
font-size: var(--font-size-ios-input);
|
|
padding-top: $vpad * 0.8;
|
|
padding-bottom: $vpad * 0.8;
|
|
}
|
|
}
|
|
|
|
@mixin sticky {
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
}
|
|
|
|
// Unselectable (avoids unwanted selections with iPad, touch laptops, etc)
|
|
|
|
@mixin user-select($mode) {
|
|
-webkit-user-select: $mode;
|
|
user-select: $mode;
|
|
}
|
|
|
|
@mixin unselectable {
|
|
@include user-select(none);
|
|
cursor: default;
|
|
}
|
|
|
|
// Stuff we repeat
|
|
@mixin post-aside {
|
|
border-left: 5px solid var(--primary-low);
|
|
background-color: var(--blend-primary-secondary-5);
|
|
}
|
|
|
|
// We still need -webkit for latest iPhone and Safari
|
|
@mixin transform($transforms) {
|
|
transform: $transforms;
|
|
}
|
|
|
|
@mixin appearance-none() {
|
|
// resets default browser styles
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
@mixin default-focus() {
|
|
border-color: var(--tertiary);
|
|
outline: 1px solid var(--tertiary);
|
|
outline-offset: 0;
|
|
}
|
|
|
|
@mixin fa-rotate($degrees, $rotation) {
|
|
transform: rotate($degrees);
|
|
}
|
|
|
|
/// Helper function to easily use an SVG inline in CSS
|
|
/// without encoding it to base64, saving bytes.
|
|
/// It also helps with browser support, especially for IE11.
|
|
///
|
|
/// @author Jakob Eriksen
|
|
/// @link http://codepen.io/jakob-e/pen/doMoML
|
|
/// @param {String} $svg - SVG image to encode
|
|
/// @return {String} - Encoded SVG data uri
|
|
@function svg-uri($svg) {
|
|
$encoded: "";
|
|
$slice: 2000;
|
|
$index: 0;
|
|
$loops: ceil(str-length($svg) / $slice);
|
|
|
|
@for $i from 1 through $loops {
|
|
$chunk: str-slice($svg, $index, $index + $slice - 1);
|
|
$chunk: str-replace($chunk, '"', "'");
|
|
$chunk: str-replace($chunk, "<", "%3C");
|
|
$chunk: str-replace($chunk, ">", "%3E");
|
|
$chunk: str-replace($chunk, "&", "%26");
|
|
$chunk: str-replace($chunk, "#", "%23");
|
|
$encoded: #{$encoded}#{$chunk};
|
|
$index: $index + $slice;
|
|
}
|
|
|
|
@return url("data:image/svg+xml;charset=utf8,#{$encoded}");
|
|
}
|
|
|
|
/// Replace `$search` with `$replace` in `$string`
|
|
/// @author Hugo Giraudel
|
|
/// @link http://sassmeister.com/gist/1b4f2da5527830088e4d
|
|
/// @param {String} $string - Initial string
|
|
/// @param {String} $search - Substring to replace
|
|
/// @param {String} $replace ('') - New value
|
|
/// @return {String} - Updated string
|
|
@function str-replace($string, $search, $replace: "") {
|
|
$index: str-index($string, $search);
|
|
|
|
@if $index {
|
|
@return str-slice($string, 1, $index - 1) + $replace +
|
|
str-replace(
|
|
str-slice($string, $index + str-length($search)),
|
|
$search,
|
|
$replace
|
|
);
|
|
}
|
|
|
|
@return $string;
|
|
}
|
|
|
|
// SCSS accepts HEX or RGB colors for rgba($color, 0.5)
|
|
// CSS custom properties only accept RGB
|
|
// Example usage:
|
|
|
|
// --primary-rgb: #{hexToRGB($primary)};
|
|
// ...
|
|
// rgba(var(--primary-low-rgb), 0.5)
|
|
|
|
@function hexToRGB($hex) {
|
|
@return red($hex), green($hex), blue($hex);
|
|
}
|
|
|
|
@function schemeType() {
|
|
@if is-light-color-scheme() {
|
|
@return "light";
|
|
} @else {
|
|
@return "dark";
|
|
}
|
|
}
|
|
|
|
@function absolute-image-url($path) {
|
|
// public_image_path is added by the stylesheet importer
|
|
// it returns a CDN or subfolder path (if applicable).
|
|
// SCSS will compile (and return the relative path) if public_image_path is missing.
|
|
@if variable-exists(public_image_path) {
|
|
@if (str-index("#{$path}", "/plugins") == 1) {
|
|
$plugin_asset_path: str-replace($public_image_path, "/images", "");
|
|
@return url("#{$plugin_asset_path}#{$path}");
|
|
} @else {
|
|
@return url("#{$public_image_path}#{$path}");
|
|
}
|
|
} @else {
|
|
@return url("#{$path}");
|
|
}
|
|
}
|
|
|
|
@mixin mention() {
|
|
display: inline-block; // https://bugzilla.mozilla.org/show_bug.cgi?id=1656119
|
|
font-weight: bold;
|
|
font-size: 0.93em;
|
|
color: var(--primary-high-or-secondary-low);
|
|
padding: 0 4px 1px;
|
|
background: var(--primary-low);
|
|
border-radius: 8px;
|
|
}
|