2016-06-26 18:49:35 +02:00
|
|
|
# Writing a new application feature
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
The changes needed to add a new feature will vary, of course, but this
|
|
|
|
document provides a general outline of what you may need to do, as well
|
|
|
|
as an example of the specific steps needed to add a new feature: adding
|
|
|
|
a new option to the application that is dynamically synced through the
|
|
|
|
data system in real-time to all browsers the user may have open.
|
|
|
|
|
2017-02-10 10:09:31 +01:00
|
|
|
As you read this, you may find you need to learn about Zulip's
|
|
|
|
real-time push system; the
|
|
|
|
[real-time push and events](events-system.html) documentation has a
|
|
|
|
detailed explanation of how everything works.
|
|
|
|
|
2016-07-16 03:11:42 +02:00
|
|
|
## General Process in brief
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
### Adding a field to the database
|
|
|
|
|
|
|
|
**Update the model:** The server accesses the underlying database in
|
|
|
|
`zerver/ models.py`. Add a new field in the appropriate class.
|
|
|
|
|
|
|
|
**Create and run the migration:** To create and apply a migration, run:
|
|
|
|
|
2016-07-16 03:11:42 +02:00
|
|
|
```
|
|
|
|
./manage.py makemigrations
|
|
|
|
./manage.py migrate
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
**Test your changes:** Once you've run the migration, restart memcached
|
|
|
|
on your development server (`/etc/init.d/memcached restart`) and then
|
|
|
|
restart `run-dev.py` to avoid interacting with cached objects.
|
|
|
|
|
|
|
|
### Backend changes
|
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
For most new features/settings, the `property_types` framework handles
|
|
|
|
most of this automatically, but it's valuable to understand the flow
|
|
|
|
even if the `property_types` framework means you don't have to write
|
|
|
|
any code.
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
**Database interaction:** Add any necessary code for updating and
|
|
|
|
interacting with the database in `zerver/lib/actions.py`. It should
|
|
|
|
update the database and send an event announcing the change.
|
|
|
|
|
|
|
|
**Application state:** Modify the `fetch_initial_state_data` and
|
2017-02-22 09:33:33 +01:00
|
|
|
`apply_event` functions in `zerver/lib/events.py` to update the state
|
2016-05-15 18:28:38 +02:00
|
|
|
based on the event you just created.
|
|
|
|
|
|
|
|
**Backend implementation:** Make any other modifications to the backend
|
2017-04-19 05:27:57 +02:00
|
|
|
required for your feature to do what it's supposed to do.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-07-16 03:11:42 +02:00
|
|
|
**New views:** Add any new application views to `zerver/urls.py`. This
|
|
|
|
includes both views that serve HTML (new pages on Zulip) as well as new
|
|
|
|
API endpoints that serve JSON-formatted data.
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
**Testing:** At the very least, add a test of your event data flowing
|
2017-04-19 05:27:57 +02:00
|
|
|
through the system in `test_events.py` and an API test in (e.g. for a
|
|
|
|
Realm setting, in `test_realm.py`).
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
### Frontend changes
|
|
|
|
|
|
|
|
**JavaScript:** Zulip's JavaScript is located in the directory
|
|
|
|
`static/js/`. The exact files you may need to change depend on your
|
|
|
|
feature. If you've added a new event that is sent to clients, be sure to
|
|
|
|
add a handler for it to `static/js/server_events.js`.
|
|
|
|
|
|
|
|
**CSS:** The primary CSS file is `static/styles/zulip.css`. If your new
|
|
|
|
feature requires UI changes, you may need to add additional CSS to this
|
|
|
|
file.
|
|
|
|
|
|
|
|
**Templates:** The initial page structure is rendered via Jinja2
|
|
|
|
templates located in `templates/zerver`. For JavaScript, Zulip uses
|
|
|
|
Handlebars templates located in `static/templates`. Templates are
|
|
|
|
precompiled as part of the build/deploy process.
|
|
|
|
|
2017-03-01 05:41:40 +01:00
|
|
|
Zulip is fully internationalized, so when writing both HTML templates
|
|
|
|
or JavaScript code that generates user-facing strings, be sure to
|
|
|
|
[tag those strings for translation](translating.html).
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
**Testing:** There are two types of frontend tests: node-based unit
|
|
|
|
tests and blackbox end-to-end tests. The blackbox tests are run in a
|
|
|
|
headless browser using Casper.js and are located in
|
|
|
|
`frontend_tests/casper_tests/`. The unit tests use Node's `assert`
|
2016-06-28 05:51:42 +02:00
|
|
|
module are located in `frontend_tests/node_tests/`. For more
|
|
|
|
information on writing and running tests see the [testing
|
|
|
|
documentation](testing.html).
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-03-06 00:02:17 +01:00
|
|
|
### Documentation changes
|
|
|
|
|
|
|
|
After implementing the new feature, you should
|
|
|
|
document it and update any existing documentation that might be
|
|
|
|
relevant to the new feature. For more information on the kinds of
|
|
|
|
documentation Zulip has, see [Documentation](README.html).
|
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Example Feature
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
This example describes the process of adding a new setting to Zulip: a
|
|
|
|
flag that restricts inviting new users to admins only (the default
|
2017-04-19 05:27:57 +02:00
|
|
|
behavior is that any user can invite other users). This flag is an
|
|
|
|
actual Zulip feature. You can review
|
|
|
|
[the original commit](https://github.com/zulip/zulip/commit/5b7f3466baee565b8e5099bcbd3e1ccdbdb0a408)
|
|
|
|
in the Zulip repo. Note that the code involved in adding a realm
|
|
|
|
feature has been refactored significantly since this feature was
|
|
|
|
created, and Zulip has since been upgraded from Django 1.6 to 1.10.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-07-16 03:11:42 +02:00
|
|
|
### Update the model
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
First, update the database and model to store the new setting. Add a new
|
2016-07-16 03:11:42 +02:00
|
|
|
boolean field, `invite_by_admins_only`, to the Realm model in
|
2016-05-15 18:28:38 +02:00
|
|
|
`zerver/models.py`.
|
|
|
|
|
2017-04-26 22:18:31 +02:00
|
|
|
``` diff
|
|
|
|
--- a/zerver/models.py
|
|
|
|
+++ b/zerver/models.py
|
|
|
|
@@ -108,6 +108,7 @@ class Realm(ModelReprMixin, models.Model):
|
|
|
|
restricted_to_domain = models.BooleanField(default=True) # type: bool
|
|
|
|
invite_required = models.BooleanField(default=False) # type: bool
|
|
|
|
+ invite_by_admins_only = models.BooleanField(default=False) # type: bool
|
|
|
|
create_stream_by_admins_only = models.BooleanField(default=False) # type: bool
|
|
|
|
mandatory_topics = models.BooleanField(default=False) # type: bool
|
|
|
|
```
|
2017-04-19 05:27:57 +02:00
|
|
|
|
|
|
|
The Realm model also contains an attribute, `property_types`, which
|
|
|
|
other functions use to handle most realm settings without any custom
|
|
|
|
code for the setting (more on this process below). The attribute is a
|
|
|
|
dictionary, where the key is the name of the realm field and the value
|
|
|
|
is the field's type. Add the new field to the `property_types`
|
|
|
|
dictionary.
|
|
|
|
|
|
|
|
# Define the types of the various automatically managed properties
|
|
|
|
property_types = dict(
|
|
|
|
# ...
|
|
|
|
invite_by_admins_only=bool,
|
|
|
|
# ...
|
|
|
|
|
|
|
|
Note: the majority of realm settings can be included in
|
|
|
|
`property_types`. However, there are some properties that need custom
|
|
|
|
logic and thus cannot use the `property_types` framework. For
|
|
|
|
example:
|
|
|
|
|
|
|
|
* The realm `authentication_methods` attribute is a bitfield and needs
|
|
|
|
additional code for validation and updating.
|
|
|
|
* The `allow_message_editing` and `message_content_edit_limit_seconds`
|
|
|
|
fields depend on one another, so they are also handled separately and
|
|
|
|
not included in `property_types`.
|
|
|
|
|
|
|
|
When creating a realm property that is not a boolean, Text or
|
|
|
|
integer field, or when adding a field that is dependent on other fields,
|
|
|
|
handle it separately and do not add the field to the `property_types`
|
2017-04-26 22:18:31 +02:00
|
|
|
dictionary. The steps below will point out where to write code for these
|
|
|
|
cases.
|
2016-07-16 03:11:42 +02:00
|
|
|
|
|
|
|
### Create the migration
|
|
|
|
|
|
|
|
Create the migration file: `./manage.py makemigrations`. Make sure to
|
|
|
|
commit the generated file to git: `git add zerver/migrations/NNNN_realm_invite_by_admins_only.py`
|
|
|
|
(NNNN is a number that is equal to the number of migrations.)
|
|
|
|
|
2017-01-06 00:06:34 +01:00
|
|
|
If you run into problems, the
|
|
|
|
[Django migration documentation](https://docs.djangoproject.com/en/1.8/topics/migrations/)
|
|
|
|
is helpful.
|
2016-07-16 03:11:42 +02:00
|
|
|
|
|
|
|
### Test your migration changes
|
|
|
|
|
|
|
|
Apply the migration: `./manage.py migrate`
|
|
|
|
|
|
|
|
Output:
|
|
|
|
```
|
|
|
|
shell $ ./manage.py migrate
|
|
|
|
Operations to perform:
|
|
|
|
Synchronize unmigrated apps: staticfiles, analytics, pipeline
|
|
|
|
Apply all migrations: zilencer, confirmation, sessions, guardian, zerver, sites, auth, contenttypes
|
|
|
|
Synchronizing apps without migrations:
|
|
|
|
Creating tables...
|
|
|
|
Running deferred SQL...
|
|
|
|
Installing custom SQL...
|
|
|
|
Running migrations:
|
|
|
|
Rendering model states... DONE
|
|
|
|
Applying zerver.0026_realm_invite_by_admins_only... OK
|
|
|
|
```
|
|
|
|
|
|
|
|
### Handle database interactions
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-08-03 22:04:44 +02:00
|
|
|
Next, we will move on to implementing the backend part of this feature.
|
|
|
|
Like typical apps, we will need our backend to update the database and
|
|
|
|
send some response to the client that made the request.
|
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
Beyond that, we need to orchestrate notifications to *other* clients
|
|
|
|
(or other users, if you will) that our setting has changed. Clients
|
|
|
|
find out about settings through two closely related code paths. When a
|
|
|
|
client first contacts the server, the server sends the client its
|
|
|
|
initial state. Subsequently, clients subscribe to "events," which can
|
|
|
|
(among other things) indicate that settings have changed. For the
|
|
|
|
backend piece, we will need our action to make a call to `send_event`
|
|
|
|
to send the event to clients that are active. We will also need to
|
|
|
|
modify `fetch_initial_state_data` so that future clients see the new
|
|
|
|
changes. See [our event system docs](events-system.html) for all the
|
|
|
|
gory details.
|
2016-08-03 22:04:44 +02:00
|
|
|
|
|
|
|
Anyway, getting back to implementation details...
|
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
In `zerver/lib/actions.py`, the function `do_set_realm_property` takes
|
|
|
|
in the name of a realm property to update and the value it should
|
|
|
|
have. This function updates the database and triggers an event to
|
|
|
|
notify clients about the change. It uses the field's type, specified
|
|
|
|
in the `Realm.property_types` dictionary, to validate the type of the
|
|
|
|
value before updating the property; this is primarily an assertion to
|
|
|
|
help catch coding mistakes, not to check for bad user input.
|
|
|
|
|
|
|
|
After updating the given realm field, `do_set_realm_property` creates
|
|
|
|
an 'update' event with the name of the property and the new value. It
|
|
|
|
then calls `send_event`, passing the event and the list of users whose
|
|
|
|
browser sessions should be notified as the second argument. The latter
|
|
|
|
argument can be a single user (if the setting is a personal one, like
|
|
|
|
time display format), members in a particular stream only or all
|
|
|
|
active users in a realm.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
# zerver/lib/actions.py
|
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
def do_set_realm_property(realm, name, value):
|
|
|
|
# type: (Realm, str, Union[Text, bool, int]) -> None
|
|
|
|
"""Takes in a realm object, the name of an attribute to update, and the
|
|
|
|
value to update.
|
|
|
|
"""
|
|
|
|
property_type = Realm.property_types[name]
|
|
|
|
assert isinstance(value, property_type), (
|
|
|
|
'Cannot update %s: %s is not an instance of %s' % (
|
|
|
|
name, value, property_type,))
|
|
|
|
|
|
|
|
setattr(realm, name, value)
|
|
|
|
realm.save(update_fields=[name])
|
2016-05-15 18:28:38 +02:00
|
|
|
event = dict(
|
2017-04-19 05:27:57 +02:00
|
|
|
type='realm',
|
|
|
|
op='update',
|
|
|
|
property=name,
|
|
|
|
value=value,
|
2016-05-15 18:28:38 +02:00
|
|
|
)
|
|
|
|
send_event(event, active_user_ids(realm))
|
2017-04-19 05:27:57 +02:00
|
|
|
|
|
|
|
If the new realm property being added does not fit into the
|
|
|
|
`do_set_realm_property` framework (such as the
|
|
|
|
`authentication_methods` field), you'll need to create a new function
|
|
|
|
to explicitly update this field and send an event.
|
|
|
|
|
|
|
|
# zerver/lib/actions.py
|
|
|
|
|
|
|
|
def do_set_realm_authentication_methods(realm, authentication_methods):
|
|
|
|
# type: (Realm, Dict[str, bool]) -> None
|
|
|
|
for key, value in list(authentication_methods.items()):
|
|
|
|
index = getattr(realm.authentication_methods, key).number
|
|
|
|
realm.authentication_methods.set_bit(index, int(value))
|
|
|
|
realm.save(update_fields=['authentication_methods'])
|
|
|
|
event = dict(
|
|
|
|
type="realm",
|
|
|
|
op="update_dict",
|
|
|
|
property='default',
|
|
|
|
data=dict(authentication_methods=realm.authentication_methods_dict())
|
|
|
|
)
|
|
|
|
send_event(event, active_user_ids(realm))
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-07-16 03:11:42 +02:00
|
|
|
### Update application state
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
You then need to add code that will handle the event and update the
|
2017-04-19 05:27:57 +02:00
|
|
|
application state. The `fetch_initial_state` and `apply_event`
|
|
|
|
functions in `zerver/lib/events.py` do this.
|
|
|
|
|
|
|
|
# zerver/lib/events.py
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-02-20 20:09:48 +01:00
|
|
|
def fetch_initial_state_data(user_profile, event_types, queue_id, include_subscribers=True):
|
2016-05-15 18:28:38 +02:00
|
|
|
# ...
|
2017-04-19 05:27:57 +02:00
|
|
|
if want('realm'):
|
|
|
|
for property_name in Realm.property_types:
|
|
|
|
state['realm_' + property_name] = getattr(user_profile.realm, property_name)
|
|
|
|
state['realm_authentication_methods'] = user_profile.realm.authentication_methods_dict()
|
|
|
|
state['realm_allow_message_editing'] = user_profile.realm.allow_message_editing
|
|
|
|
# ...
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-02-20 20:09:48 +01:00
|
|
|
def apply_event(state, events, user_profile, include_subscribers):
|
2016-05-15 18:28:38 +02:00
|
|
|
for event in events:
|
|
|
|
# ...
|
|
|
|
elif event['type'] == 'realm':
|
|
|
|
field = 'realm_' + event['property']
|
|
|
|
state[field] = event['value']
|
2017-04-19 05:27:57 +02:00
|
|
|
# ...
|
|
|
|
|
|
|
|
If you are adding a realm property that fits the `property_types`
|
|
|
|
framework, you don't need to change `fetch_initial_state_data` or
|
|
|
|
`apply_event` because there is already code to get the initial data and
|
|
|
|
the realm update event type. However, if you are adding a property
|
|
|
|
that is handled separately, you will need to explicitly add the property
|
|
|
|
to the `state` dictionary in the `fetch_initial_state_data` function.
|
|
|
|
Ex, for `authentication_methods`:
|
|
|
|
|
|
|
|
def fetch_initial_state_data(user_profile, event_types, queue_id, include_subscribers=True):
|
|
|
|
# ...
|
|
|
|
if want('realm'):
|
|
|
|
# ...
|
|
|
|
state['realm_authentication_methods'] = user_profile.realm.authentication_methods_dict()
|
|
|
|
# ...
|
|
|
|
|
|
|
|
For this setting, one won't need to change `apply_event` since its
|
|
|
|
default code for `realm` event types handles this case correctly, but
|
|
|
|
for a totally new type of feature, usually a few lines in that
|
|
|
|
function are needed.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-07-16 03:11:42 +02:00
|
|
|
### Add a new view
|
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
You will need to add a view for clients to access that will call the
|
|
|
|
`actions.py` code to update the database. This example feature
|
2017-04-26 22:18:31 +02:00
|
|
|
adds a new parameter that will be sent to clients when the
|
2017-04-19 05:27:57 +02:00
|
|
|
application loads and should be accessible via JavaScript. There is
|
|
|
|
already a view that does this for related flags: `update_realm` in
|
|
|
|
`zerver/views/realm.py`. So in this case, we can add our code to the
|
|
|
|
existing view instead of creating a new one.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
First, add the new feature to the `page_params_core_fields` list
|
|
|
|
in `zerver/views/home.py`.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
def home_real(request):
|
2016-05-15 18:28:38 +02:00
|
|
|
# ...
|
2017-04-19 05:27:57 +02:00
|
|
|
page_params_core_fields = [
|
2016-05-15 18:28:38 +02:00
|
|
|
# ...
|
2017-04-19 05:27:57 +02:00
|
|
|
'realm_icon_url',
|
|
|
|
'realm_invite_by_admins_only',
|
|
|
|
'realm_inline_image_preview',
|
2016-05-15 18:28:38 +02:00
|
|
|
# ...
|
|
|
|
)
|
|
|
|
|
2017-04-26 22:18:31 +02:00
|
|
|
Since this feature adds a checkbox to the admin page and a new property
|
|
|
|
to the Realm model that can be modified from there, you need to add a
|
|
|
|
parameter for the new field to the `update_realm` function in
|
|
|
|
`zerver/views/realm.py`.
|
2017-04-19 05:27:57 +02:00
|
|
|
|
|
|
|
def update_realm(request, user_profile, name=REQ(validator=check_string, default=None),
|
|
|
|
# ...,
|
|
|
|
invite_by_admins_only=REQ(validator=check_bool, default=None),
|
|
|
|
# ...):
|
|
|
|
# type: (HttpRequest, UserProfile, ..., Optional[bool], ...
|
|
|
|
# ...
|
|
|
|
|
|
|
|
If this feature fits the `do_set_realm_property` framework and does
|
|
|
|
not require additional validation, this is the only change to make
|
|
|
|
to `zerver/views/realm.py`.
|
|
|
|
|
|
|
|
Text fields or other realm properties that need additional validation
|
|
|
|
can be handled at the beginning of `update_realm`.
|
|
|
|
|
|
|
|
# Additional validation/error checking beyond types go here, so
|
|
|
|
# the entire request can succeed or fail atomically.
|
|
|
|
if default_language is not None and default_language not in get_available_language_codes():
|
|
|
|
raise JsonableError(_("Invalid language '%s'" % (default_language,)))
|
|
|
|
if description is not None and len(description) > 100:
|
|
|
|
return json_error(_("Realm description cannot exceed 100 characters."))
|
|
|
|
# ...
|
|
|
|
|
|
|
|
Then, the code in `update_realm` loops through the `property_types` dictionary
|
|
|
|
and calls `do_set_realm_property` on any property to be updated from
|
|
|
|
the request. However, if the new feature is not in `property_types`,
|
|
|
|
you will need to write the code to specifically handle it.
|
|
|
|
Ex, for `authentication_methods`:
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-08-04 18:38:33 +02:00
|
|
|
# zerver/views/realm.py
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
# ...
|
|
|
|
if authentication_methods is not None and realm.authentication_methods_dict() != authentication_methods:
|
|
|
|
do_set_realm_authentication_methods(realm, authentication_methods)
|
|
|
|
data['authentication_methods'] = authentication_methods
|
|
|
|
# ...
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
This completes the backend implementation. A great next step is to
|
|
|
|
write the [backend tests](testing-with-django.html). With the
|
|
|
|
`property_types` framework, one just needs to add a line in
|
|
|
|
`test_events.py` and `test_realm.py` with a list of values to switch
|
|
|
|
between in the test.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-04-19 05:27:57 +02:00
|
|
|
### Update the front end
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Then make the required front end changes: in this case a checkbox needs
|
|
|
|
to be added to the admin page (and its value added to the data sent back
|
|
|
|
to server when a realm is updated) and the change event needs to be
|
|
|
|
handled on the client.
|
|
|
|
|
|
|
|
To add the checkbox to the admin page, modify the relevant template,
|
|
|
|
`static/templates/admin_tab.handlebars` (omitted here since it is
|
|
|
|
relatively straightforward). Then add code to handle changes to the new
|
2017-04-19 05:27:57 +02:00
|
|
|
form control in `static/js/admin.js`.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
var url = "/json/realm";
|
|
|
|
var new_invite_by_admins_only =
|
|
|
|
$("#id_realm_invite_by_admins_only").prop("checked");
|
|
|
|
data[invite_by_admins_only] = JSON.stringify(new_invite_by_admins_only);
|
|
|
|
|
|
|
|
channel.patch({
|
|
|
|
url: url,
|
|
|
|
data: data,
|
|
|
|
success: function (data) {
|
|
|
|
# ...
|
|
|
|
if (data.invite_by_admins_only) {
|
2017-03-18 21:17:41 +01:00
|
|
|
ui_report.success("New users must be invited by an admin!", invite_by_admins_only_status);
|
2016-05-15 18:28:38 +02:00
|
|
|
} else {
|
2017-03-18 21:17:41 +01:00
|
|
|
ui_report.success("Any user may now invite new users!", invite_by_admins_only_status);
|
2016-05-15 18:28:38 +02:00
|
|
|
}
|
|
|
|
# ...
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Finally, update `server_events.js` to handle related events coming from
|
2017-04-19 05:27:57 +02:00
|
|
|
the server.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
# static/js/server_events.js
|
|
|
|
|
2016-08-23 03:53:05 +02:00
|
|
|
function dispatch_normal_event(event) {
|
|
|
|
switch (event.type) {
|
|
|
|
# ...
|
|
|
|
case 'realm':
|
2016-05-15 18:28:38 +02:00
|
|
|
if (event.op === 'update' && event.property === 'invite_by_admins_only') {
|
2016-08-23 03:53:05 +02:00
|
|
|
page_params.realm_invite_by_admins_only = event.value;
|
|
|
|
}
|
|
|
|
}
|
2016-05-15 18:28:38 +02:00
|
|
|
}
|
|
|
|
|
2016-08-23 03:53:05 +02:00
|
|
|
Any code needed to update the UI should be placed in
|
|
|
|
`dispatch_normal_event` callback (rather than the `channel.patch`)
|
|
|
|
function. This ensures the appropriate code will run even if the
|
|
|
|
changes are made in another browser window. In this example most of
|
|
|
|
the changes are on the backend, so no UI updates are required.
|
2017-03-06 00:02:17 +01:00
|
|
|
|
|
|
|
### Update documentation
|
|
|
|
|
|
|
|
After you add a new view, you should document your feature. This
|
|
|
|
feature adds new functionality that restricts inviting new users to
|
|
|
|
admins only. A recommended way to document this feature would be to
|
|
|
|
update and/or augment [Zulip's user documentation](https://chat.zulip.org/help/)
|
|
|
|
to reflect your changes and additions.
|
|
|
|
|
|
|
|
At the very least, this will involve adding (or modifying) a Markdown file
|
|
|
|
documenting the feature to `templates/zerver/help/` in the main Zulip
|
|
|
|
server repository, where the source for Zulip's user documentation is
|
|
|
|
stored. For information on writing user documentation, see
|
|
|
|
[Zulip's general user guide documentation](user-docs.html).
|
|
|
|
|
|
|
|
For a more concrete example of writing documentation for a new feature, see
|
|
|
|
[the original commit in the Zulip repo](https://github.com/zulip/zulip/commit/5b4d9774e02a45e43465b0a28ffb3d9b373c9098)
|
|
|
|
that documented this feature, [the current
|
|
|
|
source](https://github.com/zulip/zulip/blob/master/templates/zerver/help/only-allow-admins-to-invite-new-users.md),
|
|
|
|
and [the final rendered documentation](https://chat.zulip.org/help/only-allow-admins-to-invite-new-users).
|